
    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_b3070cf0c040566ca741155c.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.958008;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_e8dcf510a65c54b8dd8366c7.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.958008;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_2f88ffbc7efec10f056b6ac6.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.958496;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_b3bb83b34e03b91c8bb6b9c9.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.967773;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_e08439353081268b5a4424e8.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.958008;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_e3abac5c2e0843dfcdc2e2b7.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.958008;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_97040fd589d5073eee767bd2.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.958008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_643dff4309ba163fda06b93a.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.958008;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;}
.md{transform:matrix(0.237868,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237868,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237868,0.000000,0.000000,0.250000,0,0);}
.m3f{transform:matrix(0.239488,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239488,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239488,0.000000,0.000000,0.250000,0,0);}
.ma7{transform:matrix(0.240110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240110,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.240565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240565,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.240990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240990,0.000000,0.000000,0.250000,0,0);}
.mc1{transform:matrix(0.241443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241443,0.000000,0.000000,0.250000,0,0);}
.m4d{transform:matrix(0.241515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241515,0.000000,0.000000,0.250000,0,0);}
.m63{transform:matrix(0.241555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241555,0.000000,0.000000,0.250000,0,0);}
.mc2{transform:matrix(0.241685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241685,0.000000,0.000000,0.250000,0,0);}
.mbd{transform:matrix(0.241700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241700,0.000000,0.000000,0.250000,0,0);}
.mb5{transform:matrix(0.241803,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241803,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241803,0.000000,0.000000,0.250000,0,0);}
.m67{transform:matrix(0.242242,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242242,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242242,0.000000,0.000000,0.250000,0,0);}
.m42{transform:matrix(0.242510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242510,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.242813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242813,0.000000,0.000000,0.250000,0,0);}
.m8f{transform:matrix(0.243030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243030,0.000000,0.000000,0.250000,0,0);}
.ma6{transform:matrix(0.243077,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243077,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243077,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.243127,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243127,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243127,0.000000,0.000000,0.250000,0,0);}
.m59{transform:matrix(0.243285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243285,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);}
.m6e{transform:matrix(0.243610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243610,0.000000,0.000000,0.250000,0,0);}
.m8e{transform:matrix(0.243670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243670,0.000000,0.000000,0.250000,0,0);}
.m83{transform:matrix(0.243808,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243808,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243808,0.000000,0.000000,0.250000,0,0);}
.m48{transform:matrix(0.243935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243935,0.000000,0.000000,0.250000,0,0);}
.m80{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.244402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244402,0.000000,0.000000,0.250000,0,0);}
.m7f{transform:matrix(0.244445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244445,0.000000,0.000000,0.250000,0,0);}
.mab{transform:matrix(0.244515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244515,0.000000,0.000000,0.250000,0,0);}
.m33{transform:matrix(0.244547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244547,0.000000,0.000000,0.250000,0,0);}
.m8b{transform:matrix(0.244610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244610,0.000000,0.000000,0.250000,0,0);}
.m76{transform:matrix(0.244675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244675,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.244757,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244757,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244757,0.000000,0.000000,0.250000,0,0);}
.mc5{transform:matrix(0.244870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244870,0.000000,0.000000,0.250000,0,0);}
.mb6{transform:matrix(0.244975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244975,0.000000,0.000000,0.250000,0,0);}
.mc3{transform:matrix(0.245023,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245023,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245023,0.000000,0.000000,0.250000,0,0);}
.mae{transform:matrix(0.245090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245090,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.245140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245140,0.000000,0.000000,0.250000,0,0);}
.m37{transform:matrix(0.245198,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245198,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245198,0.000000,0.000000,0.250000,0,0);}
.m85{transform:matrix(0.245245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245245,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.245253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245253,0.000000,0.000000,0.250000,0,0);}
.m3c{transform:matrix(0.245300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245300,0.000000,0.000000,0.250000,0,0);}
.m95{transform:matrix(0.245328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245328,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.245517,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245517,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245517,0.000000,0.000000,0.250000,0,0);}
.m4b{transform:matrix(0.245613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245613,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.245687,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245687,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245687,0.000000,0.000000,0.250000,0,0);}
.mb0{transform:matrix(0.245693,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245693,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245693,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.245718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245718,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.245745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245745,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.245770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245770,0.000000,0.000000,0.250000,0,0);}
.m54{transform:matrix(0.245808,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245808,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245808,0.000000,0.000000,0.250000,0,0);}
.m3d{transform:matrix(0.245855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245855,0.000000,0.000000,0.250000,0,0);}
.m8c{transform:matrix(0.245872,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245872,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245872,0.000000,0.000000,0.250000,0,0);}
.m64{transform:matrix(0.245970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245970,0.000000,0.000000,0.250000,0,0);}
.m34{transform:matrix(0.245998,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245998,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245998,0.000000,0.000000,0.250000,0,0);}
.m6f{transform:matrix(0.246020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246020,0.000000,0.000000,0.250000,0,0);}
.ma8{transform:matrix(0.246052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246052,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.246125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246125,0.000000,0.000000,0.250000,0,0);}
.m89{transform:matrix(0.246138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246138,0.000000,0.000000,0.250000,0,0);}
.mbe{transform:matrix(0.246210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246210,0.000000,0.000000,0.250000,0,0);}
.m82{transform:matrix(0.246298,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246298,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246298,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.246325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246325,0.000000,0.000000,0.250000,0,0);}
.m51{transform:matrix(0.246355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246355,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.246425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246425,0.000000,0.000000,0.250000,0,0);}
.ma2{transform:matrix(0.246498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246498,0.000000,0.000000,0.250000,0,0);}
.mb3{transform:matrix(0.246540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246540,0.000000,0.000000,0.250000,0,0);}
.m3b{transform:matrix(0.246553,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246553,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246553,0.000000,0.000000,0.250000,0,0);}
.m39{transform:matrix(0.246635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246635,0.000000,0.000000,0.250000,0,0);}
.m88{transform:matrix(0.246673,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246673,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246673,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.246688,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246688,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246688,0.000000,0.000000,0.250000,0,0);}
.m9b{transform:matrix(0.246745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246745,0.000000,0.000000,0.250000,0,0);}
.m77{transform:matrix(0.246760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246760,0.000000,0.000000,0.250000,0,0);}
.m35{transform:matrix(0.246763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246763,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.246793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246793,0.000000,0.000000,0.250000,0,0);}
.m5e{transform:matrix(0.246795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246795,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.246809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246809,0.000000,0.000000,0.250000,0,0);}
.m98{transform:matrix(0.246880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246880,0.000000,0.000000,0.250000,0,0);}
.m32{transform:matrix(0.246893,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246893,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246893,0.000000,0.000000,0.250000,0,0);}
.m45{transform:matrix(0.246905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246905,0.000000,0.000000,0.250000,0,0);}
.m69{transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.247088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247088,0.000000,0.000000,0.250000,0,0);}
.m94{transform:matrix(0.247090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247090,0.000000,0.000000,0.250000,0,0);}
.m49{transform:matrix(0.247103,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247103,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247103,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.247115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247115,0.000000,0.000000,0.250000,0,0);}
.m30{transform:matrix(0.247180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247180,0.000000,0.000000,0.250000,0,0);}
.ma0{transform:matrix(0.247215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247215,0.000000,0.000000,0.250000,0,0);}
.m57{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m65{transform:matrix(0.247318,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247318,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247318,0.000000,0.000000,0.250000,0,0);}
.m9e{transform:matrix(0.247408,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247408,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247408,0.000000,0.000000,0.250000,0,0);}
.m6a{transform:matrix(0.247420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247420,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.247455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247455,0.000000,0.000000,0.250000,0,0);}
.m5f{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);}
.ma1{transform:matrix(0.247507,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247507,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247507,0.000000,0.000000,0.250000,0,0);}
.m55{transform:matrix(0.247527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247527,0.000000,0.000000,0.250000,0,0);}
.m66{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);}
.m90{transform:matrix(0.247558,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247558,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247558,0.000000,0.000000,0.250000,0,0);}
.m71{transform:matrix(0.247577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247577,0.000000,0.000000,0.250000,0,0);}
.m5a{transform:matrix(0.247605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247605,0.000000,0.000000,0.250000,0,0);}
.mbb{transform:matrix(0.247620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247620,0.000000,0.000000,0.250000,0,0);}
.maa{transform:matrix(0.247640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247640,0.000000,0.000000,0.250000,0,0);}
.m40{transform:matrix(0.247657,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247657,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247657,0.000000,0.000000,0.250000,0,0);}
.mac{transform:matrix(0.247715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247715,0.000000,0.000000,0.250000,0,0);}
.m9d{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);}
.m7c{transform:matrix(0.247835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247835,0.000000,0.000000,0.250000,0,0);}
.m9c{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);}
.m8d{transform:matrix(0.247967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247967,0.000000,0.000000,0.250000,0,0);}
.ma3{transform:matrix(0.248020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248020,0.000000,0.000000,0.250000,0,0);}
.m75{transform:matrix(0.248027,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248027,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248027,0.000000,0.000000,0.250000,0,0);}
.m3a{transform:matrix(0.248083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248083,0.000000,0.000000,0.250000,0,0);}
.m53{transform:matrix(0.248090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248090,0.000000,0.000000,0.250000,0,0);}
.m84{transform:matrix(0.248138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248138,0.000000,0.000000,0.250000,0,0);}
.m31{transform:matrix(0.248158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248158,0.000000,0.000000,0.250000,0,0);}
.m61{transform:matrix(0.248168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248168,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.248195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248195,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.248320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248320,0.000000,0.000000,0.250000,0,0);}
.m56{transform:matrix(0.248347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248347,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.248405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248405,0.000000,0.000000,0.250000,0,0);}
.m70{transform:matrix(0.248472,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248472,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248472,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.248485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248485,0.000000,0.000000,0.250000,0,0);}
.m99{transform:matrix(0.248495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248495,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.248535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248535,0.000000,0.000000,0.250000,0,0);}
.m86{transform:matrix(0.248547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248547,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.248622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248622,0.000000,0.000000,0.250000,0,0);}
.m4a{transform:matrix(0.248665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248665,0.000000,0.000000,0.250000,0,0);}
.ma4{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m47{transform:matrix(0.248758,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248758,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248758,0.000000,0.000000,0.250000,0,0);}
.mad{transform:matrix(0.248813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248813,0.000000,0.000000,0.250000,0,0);}
.m5c{transform:matrix(0.248865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248865,0.000000,0.000000,0.250000,0,0);}
.m7d{transform:matrix(0.248870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248870,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.248910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248910,0.000000,0.000000,0.250000,0,0);}
.ma5{transform:matrix(0.248918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248918,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.249041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249041,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249063,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249063,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249063,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.249093,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249093,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249093,0.000000,0.000000,0.250000,0,0);}
.m41{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);}
.m20{transform:matrix(0.249160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249160,0.000000,0.000000,0.250000,0,0);}
.m4c{transform:matrix(0.249205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249205,0.000000,0.000000,0.250000,0,0);}
.m72{transform:matrix(0.249218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249218,0.000000,0.000000,0.250000,0,0);}
.m78{transform:matrix(0.249243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249243,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.249245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249245,0.000000,0.000000,0.250000,0,0);}
.m44{transform:matrix(0.249357,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249357,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249357,0.000000,0.000000,0.250000,0,0);}
.m58{transform:matrix(0.249363,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249363,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249363,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.249390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249390,0.000000,0.000000,0.250000,0,0);}
.m46{transform:matrix(0.249407,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249407,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249407,0.000000,0.000000,0.250000,0,0);}
.m5d{transform:matrix(0.249410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249410,0.000000,0.000000,0.250000,0,0);}
.m12{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);}
.ma9{transform:matrix(0.249420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249420,0.000000,0.000000,0.250000,0,0);}
.m50{transform:matrix(0.249423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249423,0.000000,0.000000,0.250000,0,0);}
.m9a{transform:matrix(0.249427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249427,0.000000,0.000000,0.250000,0,0);}
.m91{transform:matrix(0.249430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249430,0.000000,0.000000,0.250000,0,0);}
.m8a{transform:matrix(0.249445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249445,0.000000,0.000000,0.250000,0,0);}
.maf{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);}
.m11{transform:matrix(0.249452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249452,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.249457,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249457,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249457,0.000000,0.000000,0.250000,0,0);}
.m6c{transform:matrix(0.249485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249485,0.000000,0.000000,0.250000,0,0);}
.m43{transform:matrix(0.249488,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249488,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249488,0.000000,0.000000,0.250000,0,0);}
.m52{transform:matrix(0.249493,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249493,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249493,0.000000,0.000000,0.250000,0,0);}
.m96{transform:matrix(0.249505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249505,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.249510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249510,0.000000,0.000000,0.250000,0,0);}
.m4f{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);}
.m27{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);}
.m97{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);}
.m81{transform:matrix(0.249645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249645,0.000000,0.000000,0.250000,0,0);}
.m6d{transform:matrix(0.249648,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249648,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249648,0.000000,0.000000,0.250000,0,0);}
.m79{transform:matrix(0.249673,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249673,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249673,0.000000,0.000000,0.250000,0,0);}
.m38{transform:matrix(0.249690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249690,0.000000,0.000000,0.250000,0,0);}
.m29{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);}
.m62{transform:matrix(0.249753,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249753,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249753,0.000000,0.000000,0.250000,0,0);}
.m92{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);}
.m73{transform:matrix(0.249787,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249787,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249787,0.000000,0.000000,0.250000,0,0);}
.m68{transform:matrix(0.249803,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249803,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249803,0.000000,0.000000,0.250000,0,0);}
.m9f{transform:matrix(0.249833,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249833,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249833,0.000000,0.000000,0.250000,0,0);}
.m4e{transform:matrix(0.249850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249850,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m93{transform:matrix(0.249878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249878,0.000000,0.000000,0.250000,0,0);}
.m60{transform:matrix(0.249905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249905,0.000000,0.000000,0.250000,0,0);}
.m36{transform:matrix(0.249927,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249927,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249927,0.000000,0.000000,0.250000,0,0);}
.m74{transform:matrix(0.249990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249990,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);}
.m87{transform:matrix(0.250255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250255,0.000000,0.000000,0.250000,0,0);}
.m7b{transform:matrix(0.250390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250390,0.000000,0.000000,0.250000,0,0);}
.mb2{transform:matrix(0.250497,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250497,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250497,0.000000,0.000000,0.250000,0,0);}
.mb4{transform:matrix(0.250902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250902,0.000000,0.000000,0.250000,0,0);}
.mb1{transform:matrix(0.251012,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251012,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251012,0.000000,0.000000,0.250000,0,0);}
.m6b{transform:matrix(0.251197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251197,0.000000,0.000000,0.250000,0,0);}
.mc4{transform:matrix(0.251458,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251458,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251458,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.251605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251605,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.252419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252419,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.252450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252450,0.000000,0.000000,0.250000,0,0);}
.m3e{transform:matrix(0.253800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253800,0.000000,0.000000,0.250000,0,0);}
.mba{transform:matrix(0.254007,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254007,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254007,0.000000,0.000000,0.250000,0,0);}
.m5b{transform:matrix(0.254130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254130,0.000000,0.000000,0.250000,0,0);}
.mbf{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m7e{transform:matrix(0.254972,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254972,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254972,0.000000,0.000000,0.250000,0,0);}
.m7a{transform:matrix(0.255035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255035,0.000000,0.000000,0.250000,0,0);}
.mb7{transform:matrix(0.255897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255897,0.000000,0.000000,0.250000,0,0);}
.mb8{transform:matrix(0.257595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257595,0.000000,0.000000,0.250000,0,0);}
.mb9{transform:matrix(0.260867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260867,0.000000,0.000000,0.250000,0,0);}
.mc0{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.mbc{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:15.750000px;}
.v3{vertical-align:19.980000px;}
.v2{vertical-align:23.250000px;}
.ls3b{letter-spacing:-5.280000px;}
.ls21{letter-spacing:-3.360000px;}
.ls2f{letter-spacing:-3.240000px;}
.ls31{letter-spacing:-3.180000px;}
.ls30{letter-spacing:-3.120000px;}
.ls22{letter-spacing:-3.060000px;}
.ls32{letter-spacing:-2.940000px;}
.ls37{letter-spacing:-2.760000px;}
.ls38{letter-spacing:-2.496000px;}
.ls3c{letter-spacing:-2.160000px;}
.ls1{letter-spacing:-2.112000px;}
.ls1b{letter-spacing:-1.824000px;}
.ls33{letter-spacing:-1.740000px;}
.ls3{letter-spacing:-1.680000px;}
.ls2b{letter-spacing:-1.320000px;}
.ls14{letter-spacing:-1.080000px;}
.ls2c{letter-spacing:-1.020000px;}
.ls15{letter-spacing:-0.960000px;}
.ls28{letter-spacing:-0.900000px;}
.ls1c{letter-spacing:-0.840000px;}
.ls13{letter-spacing:-0.780000px;}
.ls1d{letter-spacing:-0.720000px;}
.ls11{letter-spacing:-0.660000px;}
.ls12{letter-spacing:-0.600000px;}
.lsb{letter-spacing:-0.576000px;}
.ls26{letter-spacing:-0.540000px;}
.ls10{letter-spacing:-0.480000px;}
.lsf{letter-spacing:-0.420000px;}
.ls2{letter-spacing:-0.360000px;}
.ls1e{letter-spacing:-0.300000px;}
.ls20{letter-spacing:-0.240000px;}
.ls1a{letter-spacing:-0.180000px;}
.ls8{letter-spacing:-0.144000px;}
.ls1f{letter-spacing:-0.120000px;}
.ls6{letter-spacing:-0.096000px;}
.ls16{letter-spacing:-0.066000px;}
.ls19{letter-spacing:-0.060000px;}
.ls7{letter-spacing:-0.048000px;}
.ls0{letter-spacing:0.000000px;}
.ls2a{letter-spacing:0.060000px;}
.lse{letter-spacing:0.066000px;}
.ls34{letter-spacing:0.120000px;}
.ls9{letter-spacing:0.144000px;}
.ls29{letter-spacing:0.174900px;}
.ls2d{letter-spacing:0.180000px;}
.ls17{letter-spacing:0.198000px;}
.ls25{letter-spacing:0.240000px;}
.ls27{letter-spacing:0.300000px;}
.ls23{letter-spacing:0.360000px;}
.ls24{letter-spacing:0.420000px;}
.ls35{letter-spacing:0.480000px;}
.lsd{letter-spacing:0.504000px;}
.lsa{letter-spacing:0.576000px;}
.lsc{letter-spacing:0.624000px;}
.ls4{letter-spacing:0.648000px;}
.ls18{letter-spacing:0.699600px;}
.ls36{letter-spacing:0.720000px;}
.ls5{letter-spacing:0.816000px;}
.ls39{letter-spacing:0.960000px;}
.ls2e{letter-spacing:1.122000px;}
.ls3a{letter-spacing:1.140000px;}
.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;}
}
.ws98{word-spacing:-19.470000px;}
.ws17{word-spacing:-18.546000px;}
.wsad{word-spacing:-17.820000px;}
.wsa3{word-spacing:-16.920000px;}
.wsa4{word-spacing:-16.860000px;}
.wsa2{word-spacing:-16.800000px;}
.wsa7{word-spacing:-16.740000px;}
.ws4a{word-spacing:-16.680000px;}
.ws6c{word-spacing:-16.260000px;}
.wsa0{word-spacing:-16.200000px;}
.ws6b{word-spacing:-16.140000px;}
.wsae{word-spacing:-15.900000px;}
.ws9d{word-spacing:-15.000000px;}
.wsa1{word-spacing:-14.940000px;}
.wsaf{word-spacing:-14.520000px;}
.wsa5{word-spacing:-13.920000px;}
.ws9f{word-spacing:-13.740000px;}
.ws9e{word-spacing:-13.500000px;}
.wsa6{word-spacing:-13.440000px;}
.ws2{word-spacing:-12.768000px;}
.ws37{word-spacing:-11.520000px;}
.ws0{word-spacing:-11.232000px;}
.wsac{word-spacing:-10.848000px;}
.ws18{word-spacing:-10.424040px;}
.ws1{word-spacing:-9.996000px;}
.ws7b{word-spacing:-9.899340px;}
.ws53{word-spacing:-2.220000px;}
.ws4f{word-spacing:-2.040000px;}
.ws97{word-spacing:-1.920000px;}
.ws50{word-spacing:-1.860000px;}
.ws20{word-spacing:-1.800000px;}
.ws26{word-spacing:-1.782000px;}
.ws1f{word-spacing:-1.740000px;}
.ws1d{word-spacing:-1.680000px;}
.ws3f{word-spacing:-1.620000px;}
.ws41{word-spacing:-1.560000px;}
.ws79{word-spacing:-1.500000px;}
.ws38{word-spacing:-1.440000px;}
.ws9{word-spacing:-1.392000px;}
.ws52{word-spacing:-1.380000px;}
.ws10{word-spacing:-1.344000px;}
.ws6f{word-spacing:-1.320000px;}
.wsf{word-spacing:-1.296000px;}
.ws61{word-spacing:-1.260000px;}
.ws7f{word-spacing:-1.140000px;}
.ws8c{word-spacing:-1.080000px;}
.ws74{word-spacing:-1.020000px;}
.ws30{word-spacing:-0.960000px;}
.ws6{word-spacing:-0.816000px;}
.ws73{word-spacing:-0.780000px;}
.ws90{word-spacing:-0.720000px;}
.ws78{word-spacing:-0.660000px;}
.ws5{word-spacing:-0.648000px;}
.ws15{word-spacing:-0.624000px;}
.ws5a{word-spacing:-0.600000px;}
.ws14{word-spacing:-0.576000px;}
.ws8a{word-spacing:-0.540000px;}
.ws19{word-spacing:-0.504000px;}
.wsb7{word-spacing:-0.480000px;}
.ws25{word-spacing:-0.360000px;}
.wsa{word-spacing:-0.336000px;}
.ws68{word-spacing:-0.300000px;}
.ws81{word-spacing:-0.240000px;}
.ws93{word-spacing:-0.180000px;}
.ws92{word-spacing:-0.120000px;}
.ws1a{word-spacing:-0.066000px;}
.ws33{word-spacing:-0.060000px;}
.ws3{word-spacing:0.000000px;}
.ws29{word-spacing:0.060000px;}
.ws48{word-spacing:0.120000px;}
.ws43{word-spacing:0.180000px;}
.ws31{word-spacing:0.240000px;}
.ws62{word-spacing:0.300000px;}
.ws4{word-spacing:0.360000px;}
.ws5b{word-spacing:0.420000px;}
.ws4d{word-spacing:0.480000px;}
.ws12{word-spacing:0.528000px;}
.wsa9{word-spacing:0.540000px;}
.ws23{word-spacing:0.600000px;}
.ws3b{word-spacing:0.660000px;}
.ws36{word-spacing:0.720000px;}
.ws39{word-spacing:0.780000px;}
.ws2f{word-spacing:0.840000px;}
.ws42{word-spacing:0.900000px;}
.ws4e{word-spacing:0.960000px;}
.ws47{word-spacing:1.020000px;}
.ws8e{word-spacing:1.080000px;}
.ws3a{word-spacing:1.140000px;}
.wsd{word-spacing:1.200000px;}
.ws70{word-spacing:1.260000px;}
.ws8f{word-spacing:1.320000px;}
.ws4b{word-spacing:1.440000px;}
.ws71{word-spacing:1.500000px;}
.ws1e{word-spacing:1.560000px;}
.ws32{word-spacing:1.620000px;}
.ws89{word-spacing:1.740000px;}
.ws66{word-spacing:1.860000px;}
.ws83{word-spacing:1.920000px;}
.ws77{word-spacing:1.980000px;}
.ws67{word-spacing:2.040000px;}
.ws80{word-spacing:2.100000px;}
.wsb6{word-spacing:2.160000px;}
.ws21{word-spacing:2.220000px;}
.ws59{word-spacing:2.280000px;}
.ws3c{word-spacing:2.340000px;}
.ws3e{word-spacing:2.460000px;}
.ws22{word-spacing:2.520000px;}
.ws51{word-spacing:2.580000px;}
.ws75{word-spacing:2.640000px;}
.ws40{word-spacing:2.700000px;}
.ws3d{word-spacing:2.760000px;}
.ws45{word-spacing:2.820000px;}
.wse{word-spacing:2.832000px;}
.ws6d{word-spacing:3.000000px;}
.ws7c{word-spacing:3.120000px;}
.wsa8{word-spacing:3.240000px;}
.ws24{word-spacing:3.300000px;}
.ws54{word-spacing:3.360000px;}
.ws35{word-spacing:3.420000px;}
.ws6e{word-spacing:3.480000px;}
.wsb0{word-spacing:3.540000px;}
.ws7d{word-spacing:3.600000px;}
.ws96{word-spacing:3.660000px;}
.ws46{word-spacing:3.720000px;}
.ws63{word-spacing:3.840000px;}
.ws2b{word-spacing:3.960000px;}
.ws7e{word-spacing:4.020000px;}
.ws13{word-spacing:4.080000px;}
.ws2e{word-spacing:4.140000px;}
.wsb{word-spacing:4.176000px;}
.ws72{word-spacing:4.260000px;}
.ws55{word-spacing:4.320000px;}
.ws44{word-spacing:4.380000px;}
.ws2a{word-spacing:4.500000px;}
.ws99{word-spacing:4.620000px;}
.ws82{word-spacing:4.680000px;}
.ws28{word-spacing:4.740000px;}
.ws95{word-spacing:4.800000px;}
.ws7a{word-spacing:4.920000px;}
.ws9b{word-spacing:4.980000px;}
.ws85{word-spacing:5.100000px;}
.ws7{word-spacing:5.136000px;}
.wsb2{word-spacing:5.160000px;}
.ws65{word-spacing:5.220000px;}
.ws8{word-spacing:5.280000px;}
.ws76{word-spacing:5.460000px;}
.ws5e{word-spacing:5.580000px;}
.ws4c{word-spacing:5.640000px;}
.wsc{word-spacing:5.664000px;}
.ws9a{word-spacing:5.700000px;}
.ws94{word-spacing:5.820000px;}
.ws58{word-spacing:5.940000px;}
.ws2d{word-spacing:6.000000px;}
.ws5c{word-spacing:6.060000px;}
.ws27{word-spacing:6.240000px;}
.ws2c{word-spacing:6.360000px;}
.ws11{word-spacing:6.576000px;}
.ws64{word-spacing:6.960000px;}
.wsb5{word-spacing:7.080000px;}
.ws8b{word-spacing:7.140000px;}
.wsb4{word-spacing:7.440000px;}
.ws88{word-spacing:7.500000px;}
.ws8d{word-spacing:7.560000px;}
.ws69{word-spacing:7.620000px;}
.ws87{word-spacing:7.680000px;}
.wsab{word-spacing:7.980000px;}
.wsaa{word-spacing:8.100000px;}
.ws34{word-spacing:8.160000px;}
.ws1b{word-spacing:8.220000px;}
.ws1c{word-spacing:8.280000px;}
.ws86{word-spacing:8.340000px;}
.ws5d{word-spacing:8.640000px;}
.ws56{word-spacing:8.760000px;}
.ws60{word-spacing:9.240000px;}
.wsb1{word-spacing:9.720000px;}
.wsb3{word-spacing:9.840000px;}
.ws57{word-spacing:19.860000px;}
.ws5f{word-spacing:20.340000px;}
.ws6a{word-spacing:445.370400px;}
.ws84{word-spacing:445.572000px;}
.ws9c{word-spacing:445.639200px;}
.ws16{word-spacing:446.460000px;}
.ws91{word-spacing:446.464800px;}
.ws49{word-spacing:447.588000px;}
._5{margin-left:-6.760800px;}
._9{margin-left:-5.161200px;}
._4{margin-left:-4.124400px;}
._6{margin-left:-2.709000px;}
._1{margin-left:-1.541400px;}
._0{width:1.348200px;}
._3{width:2.553600px;}
._8{width:3.708600px;}
._7{width:4.949400px;}
._b{width:6.685200px;}
._a{width:7.812000px;}
._d{width:8.973000px;}
._2{width:139.750200px;}
._c{width:1827.309000px;}
.fc2{color:rgb(133,133,133);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(71,71,71);}
.fs8{font-size:34.980000px;}
.fs1{font-size:36.000000px;}
.fs0{font-size:42.000000px;}
.fs2{font-size:48.000000px;}
.fs4{font-size:54.000000px;}
.fs5{font-size:57.000000px;}
.fs7{font-size:60.000000px;}
.fs6{font-size:66.000000px;}
.fs3{font-size:90.000000px;}
.y0{bottom:0.000000px;}
.y2b{bottom:49.350000px;}
.y2{bottom:50.100000px;}
.y2a{bottom:54.037500px;}
.y1{bottom:60.600000px;}
.y87{bottom:108.900000px;}
.y144{bottom:110.250000px;}
.y17a{bottom:112.500000px;}
.y58{bottom:112.725000px;}
.yb0{bottom:114.525000px;}
.y29{bottom:120.966000px;}
.y15b{bottom:122.100000px;}
.yfb{bottom:124.650000px;}
.y125{bottom:124.875000px;}
.yd7{bottom:125.775000px;}
.y86{bottom:126.675000px;}
.y143{bottom:128.025000px;}
.y57{bottom:130.725000px;}
.yaf{bottom:132.750000px;}
.y28{bottom:134.466000px;}
.yfa{bottom:142.425000px;}
.y124{bottom:142.650000px;}
.yd6{bottom:143.775000px;}
.y179{bottom:143.850000px;}
.y85{bottom:144.450000px;}
.y142{bottom:145.800000px;}
.y56{bottom:148.725000px;}
.y15a{bottom:153.600000px;}
.yf9{bottom:160.200000px;}
.y123{bottom:160.425000px;}
.y178{bottom:161.700000px;}
.yd5{bottom:161.775000px;}
.y27{bottom:162.078000px;}
.y84{bottom:162.225000px;}
.y141{bottom:163.575000px;}
.y55{bottom:166.725000px;}
.yae{bottom:168.975000px;}
.yf8{bottom:177.975000px;}
.y122{bottom:178.200000px;}
.yd4{bottom:179.775000px;}
.y83{bottom:180.000000px;}
.y140{bottom:181.350000px;}
.y26{bottom:182.322000px;}
.y54{bottom:184.725000px;}
.y159{bottom:185.100000px;}
.yad{bottom:186.975000px;}
.y177{bottom:193.050000px;}
.yf7{bottom:195.750000px;}
.y25{bottom:195.822000px;}
.y121{bottom:195.975000px;}
.y82{bottom:197.775000px;}
.y13f{bottom:199.125000px;}
.y53{bottom:202.725000px;}
.yac{bottom:204.975000px;}
.y24{bottom:209.322000px;}
.y176{bottom:210.900000px;}
.yf6{bottom:213.525000px;}
.y120{bottom:213.750000px;}
.y81{bottom:215.550000px;}
.yd3{bottom:215.775000px;}
.y158{bottom:216.600000px;}
.y13e{bottom:216.900000px;}
.y52{bottom:220.725000px;}
.y23{bottom:222.822000px;}
.yab{bottom:222.975000px;}
.y175{bottom:228.750000px;}
.yf5{bottom:231.300000px;}
.y11f{bottom:231.525000px;}
.y80{bottom:233.325000px;}
.yd2{bottom:233.775000px;}
.y157{bottom:234.225000px;}
.y13d{bottom:234.675000px;}
.y22{bottom:236.322000px;}
.y51{bottom:238.725000px;}
.yaa{bottom:240.975000px;}
.yf4{bottom:249.075000px;}
.y11e{bottom:249.300000px;}
.y21{bottom:249.822000px;}
.y7f{bottom:251.100000px;}
.yd1{bottom:251.775000px;}
.y156{bottom:251.850000px;}
.y13c{bottom:252.450000px;}
.y50{bottom:256.725000px;}
.ya9{bottom:258.975000px;}
.y174{bottom:260.100000px;}
.y20{bottom:263.322000px;}
.yf3{bottom:266.850000px;}
.y11d{bottom:267.075000px;}
.y7e{bottom:268.875000px;}
.y155{bottom:269.475000px;}
.yd0{bottom:269.775000px;}
.y13b{bottom:270.225000px;}
.y4f{bottom:274.725000px;}
.y1f{bottom:276.822000px;}
.ya8{bottom:276.975000px;}
.y173{bottom:277.950000px;}
.yf2{bottom:284.625000px;}
.y11c{bottom:284.850000px;}
.y7d{bottom:286.650000px;}
.y154{bottom:287.100000px;}
.y13a{bottom:288.000000px;}
.y1e{bottom:290.322000px;}
.y4e{bottom:292.725000px;}
.y172{bottom:295.800000px;}
.ycf{bottom:301.275000px;}
.yf1{bottom:302.400000px;}
.y11b{bottom:302.625000px;}
.y1d{bottom:303.822000px;}
.y7c{bottom:304.425000px;}
.y153{bottom:304.725000px;}
.y139{bottom:305.775000px;}
.y4d{bottom:310.725000px;}
.ya7{bottom:312.975000px;}
.y171{bottom:313.650000px;}
.y1c{bottom:317.322000px;}
.yf0{bottom:320.175000px;}
.y11a{bottom:320.400000px;}
.y7b{bottom:322.200000px;}
.y152{bottom:322.350000px;}
.y138{bottom:323.550000px;}
.y4c{bottom:328.725000px;}
.y1b{bottom:330.822000px;}
.ya6{bottom:331.200000px;}
.y170{bottom:331.500000px;}
.yce{bottom:332.775000px;}
.yef{bottom:337.950000px;}
.y119{bottom:338.175000px;}
.y7a{bottom:339.975000px;}
.y137{bottom:341.325000px;}
.y1a{bottom:344.322000px;}
.y4b{bottom:346.725000px;}
.ya5{bottom:349.425000px;}
.ycd{bottom:350.775000px;}
.yee{bottom:355.725000px;}
.y118{bottom:355.950000px;}
.y151{bottom:357.600000px;}
.y79{bottom:357.750000px;}
.y19{bottom:357.822000px;}
.y193{bottom:358.950000px;}
.y136{bottom:359.100000px;}
.y16f{bottom:362.850000px;}
.y4a{bottom:364.725000px;}
.ya4{bottom:367.650000px;}
.ycc{bottom:368.775000px;}
.y18{bottom:371.322000px;}
.yed{bottom:373.500000px;}
.y117{bottom:373.725000px;}
.y150{bottom:375.225000px;}
.y78{bottom:375.525000px;}
.y135{bottom:376.875000px;}
.y49{bottom:382.725000px;}
.y17{bottom:384.822000px;}
.ya3{bottom:385.875000px;}
.ycb{bottom:386.775000px;}
.y192{bottom:390.450000px;}
.yec{bottom:391.275000px;}
.y116{bottom:391.500000px;}
.y14f{bottom:392.850000px;}
.y77{bottom:393.300000px;}
.y16e{bottom:394.200000px;}
.y134{bottom:394.650000px;}
.y16{bottom:398.322000px;}
.y48{bottom:400.725000px;}
.ya2{bottom:404.100000px;}
.yca{bottom:404.775000px;}
.y191{bottom:408.450000px;}
.yeb{bottom:409.050000px;}
.y115{bottom:409.275000px;}
.y14e{bottom:410.475000px;}
.y76{bottom:411.075000px;}
.y15{bottom:411.822000px;}
.y16d{bottom:412.050000px;}
.y133{bottom:412.425000px;}
.y108{bottom:414.225000px;}
.y47{bottom:418.725000px;}
.yc9{bottom:422.775000px;}
.yea{bottom:426.825000px;}
.y114{bottom:427.050000px;}
.y14d{bottom:428.100000px;}
.y75{bottom:428.850000px;}
.y132{bottom:430.200000px;}
.y46{bottom:436.725000px;}
.y190{bottom:439.950000px;}
.ya1{bottom:440.325000px;}
.yc8{bottom:440.775000px;}
.y16c{bottom:443.400000px;}
.ye9{bottom:444.600000px;}
.y113{bottom:444.825000px;}
.y107{bottom:445.725000px;}
.y74{bottom:446.625000px;}
.y131{bottom:447.975000px;}
.y14{bottom:449.118900px;}
.y45{bottom:454.725000px;}
.y18f{bottom:457.950000px;}
.ya0{bottom:458.325000px;}
.yc7{bottom:458.775000px;}
.y16b{bottom:461.250000px;}
.ye8{bottom:462.375000px;}
.y112{bottom:462.600000px;}
.y14c{bottom:463.350000px;}
.y106{bottom:463.725000px;}
.y73{bottom:464.400000px;}
.y130{bottom:465.750000px;}
.y13{bottom:466.218900px;}
.y9f{bottom:476.325000px;}
.yc6{bottom:476.775000px;}
.ye7{bottom:480.150000px;}
.y111{bottom:480.375000px;}
.y14b{bottom:480.975000px;}
.y105{bottom:481.725000px;}
.y72{bottom:482.175000px;}
.y12{bottom:483.318900px;}
.y12f{bottom:483.525000px;}
.y44{bottom:486.225000px;}
.y18e{bottom:489.450000px;}
.y16a{bottom:492.600000px;}
.y9e{bottom:494.325000px;}
.yc5{bottom:494.775000px;}
.ye6{bottom:497.925000px;}
.y110{bottom:498.150000px;}
.y14a{bottom:498.600000px;}
.y104{bottom:499.725000px;}
.y71{bottom:499.950000px;}
.y11{bottom:500.418750px;}
.y12e{bottom:501.300000px;}
.y43{bottom:504.225000px;}
.y18d{bottom:507.450000px;}
.y169{bottom:510.450000px;}
.yc4{bottom:512.775000px;}
.ye5{bottom:515.700000px;}
.y10f{bottom:515.925000px;}
.y149{bottom:516.225000px;}
.y70{bottom:517.725000px;}
.y12d{bottom:519.075000px;}
.y18c{bottom:525.450000px;}
.y10{bottom:526.048650px;}
.y9d{bottom:530.325000px;}
.yc3{bottom:530.775000px;}
.ye4{bottom:533.475000px;}
.y10e{bottom:533.700000px;}
.y148{bottom:533.850000px;}
.y6f{bottom:535.500000px;}
.y42{bottom:535.725000px;}
.y12c{bottom:536.850000px;}
.y168{bottom:541.800000px;}
.yf{bottom:543.148650px;}
.y18b{bottom:543.450000px;}
.y9c{bottom:548.550000px;}
.yc2{bottom:548.775000px;}
.ye3{bottom:551.250000px;}
.y10d{bottom:551.475000px;}
.y6e{bottom:553.275000px;}
.y41{bottom:553.725000px;}
.y12b{bottom:554.625000px;}
.y167{bottom:559.650000px;}
.ye{bottom:560.248650px;}
.y18a{bottom:561.450000px;}
.y9b{bottom:566.775000px;}
.ye2{bottom:569.025000px;}
.y147{bottom:569.100000px;}
.y10c{bottom:569.250000px;}
.y6d{bottom:571.050000px;}
.y40{bottom:571.725000px;}
.y12a{bottom:572.400000px;}
.yd{bottom:577.348650px;}
.y166{bottom:577.500000px;}
.yc1{bottom:584.775000px;}
.y9a{bottom:585.000000px;}
.y146{bottom:586.725000px;}
.ye1{bottom:586.800000px;}
.y10b{bottom:587.025000px;}
.y6c{bottom:588.825000px;}
.y3f{bottom:589.725000px;}
.y129{bottom:590.175000px;}
.y189{bottom:592.950000px;}
.yc0{bottom:602.775000px;}
.yc{bottom:602.978700px;}
.y99{bottom:603.225000px;}
.y145{bottom:604.350000px;}
.ye0{bottom:604.575000px;}
.y10a{bottom:604.800000px;}
.y6b{bottom:606.600000px;}
.y3e{bottom:607.725000px;}
.y128{bottom:607.950000px;}
.y165{bottom:608.850000px;}
.y188{bottom:610.950000px;}
.yb{bottom:620.078700px;}
.ybf{bottom:620.775000px;}
.y98{bottom:621.450000px;}
.ydf{bottom:622.350000px;}
.y109{bottom:622.575000px;}
.y6a{bottom:624.375000px;}
.y3d{bottom:625.725000px;}
.y127{bottom:625.950000px;}
.y164{bottom:626.850000px;}
.ya{bottom:637.178700px;}
.ybe{bottom:638.775000px;}
.y97{bottom:639.675000px;}
.yde{bottom:640.350000px;}
.y69{bottom:642.150000px;}
.y187{bottom:642.300000px;}
.y3c{bottom:643.725000px;}
.y126{bottom:643.950000px;}
.y9{bottom:654.278700px;}
.y96{bottom:657.900000px;}
.ydd{bottom:658.350000px;}
.y68{bottom:659.925000px;}
.y186{bottom:660.150000px;}
.y3b{bottom:661.725000px;}
.ybd{bottom:674.775000px;}
.y95{bottom:676.125000px;}
.ydc{bottom:676.350000px;}
.y67{bottom:677.700000px;}
.y185{bottom:678.000000px;}
.y103{bottom:679.500000px;}
.y3a{bottom:679.725000px;}
.ybc{bottom:692.775000px;}
.y94{bottom:694.350000px;}
.y66{bottom:695.475000px;}
.y184{bottom:695.850000px;}
.y102{bottom:697.275000px;}
.y39{bottom:697.725000px;}
.ybb{bottom:710.775000px;}
.ydb{bottom:712.350000px;}
.y93{bottom:712.575000px;}
.y65{bottom:713.250000px;}
.y101{bottom:715.050000px;}
.y38{bottom:715.725000px;}
.y4{bottom:716.910450px;}
.y183{bottom:727.200000px;}
.yba{bottom:728.775000px;}
.yda{bottom:730.350000px;}
.y92{bottom:730.800000px;}
.y64{bottom:731.025000px;}
.y100{bottom:732.825000px;}
.y37{bottom:733.725000px;}
.y163{bottom:743.850000px;}
.y182{bottom:745.050000px;}
.y3{bottom:745.417950px;}
.yb9{bottom:746.775000px;}
.yd9{bottom:748.350000px;}
.y63{bottom:748.800000px;}
.y91{bottom:749.025000px;}
.yff{bottom:750.600000px;}
.y36{bottom:751.725000px;}
.y162{bottom:761.850000px;}
.y181{bottom:762.900000px;}
.yb8{bottom:764.775000px;}
.yd8{bottom:766.350000px;}
.y62{bottom:766.575000px;}
.y90{bottom:767.250000px;}
.yfe{bottom:768.375000px;}
.y35{bottom:769.725000px;}
.y161{bottom:779.850000px;}
.y61{bottom:784.350000px;}
.y8f{bottom:785.475000px;}
.yfd{bottom:786.150000px;}
.y34{bottom:787.725000px;}
.y180{bottom:794.250000px;}
.y160{bottom:797.850000px;}
.yb7{bottom:800.775000px;}
.y60{bottom:802.350000px;}
.y8e{bottom:803.700000px;}
.yfc{bottom:803.925000px;}
.y33{bottom:805.725000px;}
.y17f{bottom:812.100000px;}
.yb6{bottom:819.000000px;}
.y5f{bottom:820.350000px;}
.y8d{bottom:821.700000px;}
.y32{bottom:823.725000px;}
.y15f{bottom:829.350000px;}
.y17e{bottom:829.950000px;}
.yb5{bottom:837.225000px;}
.y5e{bottom:838.350000px;}
.y8c{bottom:839.475000px;}
.y31{bottom:841.725000px;}
.y15e{bottom:847.350000px;}
.y17d{bottom:847.800000px;}
.yb4{bottom:855.450000px;}
.y5d{bottom:856.350000px;}
.y8b{bottom:857.250000px;}
.y30{bottom:859.725000px;}
.yb3{bottom:873.675000px;}
.y5c{bottom:874.350000px;}
.y8a{bottom:875.025000px;}
.y2f{bottom:877.725000px;}
.y15d{bottom:878.850000px;}
.y17c{bottom:879.150000px;}
.y8{bottom:891.048000px;}
.yb2{bottom:891.900000px;}
.y5b{bottom:892.350000px;}
.y89{bottom:892.800000px;}
.y2e{bottom:895.725000px;}
.y15c{bottom:896.850000px;}
.y17b{bottom:897.000000px;}
.y7{bottom:903.049500px;}
.yb1{bottom:910.125000px;}
.y5a{bottom:910.350000px;}
.y88{bottom:910.575000px;}
.y6{bottom:915.051000px;}
.y2d{bottom:927.225000px;}
.y59{bottom:928.350000px;}
.y5{bottom:931.725000px;}
.y2c{bottom:974.925000px;}
.hb{height:26.525391px;}
.h2{height:30.946289px;}
.h5{height:31.500000px;}
.h9{height:35.367188px;}
.h8{height:36.000000px;}
.h6{height:40.500000px;}
.h7{height:41.998535px;}
.hd{height:44.208984px;}
.hf{height:45.000000px;}
.he{height:45.753838px;}
.hc{height:49.500000px;}
.h3{height:51.117188px;}
.ha{height:54.196289px;}
.h4{height:66.665039px;}
.h0{height:1020.600000px;}
.h1{height:1020.750000px;}
.w1{width:722.250000px;}
.w0{width:722.520000px;}
.x0{left:0.000000px;}
.x3{left:75.600000px;}
.x16{left:91.530000px;}
.x12{left:95.310000px;}
.x13{left:102.060000px;}
.x18{left:112.050000px;}
.x1a{left:135.135000px;}
.x6{left:140.541300px;}
.x5{left:150.526800px;}
.x1{left:154.120200px;}
.x19{left:164.895000px;}
.x1b{left:181.095000px;}
.x17{left:243.504450px;}
.xa{left:318.356700px;}
.xb{left:343.978200px;}
.x4{left:350.457300px;}
.x7{left:352.410300px;}
.x11{left:385.932300px;}
.xe{left:387.509700px;}
.xf{left:392.290650px;}
.xd{left:462.621450px;}
.x10{left:464.221800px;}
.x8{left:482.166900px;}
.x9{left:484.796700px;}
.xc{left:486.189450px;}
.x2{left:497.163300px;}
.x14{left:512.640000px;}
.x15{left:551.973300px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:14.000000pt;}
.v3{vertical-align:17.760000pt;}
.v2{vertical-align:20.666667pt;}
.ls3b{letter-spacing:-4.693333pt;}
.ls21{letter-spacing:-2.986667pt;}
.ls2f{letter-spacing:-2.880000pt;}
.ls31{letter-spacing:-2.826667pt;}
.ls30{letter-spacing:-2.773333pt;}
.ls22{letter-spacing:-2.720000pt;}
.ls32{letter-spacing:-2.613333pt;}
.ls37{letter-spacing:-2.453333pt;}
.ls38{letter-spacing:-2.218667pt;}
.ls3c{letter-spacing:-1.920000pt;}
.ls1{letter-spacing:-1.877333pt;}
.ls1b{letter-spacing:-1.621333pt;}
.ls33{letter-spacing:-1.546667pt;}
.ls3{letter-spacing:-1.493333pt;}
.ls2b{letter-spacing:-1.173333pt;}
.ls14{letter-spacing:-0.960000pt;}
.ls2c{letter-spacing:-0.906667pt;}
.ls15{letter-spacing:-0.853333pt;}
.ls28{letter-spacing:-0.800000pt;}
.ls1c{letter-spacing:-0.746667pt;}
.ls13{letter-spacing:-0.693333pt;}
.ls1d{letter-spacing:-0.640000pt;}
.ls11{letter-spacing:-0.586667pt;}
.ls12{letter-spacing:-0.533333pt;}
.lsb{letter-spacing:-0.512000pt;}
.ls26{letter-spacing:-0.480000pt;}
.ls10{letter-spacing:-0.426667pt;}
.lsf{letter-spacing:-0.373333pt;}
.ls2{letter-spacing:-0.320000pt;}
.ls1e{letter-spacing:-0.266667pt;}
.ls20{letter-spacing:-0.213333pt;}
.ls1a{letter-spacing:-0.160000pt;}
.ls8{letter-spacing:-0.128000pt;}
.ls1f{letter-spacing:-0.106667pt;}
.ls6{letter-spacing:-0.085333pt;}
.ls16{letter-spacing:-0.058667pt;}
.ls19{letter-spacing:-0.053333pt;}
.ls7{letter-spacing:-0.042667pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2a{letter-spacing:0.053333pt;}
.lse{letter-spacing:0.058667pt;}
.ls34{letter-spacing:0.106667pt;}
.ls9{letter-spacing:0.128000pt;}
.ls29{letter-spacing:0.155467pt;}
.ls2d{letter-spacing:0.160000pt;}
.ls17{letter-spacing:0.176000pt;}
.ls25{letter-spacing:0.213333pt;}
.ls27{letter-spacing:0.266667pt;}
.ls23{letter-spacing:0.320000pt;}
.ls24{letter-spacing:0.373333pt;}
.ls35{letter-spacing:0.426667pt;}
.lsd{letter-spacing:0.448000pt;}
.lsa{letter-spacing:0.512000pt;}
.lsc{letter-spacing:0.554667pt;}
.ls4{letter-spacing:0.576000pt;}
.ls18{letter-spacing:0.621867pt;}
.ls36{letter-spacing:0.640000pt;}
.ls5{letter-spacing:0.725333pt;}
.ls39{letter-spacing:0.853333pt;}
.ls2e{letter-spacing:0.997333pt;}
.ls3a{letter-spacing:1.013333pt;}
.ws98{word-spacing:-17.306667pt;}
.ws17{word-spacing:-16.485333pt;}
.wsad{word-spacing:-15.840000pt;}
.wsa3{word-spacing:-15.040000pt;}
.wsa4{word-spacing:-14.986667pt;}
.wsa2{word-spacing:-14.933333pt;}
.wsa7{word-spacing:-14.880000pt;}
.ws4a{word-spacing:-14.826667pt;}
.ws6c{word-spacing:-14.453333pt;}
.wsa0{word-spacing:-14.400000pt;}
.ws6b{word-spacing:-14.346667pt;}
.wsae{word-spacing:-14.133333pt;}
.ws9d{word-spacing:-13.333333pt;}
.wsa1{word-spacing:-13.280000pt;}
.wsaf{word-spacing:-12.906667pt;}
.wsa5{word-spacing:-12.373333pt;}
.ws9f{word-spacing:-12.213333pt;}
.ws9e{word-spacing:-12.000000pt;}
.wsa6{word-spacing:-11.946667pt;}
.ws2{word-spacing:-11.349333pt;}
.ws37{word-spacing:-10.240000pt;}
.ws0{word-spacing:-9.984000pt;}
.wsac{word-spacing:-9.642667pt;}
.ws18{word-spacing:-9.265813pt;}
.ws1{word-spacing:-8.885333pt;}
.ws7b{word-spacing:-8.799413pt;}
.ws53{word-spacing:-1.973333pt;}
.ws4f{word-spacing:-1.813333pt;}
.ws97{word-spacing:-1.706667pt;}
.ws50{word-spacing:-1.653333pt;}
.ws20{word-spacing:-1.600000pt;}
.ws26{word-spacing:-1.584000pt;}
.ws1f{word-spacing:-1.546667pt;}
.ws1d{word-spacing:-1.493333pt;}
.ws3f{word-spacing:-1.440000pt;}
.ws41{word-spacing:-1.386667pt;}
.ws79{word-spacing:-1.333333pt;}
.ws38{word-spacing:-1.280000pt;}
.ws9{word-spacing:-1.237333pt;}
.ws52{word-spacing:-1.226667pt;}
.ws10{word-spacing:-1.194667pt;}
.ws6f{word-spacing:-1.173333pt;}
.wsf{word-spacing:-1.152000pt;}
.ws61{word-spacing:-1.120000pt;}
.ws7f{word-spacing:-1.013333pt;}
.ws8c{word-spacing:-0.960000pt;}
.ws74{word-spacing:-0.906667pt;}
.ws30{word-spacing:-0.853333pt;}
.ws6{word-spacing:-0.725333pt;}
.ws73{word-spacing:-0.693333pt;}
.ws90{word-spacing:-0.640000pt;}
.ws78{word-spacing:-0.586667pt;}
.ws5{word-spacing:-0.576000pt;}
.ws15{word-spacing:-0.554667pt;}
.ws5a{word-spacing:-0.533333pt;}
.ws14{word-spacing:-0.512000pt;}
.ws8a{word-spacing:-0.480000pt;}
.ws19{word-spacing:-0.448000pt;}
.wsb7{word-spacing:-0.426667pt;}
.ws25{word-spacing:-0.320000pt;}
.wsa{word-spacing:-0.298667pt;}
.ws68{word-spacing:-0.266667pt;}
.ws81{word-spacing:-0.213333pt;}
.ws93{word-spacing:-0.160000pt;}
.ws92{word-spacing:-0.106667pt;}
.ws1a{word-spacing:-0.058667pt;}
.ws33{word-spacing:-0.053333pt;}
.ws3{word-spacing:0.000000pt;}
.ws29{word-spacing:0.053333pt;}
.ws48{word-spacing:0.106667pt;}
.ws43{word-spacing:0.160000pt;}
.ws31{word-spacing:0.213333pt;}
.ws62{word-spacing:0.266667pt;}
.ws4{word-spacing:0.320000pt;}
.ws5b{word-spacing:0.373333pt;}
.ws4d{word-spacing:0.426667pt;}
.ws12{word-spacing:0.469333pt;}
.wsa9{word-spacing:0.480000pt;}
.ws23{word-spacing:0.533333pt;}
.ws3b{word-spacing:0.586667pt;}
.ws36{word-spacing:0.640000pt;}
.ws39{word-spacing:0.693333pt;}
.ws2f{word-spacing:0.746667pt;}
.ws42{word-spacing:0.800000pt;}
.ws4e{word-spacing:0.853333pt;}
.ws47{word-spacing:0.906667pt;}
.ws8e{word-spacing:0.960000pt;}
.ws3a{word-spacing:1.013333pt;}
.wsd{word-spacing:1.066667pt;}
.ws70{word-spacing:1.120000pt;}
.ws8f{word-spacing:1.173333pt;}
.ws4b{word-spacing:1.280000pt;}
.ws71{word-spacing:1.333333pt;}
.ws1e{word-spacing:1.386667pt;}
.ws32{word-spacing:1.440000pt;}
.ws89{word-spacing:1.546667pt;}
.ws66{word-spacing:1.653333pt;}
.ws83{word-spacing:1.706667pt;}
.ws77{word-spacing:1.760000pt;}
.ws67{word-spacing:1.813333pt;}
.ws80{word-spacing:1.866667pt;}
.wsb6{word-spacing:1.920000pt;}
.ws21{word-spacing:1.973333pt;}
.ws59{word-spacing:2.026667pt;}
.ws3c{word-spacing:2.080000pt;}
.ws3e{word-spacing:2.186667pt;}
.ws22{word-spacing:2.240000pt;}
.ws51{word-spacing:2.293333pt;}
.ws75{word-spacing:2.346667pt;}
.ws40{word-spacing:2.400000pt;}
.ws3d{word-spacing:2.453333pt;}
.ws45{word-spacing:2.506667pt;}
.wse{word-spacing:2.517333pt;}
.ws6d{word-spacing:2.666667pt;}
.ws7c{word-spacing:2.773333pt;}
.wsa8{word-spacing:2.880000pt;}
.ws24{word-spacing:2.933333pt;}
.ws54{word-spacing:2.986667pt;}
.ws35{word-spacing:3.040000pt;}
.ws6e{word-spacing:3.093333pt;}
.wsb0{word-spacing:3.146667pt;}
.ws7d{word-spacing:3.200000pt;}
.ws96{word-spacing:3.253333pt;}
.ws46{word-spacing:3.306667pt;}
.ws63{word-spacing:3.413333pt;}
.ws2b{word-spacing:3.520000pt;}
.ws7e{word-spacing:3.573333pt;}
.ws13{word-spacing:3.626667pt;}
.ws2e{word-spacing:3.680000pt;}
.wsb{word-spacing:3.712000pt;}
.ws72{word-spacing:3.786667pt;}
.ws55{word-spacing:3.840000pt;}
.ws44{word-spacing:3.893333pt;}
.ws2a{word-spacing:4.000000pt;}
.ws99{word-spacing:4.106667pt;}
.ws82{word-spacing:4.160000pt;}
.ws28{word-spacing:4.213333pt;}
.ws95{word-spacing:4.266667pt;}
.ws7a{word-spacing:4.373333pt;}
.ws9b{word-spacing:4.426667pt;}
.ws85{word-spacing:4.533333pt;}
.ws7{word-spacing:4.565333pt;}
.wsb2{word-spacing:4.586667pt;}
.ws65{word-spacing:4.640000pt;}
.ws8{word-spacing:4.693333pt;}
.ws76{word-spacing:4.853333pt;}
.ws5e{word-spacing:4.960000pt;}
.ws4c{word-spacing:5.013333pt;}
.wsc{word-spacing:5.034667pt;}
.ws9a{word-spacing:5.066667pt;}
.ws94{word-spacing:5.173333pt;}
.ws58{word-spacing:5.280000pt;}
.ws2d{word-spacing:5.333333pt;}
.ws5c{word-spacing:5.386667pt;}
.ws27{word-spacing:5.546667pt;}
.ws2c{word-spacing:5.653333pt;}
.ws11{word-spacing:5.845333pt;}
.ws64{word-spacing:6.186667pt;}
.wsb5{word-spacing:6.293333pt;}
.ws8b{word-spacing:6.346667pt;}
.wsb4{word-spacing:6.613333pt;}
.ws88{word-spacing:6.666667pt;}
.ws8d{word-spacing:6.720000pt;}
.ws69{word-spacing:6.773333pt;}
.ws87{word-spacing:6.826667pt;}
.wsab{word-spacing:7.093333pt;}
.wsaa{word-spacing:7.200000pt;}
.ws34{word-spacing:7.253333pt;}
.ws1b{word-spacing:7.306667pt;}
.ws1c{word-spacing:7.360000pt;}
.ws86{word-spacing:7.413333pt;}
.ws5d{word-spacing:7.680000pt;}
.ws56{word-spacing:7.786667pt;}
.ws60{word-spacing:8.213333pt;}
.wsb1{word-spacing:8.640000pt;}
.wsb3{word-spacing:8.746667pt;}
.ws57{word-spacing:17.653333pt;}
.ws5f{word-spacing:18.080000pt;}
.ws6a{word-spacing:395.884800pt;}
.ws84{word-spacing:396.064000pt;}
.ws9c{word-spacing:396.123733pt;}
.ws16{word-spacing:396.853333pt;}
.ws91{word-spacing:396.857600pt;}
.ws49{word-spacing:397.856000pt;}
._5{margin-left:-6.009600pt;}
._9{margin-left:-4.587733pt;}
._4{margin-left:-3.666133pt;}
._6{margin-left:-2.408000pt;}
._1{margin-left:-1.370133pt;}
._0{width:1.198400pt;}
._3{width:2.269867pt;}
._8{width:3.296533pt;}
._7{width:4.399467pt;}
._b{width:5.942400pt;}
._a{width:6.944000pt;}
._d{width:7.976000pt;}
._2{width:124.222400pt;}
._c{width:1624.274667pt;}
.fs8{font-size:31.093333pt;}
.fs1{font-size:32.000000pt;}
.fs0{font-size:37.333333pt;}
.fs2{font-size:42.666667pt;}
.fs4{font-size:48.000000pt;}
.fs5{font-size:50.666667pt;}
.fs7{font-size:53.333333pt;}
.fs6{font-size:58.666667pt;}
.fs3{font-size:80.000000pt;}
.y0{bottom:0.000000pt;}
.y2b{bottom:43.866667pt;}
.y2{bottom:44.533333pt;}
.y2a{bottom:48.033333pt;}
.y1{bottom:53.866667pt;}
.y87{bottom:96.800000pt;}
.y144{bottom:98.000000pt;}
.y17a{bottom:100.000000pt;}
.y58{bottom:100.200000pt;}
.yb0{bottom:101.800000pt;}
.y29{bottom:107.525333pt;}
.y15b{bottom:108.533333pt;}
.yfb{bottom:110.800000pt;}
.y125{bottom:111.000000pt;}
.yd7{bottom:111.800000pt;}
.y86{bottom:112.600000pt;}
.y143{bottom:113.800000pt;}
.y57{bottom:116.200000pt;}
.yaf{bottom:118.000000pt;}
.y28{bottom:119.525333pt;}
.yfa{bottom:126.600000pt;}
.y124{bottom:126.800000pt;}
.yd6{bottom:127.800000pt;}
.y179{bottom:127.866667pt;}
.y85{bottom:128.400000pt;}
.y142{bottom:129.600000pt;}
.y56{bottom:132.200000pt;}
.y15a{bottom:136.533333pt;}
.yf9{bottom:142.400000pt;}
.y123{bottom:142.600000pt;}
.y178{bottom:143.733333pt;}
.yd5{bottom:143.800000pt;}
.y27{bottom:144.069333pt;}
.y84{bottom:144.200000pt;}
.y141{bottom:145.400000pt;}
.y55{bottom:148.200000pt;}
.yae{bottom:150.200000pt;}
.yf8{bottom:158.200000pt;}
.y122{bottom:158.400000pt;}
.yd4{bottom:159.800000pt;}
.y83{bottom:160.000000pt;}
.y140{bottom:161.200000pt;}
.y26{bottom:162.064000pt;}
.y54{bottom:164.200000pt;}
.y159{bottom:164.533333pt;}
.yad{bottom:166.200000pt;}
.y177{bottom:171.600000pt;}
.yf7{bottom:174.000000pt;}
.y25{bottom:174.064000pt;}
.y121{bottom:174.200000pt;}
.y82{bottom:175.800000pt;}
.y13f{bottom:177.000000pt;}
.y53{bottom:180.200000pt;}
.yac{bottom:182.200000pt;}
.y24{bottom:186.064000pt;}
.y176{bottom:187.466667pt;}
.yf6{bottom:189.800000pt;}
.y120{bottom:190.000000pt;}
.y81{bottom:191.600000pt;}
.yd3{bottom:191.800000pt;}
.y158{bottom:192.533333pt;}
.y13e{bottom:192.800000pt;}
.y52{bottom:196.200000pt;}
.y23{bottom:198.064000pt;}
.yab{bottom:198.200000pt;}
.y175{bottom:203.333333pt;}
.yf5{bottom:205.600000pt;}
.y11f{bottom:205.800000pt;}
.y80{bottom:207.400000pt;}
.yd2{bottom:207.800000pt;}
.y157{bottom:208.200000pt;}
.y13d{bottom:208.600000pt;}
.y22{bottom:210.064000pt;}
.y51{bottom:212.200000pt;}
.yaa{bottom:214.200000pt;}
.yf4{bottom:221.400000pt;}
.y11e{bottom:221.600000pt;}
.y21{bottom:222.064000pt;}
.y7f{bottom:223.200000pt;}
.yd1{bottom:223.800000pt;}
.y156{bottom:223.866667pt;}
.y13c{bottom:224.400000pt;}
.y50{bottom:228.200000pt;}
.ya9{bottom:230.200000pt;}
.y174{bottom:231.200000pt;}
.y20{bottom:234.064000pt;}
.yf3{bottom:237.200000pt;}
.y11d{bottom:237.400000pt;}
.y7e{bottom:239.000000pt;}
.y155{bottom:239.533333pt;}
.yd0{bottom:239.800000pt;}
.y13b{bottom:240.200000pt;}
.y4f{bottom:244.200000pt;}
.y1f{bottom:246.064000pt;}
.ya8{bottom:246.200000pt;}
.y173{bottom:247.066667pt;}
.yf2{bottom:253.000000pt;}
.y11c{bottom:253.200000pt;}
.y7d{bottom:254.800000pt;}
.y154{bottom:255.200000pt;}
.y13a{bottom:256.000000pt;}
.y1e{bottom:258.064000pt;}
.y4e{bottom:260.200000pt;}
.y172{bottom:262.933333pt;}
.ycf{bottom:267.800000pt;}
.yf1{bottom:268.800000pt;}
.y11b{bottom:269.000000pt;}
.y1d{bottom:270.064000pt;}
.y7c{bottom:270.600000pt;}
.y153{bottom:270.866667pt;}
.y139{bottom:271.800000pt;}
.y4d{bottom:276.200000pt;}
.ya7{bottom:278.200000pt;}
.y171{bottom:278.800000pt;}
.y1c{bottom:282.064000pt;}
.yf0{bottom:284.600000pt;}
.y11a{bottom:284.800000pt;}
.y7b{bottom:286.400000pt;}
.y152{bottom:286.533333pt;}
.y138{bottom:287.600000pt;}
.y4c{bottom:292.200000pt;}
.y1b{bottom:294.064000pt;}
.ya6{bottom:294.400000pt;}
.y170{bottom:294.666667pt;}
.yce{bottom:295.800000pt;}
.yef{bottom:300.400000pt;}
.y119{bottom:300.600000pt;}
.y7a{bottom:302.200000pt;}
.y137{bottom:303.400000pt;}
.y1a{bottom:306.064000pt;}
.y4b{bottom:308.200000pt;}
.ya5{bottom:310.600000pt;}
.ycd{bottom:311.800000pt;}
.yee{bottom:316.200000pt;}
.y118{bottom:316.400000pt;}
.y151{bottom:317.866667pt;}
.y79{bottom:318.000000pt;}
.y19{bottom:318.064000pt;}
.y193{bottom:319.066667pt;}
.y136{bottom:319.200000pt;}
.y16f{bottom:322.533333pt;}
.y4a{bottom:324.200000pt;}
.ya4{bottom:326.800000pt;}
.ycc{bottom:327.800000pt;}
.y18{bottom:330.064000pt;}
.yed{bottom:332.000000pt;}
.y117{bottom:332.200000pt;}
.y150{bottom:333.533333pt;}
.y78{bottom:333.800000pt;}
.y135{bottom:335.000000pt;}
.y49{bottom:340.200000pt;}
.y17{bottom:342.064000pt;}
.ya3{bottom:343.000000pt;}
.ycb{bottom:343.800000pt;}
.y192{bottom:347.066667pt;}
.yec{bottom:347.800000pt;}
.y116{bottom:348.000000pt;}
.y14f{bottom:349.200000pt;}
.y77{bottom:349.600000pt;}
.y16e{bottom:350.400000pt;}
.y134{bottom:350.800000pt;}
.y16{bottom:354.064000pt;}
.y48{bottom:356.200000pt;}
.ya2{bottom:359.200000pt;}
.yca{bottom:359.800000pt;}
.y191{bottom:363.066667pt;}
.yeb{bottom:363.600000pt;}
.y115{bottom:363.800000pt;}
.y14e{bottom:364.866667pt;}
.y76{bottom:365.400000pt;}
.y15{bottom:366.064000pt;}
.y16d{bottom:366.266667pt;}
.y133{bottom:366.600000pt;}
.y108{bottom:368.200000pt;}
.y47{bottom:372.200000pt;}
.yc9{bottom:375.800000pt;}
.yea{bottom:379.400000pt;}
.y114{bottom:379.600000pt;}
.y14d{bottom:380.533333pt;}
.y75{bottom:381.200000pt;}
.y132{bottom:382.400000pt;}
.y46{bottom:388.200000pt;}
.y190{bottom:391.066667pt;}
.ya1{bottom:391.400000pt;}
.yc8{bottom:391.800000pt;}
.y16c{bottom:394.133333pt;}
.ye9{bottom:395.200000pt;}
.y113{bottom:395.400000pt;}
.y107{bottom:396.200000pt;}
.y74{bottom:397.000000pt;}
.y131{bottom:398.200000pt;}
.y14{bottom:399.216800pt;}
.y45{bottom:404.200000pt;}
.y18f{bottom:407.066667pt;}
.ya0{bottom:407.400000pt;}
.yc7{bottom:407.800000pt;}
.y16b{bottom:410.000000pt;}
.ye8{bottom:411.000000pt;}
.y112{bottom:411.200000pt;}
.y14c{bottom:411.866667pt;}
.y106{bottom:412.200000pt;}
.y73{bottom:412.800000pt;}
.y130{bottom:414.000000pt;}
.y13{bottom:414.416800pt;}
.y9f{bottom:423.400000pt;}
.yc6{bottom:423.800000pt;}
.ye7{bottom:426.800000pt;}
.y111{bottom:427.000000pt;}
.y14b{bottom:427.533333pt;}
.y105{bottom:428.200000pt;}
.y72{bottom:428.600000pt;}
.y12{bottom:429.616800pt;}
.y12f{bottom:429.800000pt;}
.y44{bottom:432.200000pt;}
.y18e{bottom:435.066667pt;}
.y16a{bottom:437.866667pt;}
.y9e{bottom:439.400000pt;}
.yc5{bottom:439.800000pt;}
.ye6{bottom:442.600000pt;}
.y110{bottom:442.800000pt;}
.y14a{bottom:443.200000pt;}
.y104{bottom:444.200000pt;}
.y71{bottom:444.400000pt;}
.y11{bottom:444.816667pt;}
.y12e{bottom:445.600000pt;}
.y43{bottom:448.200000pt;}
.y18d{bottom:451.066667pt;}
.y169{bottom:453.733333pt;}
.yc4{bottom:455.800000pt;}
.ye5{bottom:458.400000pt;}
.y10f{bottom:458.600000pt;}
.y149{bottom:458.866667pt;}
.y70{bottom:460.200000pt;}
.y12d{bottom:461.400000pt;}
.y18c{bottom:467.066667pt;}
.y10{bottom:467.598800pt;}
.y9d{bottom:471.400000pt;}
.yc3{bottom:471.800000pt;}
.ye4{bottom:474.200000pt;}
.y10e{bottom:474.400000pt;}
.y148{bottom:474.533333pt;}
.y6f{bottom:476.000000pt;}
.y42{bottom:476.200000pt;}
.y12c{bottom:477.200000pt;}
.y168{bottom:481.600000pt;}
.yf{bottom:482.798800pt;}
.y18b{bottom:483.066667pt;}
.y9c{bottom:487.600000pt;}
.yc2{bottom:487.800000pt;}
.ye3{bottom:490.000000pt;}
.y10d{bottom:490.200000pt;}
.y6e{bottom:491.800000pt;}
.y41{bottom:492.200000pt;}
.y12b{bottom:493.000000pt;}
.y167{bottom:497.466667pt;}
.ye{bottom:497.998800pt;}
.y18a{bottom:499.066667pt;}
.y9b{bottom:503.800000pt;}
.ye2{bottom:505.800000pt;}
.y147{bottom:505.866667pt;}
.y10c{bottom:506.000000pt;}
.y6d{bottom:507.600000pt;}
.y40{bottom:508.200000pt;}
.y12a{bottom:508.800000pt;}
.yd{bottom:513.198800pt;}
.y166{bottom:513.333333pt;}
.yc1{bottom:519.800000pt;}
.y9a{bottom:520.000000pt;}
.y146{bottom:521.533333pt;}
.ye1{bottom:521.600000pt;}
.y10b{bottom:521.800000pt;}
.y6c{bottom:523.400000pt;}
.y3f{bottom:524.200000pt;}
.y129{bottom:524.600000pt;}
.y189{bottom:527.066667pt;}
.yc0{bottom:535.800000pt;}
.yc{bottom:535.981067pt;}
.y99{bottom:536.200000pt;}
.y145{bottom:537.200000pt;}
.ye0{bottom:537.400000pt;}
.y10a{bottom:537.600000pt;}
.y6b{bottom:539.200000pt;}
.y3e{bottom:540.200000pt;}
.y128{bottom:540.400000pt;}
.y165{bottom:541.200000pt;}
.y188{bottom:543.066667pt;}
.yb{bottom:551.181067pt;}
.ybf{bottom:551.800000pt;}
.y98{bottom:552.400000pt;}
.ydf{bottom:553.200000pt;}
.y109{bottom:553.400000pt;}
.y6a{bottom:555.000000pt;}
.y3d{bottom:556.200000pt;}
.y127{bottom:556.400000pt;}
.y164{bottom:557.200000pt;}
.ya{bottom:566.381067pt;}
.ybe{bottom:567.800000pt;}
.y97{bottom:568.600000pt;}
.yde{bottom:569.200000pt;}
.y69{bottom:570.800000pt;}
.y187{bottom:570.933333pt;}
.y3c{bottom:572.200000pt;}
.y126{bottom:572.400000pt;}
.y9{bottom:581.581067pt;}
.y96{bottom:584.800000pt;}
.ydd{bottom:585.200000pt;}
.y68{bottom:586.600000pt;}
.y186{bottom:586.800000pt;}
.y3b{bottom:588.200000pt;}
.ybd{bottom:599.800000pt;}
.y95{bottom:601.000000pt;}
.ydc{bottom:601.200000pt;}
.y67{bottom:602.400000pt;}
.y185{bottom:602.666667pt;}
.y103{bottom:604.000000pt;}
.y3a{bottom:604.200000pt;}
.ybc{bottom:615.800000pt;}
.y94{bottom:617.200000pt;}
.y66{bottom:618.200000pt;}
.y184{bottom:618.533333pt;}
.y102{bottom:619.800000pt;}
.y39{bottom:620.200000pt;}
.ybb{bottom:631.800000pt;}
.ydb{bottom:633.200000pt;}
.y93{bottom:633.400000pt;}
.y65{bottom:634.000000pt;}
.y101{bottom:635.600000pt;}
.y38{bottom:636.200000pt;}
.y4{bottom:637.253733pt;}
.y183{bottom:646.400000pt;}
.yba{bottom:647.800000pt;}
.yda{bottom:649.200000pt;}
.y92{bottom:649.600000pt;}
.y64{bottom:649.800000pt;}
.y100{bottom:651.400000pt;}
.y37{bottom:652.200000pt;}
.y163{bottom:661.200000pt;}
.y182{bottom:662.266667pt;}
.y3{bottom:662.593733pt;}
.yb9{bottom:663.800000pt;}
.yd9{bottom:665.200000pt;}
.y63{bottom:665.600000pt;}
.y91{bottom:665.800000pt;}
.yff{bottom:667.200000pt;}
.y36{bottom:668.200000pt;}
.y162{bottom:677.200000pt;}
.y181{bottom:678.133333pt;}
.yb8{bottom:679.800000pt;}
.yd8{bottom:681.200000pt;}
.y62{bottom:681.400000pt;}
.y90{bottom:682.000000pt;}
.yfe{bottom:683.000000pt;}
.y35{bottom:684.200000pt;}
.y161{bottom:693.200000pt;}
.y61{bottom:697.200000pt;}
.y8f{bottom:698.200000pt;}
.yfd{bottom:698.800000pt;}
.y34{bottom:700.200000pt;}
.y180{bottom:706.000000pt;}
.y160{bottom:709.200000pt;}
.yb7{bottom:711.800000pt;}
.y60{bottom:713.200000pt;}
.y8e{bottom:714.400000pt;}
.yfc{bottom:714.600000pt;}
.y33{bottom:716.200000pt;}
.y17f{bottom:721.866667pt;}
.yb6{bottom:728.000000pt;}
.y5f{bottom:729.200000pt;}
.y8d{bottom:730.400000pt;}
.y32{bottom:732.200000pt;}
.y15f{bottom:737.200000pt;}
.y17e{bottom:737.733333pt;}
.yb5{bottom:744.200000pt;}
.y5e{bottom:745.200000pt;}
.y8c{bottom:746.200000pt;}
.y31{bottom:748.200000pt;}
.y15e{bottom:753.200000pt;}
.y17d{bottom:753.600000pt;}
.yb4{bottom:760.400000pt;}
.y5d{bottom:761.200000pt;}
.y8b{bottom:762.000000pt;}
.y30{bottom:764.200000pt;}
.yb3{bottom:776.600000pt;}
.y5c{bottom:777.200000pt;}
.y8a{bottom:777.800000pt;}
.y2f{bottom:780.200000pt;}
.y15d{bottom:781.200000pt;}
.y17c{bottom:781.466667pt;}
.y8{bottom:792.042667pt;}
.yb2{bottom:792.800000pt;}
.y5b{bottom:793.200000pt;}
.y89{bottom:793.600000pt;}
.y2e{bottom:796.200000pt;}
.y15c{bottom:797.200000pt;}
.y17b{bottom:797.333333pt;}
.y7{bottom:802.710667pt;}
.yb1{bottom:809.000000pt;}
.y5a{bottom:809.200000pt;}
.y88{bottom:809.400000pt;}
.y6{bottom:813.378667pt;}
.y2d{bottom:824.200000pt;}
.y59{bottom:825.200000pt;}
.y5{bottom:828.200000pt;}
.y2c{bottom:866.600000pt;}
.hb{height:23.578125pt;}
.h2{height:27.507812pt;}
.h5{height:28.000000pt;}
.h9{height:31.437500pt;}
.h8{height:32.000000pt;}
.h6{height:36.000000pt;}
.h7{height:37.332031pt;}
.hd{height:39.296875pt;}
.hf{height:40.000000pt;}
.he{height:40.670078pt;}
.hc{height:44.000000pt;}
.h3{height:45.437500pt;}
.ha{height:48.174479pt;}
.h4{height:59.257812pt;}
.h0{height:907.200000pt;}
.h1{height:907.333333pt;}
.w1{width:642.000000pt;}
.w0{width:642.240000pt;}
.x0{left:0.000000pt;}
.x3{left:67.200000pt;}
.x16{left:81.360000pt;}
.x12{left:84.720000pt;}
.x13{left:90.720000pt;}
.x18{left:99.600000pt;}
.x1a{left:120.120000pt;}
.x6{left:124.925600pt;}
.x5{left:133.801600pt;}
.x1{left:136.995733pt;}
.x19{left:146.573333pt;}
.x1b{left:160.973333pt;}
.x17{left:216.448400pt;}
.xa{left:282.983733pt;}
.xb{left:305.758400pt;}
.x4{left:311.517600pt;}
.x7{left:313.253600pt;}
.x11{left:343.050933pt;}
.xe{left:344.453067pt;}
.xf{left:348.702800pt;}
.xd{left:411.219067pt;}
.x10{left:412.641600pt;}
.x8{left:428.592800pt;}
.x9{left:430.930400pt;}
.xc{left:432.168400pt;}
.x2{left:441.922933pt;}
.x14{left:455.680000pt;}
.x15{left:490.642933pt;}
}




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