
    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_c90407d79975b3b174b99f8e.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.093262;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_0e4bd42eacc27a66e3b949a0.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.910156;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_098bea8e5c66c7f59f64374f.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.893555;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_a0b4c0ef88b6ff893d5e43a0.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.896484;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_160ba21638e21dbf58246d53.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.006836;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_9708a271645fb9bf888d8848.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.910156;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_da99d16d58c14ccf02f24531.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.093262;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_6ff8ea36317cf255202f0f1a.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_d0fdecd41462ed9b61382115.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_6b0cf645106be6fe17dc0938.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_bce91be4729bb7e27cad6a26.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.918945;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_eb776a90c6b0f5f21ed2b57d.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.908203;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_5e9bf81fb61762292e8e1c8f.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.893066;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;}
.m39{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);}
.me5{transform:matrix(0.247501,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247501,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247501,0.000000,0.000000,0.250000,0,0);}
.mfa{transform:matrix(0.247505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247505,0.000000,0.000000,0.250000,0,0);}
.m49{transform:matrix(0.247564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247564,0.000000,0.000000,0.250000,0,0);}
.m2{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);}
.mda{transform:matrix(0.247632,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247632,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247632,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.247652,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247652,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247652,0.000000,0.000000,0.250000,0,0);}
.m76{transform:matrix(0.247673,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247673,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247673,0.000000,0.000000,0.250000,0,0);}
.m50{transform:matrix(0.247686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247686,0.000000,0.000000,0.250000,0,0);}
.m6d{transform:matrix(0.247689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247689,0.000000,0.000000,0.250000,0,0);}
.m4e{transform:matrix(0.247711,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247711,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247711,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.mdf{transform:matrix(0.247757,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247757,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247757,0.000000,0.000000,0.250000,0,0);}
.mae{transform:matrix(0.247800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247800,0.000000,0.000000,0.250000,0,0);}
.m9d{transform:matrix(0.247841,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247841,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247841,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.247886,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247886,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247886,0.000000,0.000000,0.250000,0,0);}
.m4f{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);}
.m43{transform:matrix(0.247916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247916,0.000000,0.000000,0.250000,0,0);}
.mef{transform:matrix(0.247920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247920,0.000000,0.000000,0.250000,0,0);}
.m82{transform:matrix(0.247934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247934,0.000000,0.000000,0.250000,0,0);}
.mb2{transform:matrix(0.247955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247955,0.000000,0.000000,0.250000,0,0);}
.mb9{transform:matrix(0.247973,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247973,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247973,0.000000,0.000000,0.250000,0,0);}
.mdd{transform:matrix(0.247975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247975,0.000000,0.000000,0.250000,0,0);}
.mb3{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m3b{transform:matrix(0.248005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248005,0.000000,0.000000,0.250000,0,0);}
.me4{transform:matrix(0.248064,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248064,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248064,0.000000,0.000000,0.250000,0,0);}
.m4b{transform:matrix(0.248066,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248066,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248066,0.000000,0.000000,0.250000,0,0);}
.m71{transform:matrix(0.248077,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248077,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248077,0.000000,0.000000,0.250000,0,0);}
.mfc{transform:matrix(0.248134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248134,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.248157,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248157,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248157,0.000000,0.000000,0.250000,0,0);}
.m87{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);}
.m4a{transform:matrix(0.248186,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248186,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248186,0.000000,0.000000,0.250000,0,0);}
.m57{transform:matrix(0.248216,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248216,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248216,0.000000,0.000000,0.250000,0,0);}
.md6{transform:matrix(0.248218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248218,0.000000,0.000000,0.250000,0,0);}
.mad{transform:matrix(0.248277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248277,0.000000,0.000000,0.250000,0,0);}
.m37{transform:matrix(0.248291,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248291,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248291,0.000000,0.000000,0.250000,0,0);}
.m101{transform:matrix(0.248298,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248298,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248298,0.000000,0.000000,0.250000,0,0);}
.mbb{transform:matrix(0.248339,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248339,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248339,0.000000,0.000000,0.250000,0,0);}
.mc4{transform:matrix(0.248352,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248352,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248352,0.000000,0.000000,0.250000,0,0);}
.mf6{transform:matrix(0.248393,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248393,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248393,0.000000,0.000000,0.250000,0,0);}
.m38{transform:matrix(0.248395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248395,0.000000,0.000000,0.250000,0,0);}
.mc3{transform:matrix(0.248402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248402,0.000000,0.000000,0.250000,0,0);}
.mfe{transform:matrix(0.248418,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248418,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248418,0.000000,0.000000,0.250000,0,0);}
.m81{transform:matrix(0.248423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248423,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.248430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248430,0.000000,0.000000,0.250000,0,0);}
.mf0{transform:matrix(0.248459,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248459,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248459,0.000000,0.000000,0.250000,0,0);}
.mf1{transform:matrix(0.248461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248461,0.000000,0.000000,0.250000,0,0);}
.m7c{transform:matrix(0.248464,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248464,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248464,0.000000,0.000000,0.250000,0,0);}
.m7f{transform:matrix(0.248498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248498,0.000000,0.000000,0.250000,0,0);}
.mb1{transform:matrix(0.248511,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248511,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248511,0.000000,0.000000,0.250000,0,0);}
.m42{transform:matrix(0.248555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248555,0.000000,0.000000,0.250000,0,0);}
.mfb{transform:matrix(0.248575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248575,0.000000,0.000000,0.250000,0,0);}
.mf8{transform:matrix(0.248589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248589,0.000000,0.000000,0.250000,0,0);}
.m44{transform:matrix(0.248625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248625,0.000000,0.000000,0.250000,0,0);}
.m5d{transform:matrix(0.248675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248675,0.000000,0.000000,0.250000,0,0);}
.m3a{transform:matrix(0.248686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248686,0.000000,0.000000,0.250000,0,0);}
.me3{transform:matrix(0.248702,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248702,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248702,0.000000,0.000000,0.250000,0,0);}
.m5b{transform:matrix(0.248723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248723,0.000000,0.000000,0.250000,0,0);}
.m6b{transform:matrix(0.248736,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248736,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248736,0.000000,0.000000,0.250000,0,0);}
.m27{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);}
.m6f{transform:matrix(0.248768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248768,0.000000,0.000000,0.250000,0,0);}
.m56{transform:matrix(0.248770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248770,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.248773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248773,0.000000,0.000000,0.250000,0,0);}
.md1{transform:matrix(0.248775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248775,0.000000,0.000000,0.250000,0,0);}
.m55{transform:matrix(0.248782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248782,0.000000,0.000000,0.250000,0,0);}
.m4c{transform:matrix(0.248789,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248789,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248789,0.000000,0.000000,0.250000,0,0);}
.m69{transform:matrix(0.248807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248807,0.000000,0.000000,0.250000,0,0);}
.m6a{transform:matrix(0.248808,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248808,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248808,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.248818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248818,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.248823,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248823,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248823,0.000000,0.000000,0.250000,0,0);}
.mc7{transform:matrix(0.248839,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248839,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248839,0.000000,0.000000,0.250000,0,0);}
.ma6{transform:matrix(0.248848,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248848,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248848,0.000000,0.000000,0.250000,0,0);}
.mf2{transform:matrix(0.248861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248861,0.000000,0.000000,0.250000,0,0);}
.mec{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);}
.m8f{transform:matrix(0.248900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248900,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.248916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248916,0.000000,0.000000,0.250000,0,0);}
.ma4{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);}
.m79{transform:matrix(0.248925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248925,0.000000,0.000000,0.250000,0,0);}
.m78{transform:matrix(0.248927,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248927,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248927,0.000000,0.000000,0.250000,0,0);}
.meb{transform:matrix(0.248930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248930,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.248936,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248936,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248936,0.000000,0.000000,0.250000,0,0);}
.mfd{transform:matrix(0.248957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248957,0.000000,0.000000,0.250000,0,0);}
.m97{transform:matrix(0.248975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248975,0.000000,0.000000,0.250000,0,0);}
.m65{transform:matrix(0.248980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248980,0.000000,0.000000,0.250000,0,0);}
.m51{transform:matrix(0.249116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249116,0.000000,0.000000,0.250000,0,0);}
.m34{transform:matrix(0.249120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249120,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.249125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249125,0.000000,0.000000,0.250000,0,0);}
.mf5{transform:matrix(0.249127,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249127,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249127,0.000000,0.000000,0.250000,0,0);}
.m8b{transform:matrix(0.249164,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249164,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249164,0.000000,0.000000,0.250000,0,0);}
.m58{transform:matrix(0.249195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249195,0.000000,0.000000,0.250000,0,0);}
.m8d{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);}
.m88{transform:matrix(0.249209,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249209,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249209,0.000000,0.000000,0.250000,0,0);}
.mbc{transform:matrix(0.249216,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249216,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249216,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.249220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249220,0.000000,0.000000,0.250000,0,0);}
.mbd{transform:matrix(0.249232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249232,0.000000,0.000000,0.250000,0,0);}
.m73{transform:matrix(0.249239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249239,0.000000,0.000000,0.250000,0,0);}
.m72{transform:matrix(0.249261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249261,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.249330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249330,0.000000,0.000000,0.250000,0,0);}
.maf{transform:matrix(0.249348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249348,0.000000,0.000000,0.250000,0,0);}
.med{transform:matrix(0.249350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249350,0.000000,0.000000,0.250000,0,0);}
.m8a{transform:matrix(0.249368,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249368,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249368,0.000000,0.000000,0.250000,0,0);}
.ma0{transform:matrix(0.249409,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249409,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249409,0.000000,0.000000,0.250000,0,0);}
.m1b{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);}
.md8{transform:matrix(0.249461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249461,0.000000,0.000000,0.250000,0,0);}
.m95{transform:matrix(0.249470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249470,0.000000,0.000000,0.250000,0,0);}
.ma9{transform:matrix(0.249477,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249477,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249477,0.000000,0.000000,0.250000,0,0);}
.m5e{transform:matrix(0.249480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249480,0.000000,0.000000,0.250000,0,0);}
.mb0{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);}
.mf4{transform:matrix(0.249509,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249509,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249509,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.249516,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249516,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249516,0.000000,0.000000,0.250000,0,0);}
.md9{transform:matrix(0.249518,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249518,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249518,0.000000,0.000000,0.250000,0,0);}
.m5a{transform:matrix(0.249536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249536,0.000000,0.000000,0.250000,0,0);}
.m33{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);}
.m54{transform:matrix(0.249559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249559,0.000000,0.000000,0.250000,0,0);}
.mdc{transform:matrix(0.249568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249568,0.000000,0.000000,0.250000,0,0);}
.mac{transform:matrix(0.249573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249573,0.000000,0.000000,0.250000,0,0);}
.mf3{transform:matrix(0.249584,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249584,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249584,0.000000,0.000000,0.250000,0,0);}
.mba{transform:matrix(0.249598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249598,0.000000,0.000000,0.250000,0,0);}
.me2{transform:matrix(0.249602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249602,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.249625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249625,0.000000,0.000000,0.250000,0,0);}
.mea{transform:matrix(0.249630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249630,0.000000,0.000000,0.250000,0,0);}
.me8{transform:matrix(0.249636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249636,0.000000,0.000000,0.250000,0,0);}
.m9e{transform:matrix(0.249664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249664,0.000000,0.000000,0.250000,0,0);}
.m36{transform:matrix(0.249668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249668,0.000000,0.000000,0.250000,0,0);}
.m90{transform:matrix(0.249680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249680,0.000000,0.000000,0.250000,0,0);}
.me9{transform:matrix(0.249695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249695,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.249700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249700,0.000000,0.000000,0.250000,0,0);}
.mc8{transform:matrix(0.249711,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249711,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249711,0.000000,0.000000,0.250000,0,0);}
.mf7{transform:matrix(0.249739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249739,0.000000,0.000000,0.250000,0,0);}
.m74{transform:matrix(0.249745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249745,0.000000,0.000000,0.250000,0,0);}
.m31{transform:matrix(0.249782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249782,0.000000,0.000000,0.250000,0,0);}
.m96{transform:matrix(0.249789,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249789,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249789,0.000000,0.000000,0.250000,0,0);}
.ma2{transform:matrix(0.249795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249795,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.249798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249798,0.000000,0.000000,0.250000,0,0);}
.m8c{transform:matrix(0.249805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249805,0.000000,0.000000,0.250000,0,0);}
.m9c{transform:matrix(0.249855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249855,0.000000,0.000000,0.250000,0,0);}
.me1{transform:matrix(0.249864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249864,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.249884,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249884,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249884,0.000000,0.000000,0.250000,0,0);}
.m6e{transform:matrix(0.249936,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249936,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249936,0.000000,0.000000,0.250000,0,0);}
.mc5{transform:matrix(0.249968,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249968,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249968,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);}
.m53{transform:matrix(0.250020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250020,0.000000,0.000000,0.250000,0,0);}
.m86{transform:matrix(0.250023,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250023,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250023,0.000000,0.000000,0.250000,0,0);}
.mf9{transform:matrix(0.250034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250034,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.250041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250041,0.000000,0.000000,0.250000,0,0);}
.mb5{transform:matrix(0.250061,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250061,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250061,0.000000,0.000000,0.250000,0,0);}
.m32{transform:matrix(0.250100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250100,0.000000,0.000000,0.250000,0,0);}
.m5f{transform:matrix(0.250118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250118,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.250159,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250159,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250159,0.000000,0.000000,0.250000,0,0);}
.mee{transform:matrix(0.250164,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250164,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250164,0.000000,0.000000,0.250000,0,0);}
.mde{transform:matrix(0.250173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250173,0.000000,0.000000,0.250000,0,0);}
.m8e{transform:matrix(0.250180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250180,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.250214,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250214,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250214,0.000000,0.000000,0.250000,0,0);}
.m9a{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);}
.m67{transform:matrix(0.250261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250261,0.000000,0.000000,0.250000,0,0);}
.mbf{transform:matrix(0.250286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250286,0.000000,0.000000,0.250000,0,0);}
.m45{transform:matrix(0.250291,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250291,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250291,0.000000,0.000000,0.250000,0,0);}
.m46{transform:matrix(0.250292,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250292,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250292,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.250298,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250298,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250298,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.250307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250307,0.000000,0.000000,0.250000,0,0);}
.mb8{transform:matrix(0.250314,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250314,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250314,0.000000,0.000000,0.250000,0,0);}
.mb4{transform:matrix(0.250355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250355,0.000000,0.000000,0.250000,0,0);}
.mc2{transform:matrix(0.250373,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250373,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250373,0.000000,0.000000,0.250000,0,0);}
.m66{transform:matrix(0.250384,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250384,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250384,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.250393,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250393,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250393,0.000000,0.000000,0.250000,0,0);}
.md3{transform:matrix(0.250398,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250398,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250398,0.000000,0.000000,0.250000,0,0);}
.m68{transform:matrix(0.250423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250423,0.000000,0.000000,0.250000,0,0);}
.m7b{transform:matrix(0.250427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250427,0.000000,0.000000,0.250000,0,0);}
.m59{transform:matrix(0.250430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250430,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.250434,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250434,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250434,0.000000,0.000000,0.250000,0,0);}
.m61{transform:matrix(0.250436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250436,0.000000,0.000000,0.250000,0,0);}
.m89{transform:matrix(0.250448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250448,0.000000,0.000000,0.250000,0,0);}
.ma8{transform:matrix(0.250459,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250459,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250459,0.000000,0.000000,0.250000,0,0);}
.mb6{transform:matrix(0.250509,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250509,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250509,0.000000,0.000000,0.250000,0,0);}
.m80{transform:matrix(0.250514,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250514,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250514,0.000000,0.000000,0.250000,0,0);}
.m70{transform:matrix(0.250523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250523,0.000000,0.000000,0.250000,0,0);}
.me7{transform:matrix(0.250525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250525,0.000000,0.000000,0.250000,0,0);}
.mab{transform:matrix(0.250527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250527,0.000000,0.000000,0.250000,0,0);}
.m5c{transform:matrix(0.250561,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250561,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250561,0.000000,0.000000,0.250000,0,0);}
.m94{transform:matrix(0.250564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250564,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.250600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250600,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.250643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250643,0.000000,0.000000,0.250000,0,0);}
.m3d{transform:matrix(0.250645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250645,0.000000,0.000000,0.250000,0,0);}
.m92{transform:matrix(0.250686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250686,0.000000,0.000000,0.250000,0,0);}
.me0{transform:matrix(0.250691,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250691,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250691,0.000000,0.000000,0.250000,0,0);}
.me6{transform:matrix(0.250698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250698,0.000000,0.000000,0.250000,0,0);}
.mff{transform:matrix(0.250709,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250709,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250709,0.000000,0.000000,0.250000,0,0);}
.maa{transform:matrix(0.250745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250745,0.000000,0.000000,0.250000,0,0);}
.m3e{transform:matrix(0.250759,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250759,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250759,0.000000,0.000000,0.250000,0,0);}
.mc1{transform:matrix(0.250784,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250784,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250784,0.000000,0.000000,0.250000,0,0);}
.m3f{transform:matrix(0.250791,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250791,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250791,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.250800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250800,0.000000,0.000000,0.250000,0,0);}
.m84{transform:matrix(0.250815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250815,0.000000,0.000000,0.250000,0,0);}
.m83{transform:matrix(0.250816,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250816,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250816,0.000000,0.000000,0.250000,0,0);}
.m35{transform:matrix(0.250834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250834,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.250848,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250848,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250848,0.000000,0.000000,0.250000,0,0);}
.mcc{transform:matrix(0.250880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250880,0.000000,0.000000,0.250000,0,0);}
.m9f{transform:matrix(0.250909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250909,0.000000,0.000000,0.250000,0,0);}
.m7a{transform:matrix(0.250916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250916,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.250925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250925,0.000000,0.000000,0.250000,0,0);}
.m98{transform:matrix(0.250973,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250973,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250973,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.250975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250975,0.000000,0.000000,0.250000,0,0);}
.md2{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.mca{transform:matrix(0.251016,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251016,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251016,0.000000,0.000000,0.250000,0,0);}
.mc9{transform:matrix(0.251018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251018,0.000000,0.000000,0.250000,0,0);}
.m40{transform:matrix(0.251048,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251048,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251048,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.251055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251055,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.251057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251057,0.000000,0.000000,0.250000,0,0);}
.md7{transform:matrix(0.251066,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251066,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251066,0.000000,0.000000,0.250000,0,0);}
.md0{transform:matrix(0.251130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251130,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.251182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251182,0.000000,0.000000,0.250000,0,0);}
.m91{transform:matrix(0.251191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251191,0.000000,0.000000,0.250000,0,0);}
.mb7{transform:matrix(0.251195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251195,0.000000,0.000000,0.250000,0,0);}
.m7d{transform:matrix(0.251241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251241,0.000000,0.000000,0.250000,0,0);}
.ma1{transform:matrix(0.251275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251275,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.251316,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251316,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251316,0.000000,0.000000,0.250000,0,0);}
.mc0{transform:matrix(0.251345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251345,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.251402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251402,0.000000,0.000000,0.250000,0,0);}
.m64{transform:matrix(0.251414,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251414,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251414,0.000000,0.000000,0.250000,0,0);}
.mce{transform:matrix(0.251525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251525,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.251564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251564,0.000000,0.000000,0.250000,0,0);}
.m48{transform:matrix(0.251582,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251582,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251582,0.000000,0.000000,0.250000,0,0);}
.m30{transform:matrix(0.251614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251614,0.000000,0.000000,0.250000,0,0);}
.m7e{transform:matrix(0.251634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251634,0.000000,0.000000,0.250000,0,0);}
.mcd{transform:matrix(0.251650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251650,0.000000,0.000000,0.250000,0,0);}
.m77{transform:matrix(0.251664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251664,0.000000,0.000000,0.250000,0,0);}
.m9b{transform:matrix(0.251668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251668,0.000000,0.000000,0.250000,0,0);}
.mcf{transform:matrix(0.251670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251670,0.000000,0.000000,0.250000,0,0);}
.m4d{transform:matrix(0.251673,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251673,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251673,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.251702,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251702,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251702,0.000000,0.000000,0.250000,0,0);}
.ma3{transform:matrix(0.251741,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251741,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251741,0.000000,0.000000,0.250000,0,0);}
.m63{transform:matrix(0.251745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251745,0.000000,0.000000,0.250000,0,0);}
.m100{transform:matrix(0.251777,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251777,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251777,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.251800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251800,0.000000,0.000000,0.250000,0,0);}
.mc6{transform:matrix(0.251802,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251802,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251802,0.000000,0.000000,0.250000,0,0);}
.m47{transform:matrix(0.251857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251857,0.000000,0.000000,0.250000,0,0);}
.m62{transform:matrix(0.251880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251880,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.251889,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251889,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251889,0.000000,0.000000,0.250000,0,0);}
.mbe{transform:matrix(0.251941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251941,0.000000,0.000000,0.250000,0,0);}
.m52{transform:matrix(0.251973,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251973,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251973,0.000000,0.000000,0.250000,0,0);}
.mcb{transform:matrix(0.252061,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252061,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252061,0.000000,0.000000,0.250000,0,0);}
.m41{transform:matrix(0.252064,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252064,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252064,0.000000,0.000000,0.250000,0,0);}
.mdb{transform:matrix(0.252091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252091,0.000000,0.000000,0.250000,0,0);}
.m3c{transform:matrix(0.252093,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252093,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252093,0.000000,0.000000,0.250000,0,0);}
.m6c{transform:matrix(0.252114,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252114,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252114,0.000000,0.000000,0.250000,0,0);}
.md5{transform:matrix(0.252132,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252132,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252132,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.252141,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252141,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252141,0.000000,0.000000,0.250000,0,0);}
.m75{transform:matrix(0.252184,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252184,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252184,0.000000,0.000000,0.250000,0,0);}
.m60{transform:matrix(0.252286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252286,0.000000,0.000000,0.250000,0,0);}
.ma5{transform:matrix(0.252350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252350,0.000000,0.000000,0.250000,0,0);}
.ma7{transform:matrix(0.252386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252386,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.252427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252427,0.000000,0.000000,0.250000,0,0);}
.md4{transform:matrix(0.252470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252470,0.000000,0.000000,0.250000,0,0);}
.m99{transform:matrix(0.252484,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252484,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252484,0.000000,0.000000,0.250000,0,0);}
.m93{transform:matrix(0.252495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252495,0.000000,0.000000,0.250000,0,0);}
.m85{transform:matrix(0.252499,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252499,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252499,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.md{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);}
.v2{vertical-align:-21.978000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:21.978000px;}
.v1{vertical-align:23.975400px;}
.ls1f{letter-spacing:-3.630000px;}
.ls20{letter-spacing:-2.442000px;}
.ls30{letter-spacing:-2.112000px;}
.ls75{letter-spacing:-1.056000px;}
.ls31{letter-spacing:-0.924000px;}
.ls68{letter-spacing:-0.528000px;}
.ls21{letter-spacing:-0.396000px;}
.ls9{letter-spacing:-0.330000px;}
.lsa{letter-spacing:-0.264000px;}
.ls18{letter-spacing:-0.198000px;}
.lsd{letter-spacing:-0.132000px;}
.ls11{letter-spacing:-0.066000px;}
.ls8{letter-spacing:0.000000px;}
.ls4c{letter-spacing:0.000600px;}
.ls60{letter-spacing:0.002340px;}
.ls42{letter-spacing:0.003300px;}
.ls29{letter-spacing:0.006000px;}
.ls2b{letter-spacing:0.006600px;}
.ls6e{letter-spacing:0.010800px;}
.ls17{letter-spacing:0.011400px;}
.ls1e{letter-spacing:0.013195px;}
.ls54{letter-spacing:0.014726px;}
.ls41{letter-spacing:0.014867px;}
.ls1d{letter-spacing:0.024729px;}
.ls5c{letter-spacing:0.027283px;}
.ls5b{letter-spacing:0.044289px;}
.ls5a{letter-spacing:0.047760px;}
.ls53{letter-spacing:0.052965px;}
.ls5e{letter-spacing:0.055477px;}
.ls1{letter-spacing:0.066000px;}
.ls76{letter-spacing:0.069454px;}
.ls55{letter-spacing:0.073411px;}
.ls3f{letter-spacing:0.097544px;}
.ls26{letter-spacing:0.099000px;}
.ls4f{letter-spacing:0.104209px;}
.ls40{letter-spacing:0.107798px;}
.ls5d{letter-spacing:0.109606px;}
.ls2{letter-spacing:0.120000px;}
.ls5{letter-spacing:0.128200px;}
.ls3{letter-spacing:0.132000px;}
.ls4a{letter-spacing:0.157845px;}
.ls56{letter-spacing:0.162961px;}
.ls4b{letter-spacing:0.167595px;}
.ls6{letter-spacing:0.198000px;}
.ls49{letter-spacing:0.208326px;}
.ls35{letter-spacing:0.236246px;}
.ls64{letter-spacing:0.242720px;}
.ls28{letter-spacing:0.243442px;}
.ls36{letter-spacing:0.246100px;}
.ls27{letter-spacing:0.254982px;}
.ls23{letter-spacing:0.263753px;}
.ls4{letter-spacing:0.264000px;}
.ls2d{letter-spacing:0.264433px;}
.ls24{letter-spacing:0.274155px;}
.ls39{letter-spacing:0.276363px;}
.ls15{letter-spacing:0.279600px;}
.ls38{letter-spacing:0.287692px;}
.ls51{letter-spacing:0.323975px;}
.ls7{letter-spacing:0.330000px;}
.ls61{letter-spacing:0.334455px;}
.ls50{letter-spacing:0.335644px;}
.ls3a{letter-spacing:0.377822px;}
.ls48{letter-spacing:0.389400px;}
.ls10{letter-spacing:0.396000px;}
.ls47{letter-spacing:0.399089px;}
.lsf{letter-spacing:0.416436px;}
.ls2f{letter-spacing:0.418812px;}
.ls66{letter-spacing:0.431881px;}
.ls71{letter-spacing:0.437762px;}
.ls58{letter-spacing:0.446733px;}
.ls12{letter-spacing:0.462000px;}
.ls22{letter-spacing:0.528000px;}
.ls52{letter-spacing:0.557400px;}
.ls3b{letter-spacing:0.583901px;}
.lsb{letter-spacing:0.594000px;}
.ls3d{letter-spacing:0.594653px;}
.ls3c{letter-spacing:0.600600px;}
.lsc{letter-spacing:0.660000px;}
.ls70{letter-spacing:0.693000px;}
.ls59{letter-spacing:0.698400px;}
.ls1c{letter-spacing:0.726000px;}
.ls19{letter-spacing:0.781723px;}
.ls1a{letter-spacing:0.792000px;}
.ls6d{letter-spacing:0.858000px;}
.ls57{letter-spacing:0.861600px;}
.ls73{letter-spacing:0.907129px;}
.ls72{letter-spacing:0.918297px;}
.ls25{letter-spacing:0.924000px;}
.ls69{letter-spacing:0.961723px;}
.ls6a{letter-spacing:0.972475px;}
.lse{letter-spacing:0.990000px;}
.ls4d{letter-spacing:1.122000px;}
.ls62{letter-spacing:1.233000px;}
.ls1b{letter-spacing:1.320000px;}
.ls16{letter-spacing:1.346400px;}
.ls74{letter-spacing:1.437600px;}
.ls44{letter-spacing:1.456800px;}
.ls43{letter-spacing:1.457400px;}
.ls6b{letter-spacing:1.518000px;}
.ls5f{letter-spacing:1.664400px;}
.ls33{letter-spacing:2.184000px;}
.ls63{letter-spacing:2.787600px;}
.ls14{letter-spacing:2.838600px;}
.ls2a{letter-spacing:2.916600px;}
.ls37{letter-spacing:3.350435px;}
.ls46{letter-spacing:3.366211px;}
.ls45{letter-spacing:3.366809px;}
.ls4e{letter-spacing:3.388297px;}
.ls3e{letter-spacing:3.492720px;}
.ls2c{letter-spacing:3.532525px;}
.ls2e{letter-spacing:4.611089px;}
.ls65{letter-spacing:4.681188px;}
.ls32{letter-spacing:5.168911px;}
.ls13{letter-spacing:6.489505px;}
.ls67{letter-spacing:6.825149px;}
.ls34{letter-spacing:7.034851px;}
.ls6f{letter-spacing:9.049901px;}
.ls0{letter-spacing:13.200000px;}
.ls6c{letter-spacing:16.696634px;}
.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;}
}
.ws25{word-spacing:-38.214000px;}
.ws48{word-spacing:-37.950000px;}
.ws3a{word-spacing:-37.884000px;}
.ws2b{word-spacing:-37.818000px;}
.ws77{word-spacing:-37.752000px;}
.ws39{word-spacing:-37.686000px;}
.ws2e{word-spacing:-37.620000px;}
.ws8c{word-spacing:-37.554000px;}
.ws6f{word-spacing:-37.488000px;}
.wsa{word-spacing:-37.422000px;}
.wsc{word-spacing:-37.356000px;}
.ws76{word-spacing:-37.290000px;}
.ws4{word-spacing:-37.224000px;}
.ws3b{word-spacing:-37.158000px;}
.ws2d{word-spacing:-37.092000px;}
.ws6c{word-spacing:-37.026000px;}
.ws30{word-spacing:-36.960000px;}
.ws5{word-spacing:-36.894000px;}
.ws9d{word-spacing:-36.696000px;}
.ws6e{word-spacing:-36.300000px;}
.ws6d{word-spacing:-35.112000px;}
.ws93{word-spacing:-28.043400px;}
.ws92{word-spacing:-27.324000px;}
.ws1a{word-spacing:-24.948000px;}
.ws1{word-spacing:-22.500000px;}
.ws8{word-spacing:-19.500000px;}
.ws19{word-spacing:-18.942000px;}
.ws23{word-spacing:-18.000000px;}
.ws24{word-spacing:-17.490000px;}
.ws9f{word-spacing:-17.358000px;}
.ws47{word-spacing:-17.292000px;}
.ws82{word-spacing:-17.226000px;}
.ws2c{word-spacing:-17.094000px;}
.wsa5{word-spacing:-16.962000px;}
.ws70{word-spacing:-16.896000px;}
.ws8b{word-spacing:-16.830000px;}
.ws9{word-spacing:-16.764000px;}
.wsb{word-spacing:-16.698000px;}
.ws5b{word-spacing:-16.632000px;}
.ws5a{word-spacing:-16.599000px;}
.ws3{word-spacing:-16.566000px;}
.ws0{word-spacing:-16.500000px;}
.ws94{word-spacing:-16.434000px;}
.ws59{word-spacing:-16.368000px;}
.ws6b{word-spacing:-16.302000px;}
.ws2f{word-spacing:-16.236000px;}
.ws6a{word-spacing:-16.170000px;}
.wsb4{word-spacing:-16.038000px;}
.ws9c{word-spacing:-15.972000px;}
.ws6{word-spacing:-15.120000px;}
.ws7{word-spacing:-15.000000px;}
.ws53{word-spacing:-14.058000px;}
.wsb6{word-spacing:-13.398000px;}
.ws84{word-spacing:-12.150600px;}
.wsbb{word-spacing:-12.078000px;}
.wsb7{word-spacing:-11.946000px;}
.wsae{word-spacing:-11.748000px;}
.ws43{word-spacing:-11.550000px;}
.ws3c{word-spacing:-9.619500px;}
.wsba{word-spacing:-9.108000px;}
.wsaf{word-spacing:-8.514000px;}
.wsb1{word-spacing:-8.316000px;}
.wsbd{word-spacing:-7.326000px;}
.wsb8{word-spacing:-4.884000px;}
.wsb2{word-spacing:-4.818000px;}
.ws7a{word-spacing:-4.422000px;}
.wsad{word-spacing:-3.630000px;}
.wsb5{word-spacing:-3.036000px;}
.wsb3{word-spacing:-2.970000px;}
.wsb0{word-spacing:-2.838000px;}
.wsb9{word-spacing:-2.574000px;}
.ws46{word-spacing:-2.046000px;}
.ws81{word-spacing:-1.980000px;}
.ws52{word-spacing:-1.386000px;}
.ws9e{word-spacing:-1.320000px;}
.ws41{word-spacing:-1.122000px;}
.ws7c{word-spacing:-0.924000px;}
.ws22{word-spacing:-0.858000px;}
.ws13{word-spacing:-0.792000px;}
.ws5f{word-spacing:-0.726000px;}
.ws16{word-spacing:-0.660000px;}
.ws37{word-spacing:-0.594000px;}
.ws73{word-spacing:-0.528000px;}
.ws3f{word-spacing:-0.462000px;}
.ws29{word-spacing:-0.396000px;}
.ws57{word-spacing:-0.330000px;}
.ws1c{word-spacing:-0.264000px;}
.ws50{word-spacing:-0.198000px;}
.ws15{word-spacing:-0.132000px;}
.wse{word-spacing:-0.066000px;}
.wsd{word-spacing:0.000000px;}
.ws40{word-spacing:0.066000px;}
.ws11{word-spacing:0.132000px;}
.ws7b{word-spacing:0.198000px;}
.ws38{word-spacing:0.264000px;}
.ws71{word-spacing:0.330000px;}
.ws35{word-spacing:0.396000px;}
.ws36{word-spacing:0.462000px;}
.ws86{word-spacing:0.528000px;}
.ws87{word-spacing:0.594000px;}
.ws55{word-spacing:0.660000px;}
.ws32{word-spacing:0.726000px;}
.ws69{word-spacing:0.792000px;}
.ws58{word-spacing:0.858000px;}
.wsa0{word-spacing:0.924000px;}
.ws10{word-spacing:0.990000px;}
.ws8e{word-spacing:1.056000px;}
.ws4f{word-spacing:1.122000px;}
.ws74{word-spacing:1.188000px;}
.ws44{word-spacing:1.254000px;}
.ws8f{word-spacing:1.320000px;}
.ws79{word-spacing:1.386000px;}
.ws68{word-spacing:1.452000px;}
.ws34{word-spacing:1.518000px;}
.ws18{word-spacing:1.584000px;}
.ws99{word-spacing:1.650000px;}
.ws78{word-spacing:1.716000px;}
.ws28{word-spacing:1.848000px;}
.ws89{word-spacing:1.914000px;}
.ws12{word-spacing:1.980000px;}
.ws67{word-spacing:2.046000px;}
.ws72{word-spacing:2.112000px;}
.ws64{word-spacing:2.178000px;}
.ws62{word-spacing:2.244000px;}
.ws4b{word-spacing:2.310000px;}
.ws4e{word-spacing:2.376000px;}
.ws45{word-spacing:2.442000px;}
.ws1f{word-spacing:2.508000px;}
.ws4d{word-spacing:2.574000px;}
.ws7f{word-spacing:2.640000px;}
.ws61{word-spacing:2.706000px;}
.ws80{word-spacing:2.772000px;}
.ws3d{word-spacing:2.838000px;}
.ws63{word-spacing:2.904000px;}
.ws14{word-spacing:2.940000px;}
.ws65{word-spacing:2.970000px;}
.ws66{word-spacing:3.036000px;}
.ws98{word-spacing:3.102000px;}
.ws27{word-spacing:3.168000px;}
.ws17{word-spacing:3.234000px;}
.wsf{word-spacing:3.300000px;}
.ws96{word-spacing:3.366000px;}
.ws51{word-spacing:3.432000px;}
.ws1b{word-spacing:3.498000px;}
.ws54{word-spacing:3.564000px;}
.wsa9{word-spacing:3.630000px;}
.ws7e{word-spacing:3.696000px;}
.ws42{word-spacing:3.762000px;}
.ws31{word-spacing:3.894000px;}
.ws91{word-spacing:3.960000px;}
.wsa2{word-spacing:4.092000px;}
.ws2a{word-spacing:4.158000px;}
.ws75{word-spacing:4.224000px;}
.ws9a{word-spacing:4.290000px;}
.ws4c{word-spacing:4.356000px;}
.ws33{word-spacing:4.422000px;}
.ws90{word-spacing:4.488000px;}
.ws5d{word-spacing:4.620000px;}
.ws3e{word-spacing:4.686000px;}
.wsac{word-spacing:4.818000px;}
.wsab{word-spacing:4.884000px;}
.ws5e{word-spacing:5.082000px;}
.wsbc{word-spacing:5.280000px;}
.ws95{word-spacing:5.346000px;}
.ws5c{word-spacing:5.478000px;}
.ws88{word-spacing:5.610000px;}
.ws21{word-spacing:5.742000px;}
.ws1d{word-spacing:5.874000px;}
.ws85{word-spacing:5.940000px;}
.ws8d{word-spacing:6.006000px;}
.ws9b{word-spacing:6.204000px;}
.ws56{word-spacing:6.336000px;}
.ws7d{word-spacing:6.402000px;}
.ws8a{word-spacing:6.600000px;}
.wsaa{word-spacing:6.732000px;}
.ws1e{word-spacing:6.864000px;}
.ws83{word-spacing:6.996000px;}
.wsa7{word-spacing:7.062000px;}
.ws49{word-spacing:7.920000px;}
.wsa6{word-spacing:8.184000px;}
.wsa4{word-spacing:8.844000px;}
.wsa8{word-spacing:9.042000px;}
.ws60{word-spacing:9.372000px;}
.ws26{word-spacing:9.636000px;}
.wsa1{word-spacing:9.702000px;}
.ws97{word-spacing:11.088000px;}
.ws20{word-spacing:12.276000px;}
.ws4a{word-spacing:13.332000px;}
.wsa3{word-spacing:15.180000px;}
.ws2{word-spacing:20.566728px;}
._24{margin-left:-16.011333px;}
._17{margin-left:-12.144000px;}
._18{margin-left:-8.598600px;}
._4{margin-left:-7.581600px;}
._1{margin-left:-6.078600px;}
._3{margin-left:-4.375800px;}
._0{margin-left:-2.448600px;}
._2{margin-left:-1.247400px;}
._1b{width:1.000800px;}
._7{width:2.007600px;}
._6{width:3.503559px;}
._16{width:4.597663px;}
._19{width:6.066909px;}
._1a{width:7.619793px;}
._b{width:8.844000px;}
._15{width:10.297669px;}
._11{width:12.276000px;}
._1d{width:15.050400px;}
._f{width:17.226000px;}
._9{width:18.282000px;}
._a{width:19.866000px;}
._d{width:23.496000px;}
._20{width:32.274000px;}
._23{width:33.924000px;}
._5{width:35.221200px;}
._21{width:36.432000px;}
._1c{width:38.610000px;}
._e{width:39.732000px;}
._1e{width:42.174000px;}
._1f{width:44.022000px;}
._22{width:45.144000px;}
._10{width:47.777400px;}
._c{width:56.496000px;}
._12{width:61.182000px;}
._8{width:63.822000px;}
._13{width:74.520600px;}
._14{width:89.232000px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(35,31,32);}
.fs7{font-size:38.478000px;}
.fs4{font-size:41.976000px;}
.fs8{font-size:46.200000px;}
.fs1{font-size:54.000000px;}
.fs5{font-size:60.000000px;}
.fs0{font-size:66.000000px;}
.fs3{font-size:72.000000px;}
.fs6{font-size:78.000000px;}
.fs2{font-size:90.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:86.354850px;}
.y64{bottom:127.559100px;}
.y2a{bottom:132.560400px;}
.y132{bottom:132.658650px;}
.y197{bottom:133.452450px;}
.y1bd{bottom:135.167550px;}
.y210{bottom:135.408300px;}
.y182{bottom:136.638150px;}
.y11d{bottom:139.830450px;}
.y63{bottom:147.359100px;}
.y29{bottom:152.360250px;}
.y131{bottom:152.458800px;}
.y196{bottom:153.252450px;}
.y1bc{bottom:154.967550px;}
.y181{bottom:156.438150px;}
.y11c{bottom:159.630300px;}
.y20f{bottom:163.712250px;}
.y87{bottom:165.880800px;}
.y157{bottom:166.008300px;}
.y62{bottom:167.159100px;}
.yc8{bottom:171.465150px;}
.y195{bottom:173.052450px;}
.y1bb{bottom:174.767550px;}
.y180{bottom:176.238150px;}
.y130{bottom:178.636650px;}
.y11b{bottom:179.430300px;}
.ye4{bottom:182.222550px;}
.y20e{bottom:183.512250px;}
.y86{bottom:185.680800px;}
.y156{bottom:185.808300px;}
.y61{bottom:186.959100px;}
.y28{bottom:189.168300px;}
.yc7{bottom:191.265150px;}
.y194{bottom:192.852450px;}
.y1ba{bottom:194.567550px;}
.y17f{bottom:196.038150px;}
.y11a{bottom:199.230450px;}
.y238{bottom:202.800150px;}
.y85{bottom:205.480800px;}
.y155{bottom:205.608300px;}
.y1ed{bottom:207.266550px;}
.ye3{bottom:208.400550px;}
.y27{bottom:208.968300px;}
.y20d{bottom:211.816200px;}
.y193{bottom:212.652450px;}
.y1b9{bottom:214.367550px;}
.y12f{bottom:215.444550px;}
.yc6{bottom:217.443000px;}
.y119{bottom:219.030450px;}
.y237{bottom:222.600150px;}
.y84{bottom:225.280800px;}
.y1ec{bottom:227.066550px;}
.y26{bottom:228.768150px;}
.y20c{bottom:231.616200px;}
.y154{bottom:231.786300px;}
.y192{bottom:232.452450px;}
.y17e{bottom:232.846050px;}
.y1b8{bottom:234.167550px;}
.y12e{bottom:235.244550px;}
.y118{bottom:238.830450px;}
.y1eb{bottom:241.372200px;}
.y51{bottom:243.068250px;}
.ye2{bottom:245.208300px;}
.y1ea{bottom:246.866700px;}
.y25{bottom:248.568300px;}
.y236{bottom:250.903950px;}
.y83{bottom:251.458800px;}
.y191{bottom:252.252450px;}
.y17d{bottom:252.646050px;}
.y1b7{bottom:253.967550px;}
.yc5{bottom:254.250900px;}
.y12d{bottom:255.044550px;}
.y117{bottom:258.630300px;}
.y20b{bottom:259.920150px;}
.y50{bottom:262.868100px;}
.ye1{bottom:265.008300px;}
.y1e9{bottom:266.666550px;}
.y24{bottom:268.368300px;}
.y153{bottom:268.594050px;}
.y235{bottom:270.704100px;}
.y190{bottom:272.052450px;}
.y17c{bottom:272.446050px;}
.y1b6{bottom:273.767550px;}
.yc4{bottom:274.050900px;}
.y12c{bottom:274.844550px;}
.y20a{bottom:279.720150px;}
.y4f{bottom:282.668100px;}
.ye0{bottom:284.808300px;}
.y23{bottom:288.168300px;}
.y82{bottom:288.266550px;}
.y234{bottom:290.504100px;}
.y18f{bottom:291.852450px;}
.y17b{bottom:292.246050px;}
.y1b5{bottom:293.567550px;}
.y12b{bottom:294.644550px;}
.y116{bottom:295.438350px;}
.y4e{bottom:302.468100px;}
.y1e8{bottom:303.474450px;}
.ydf{bottom:304.608300px;}
.y152{bottom:305.402100px;}
.y22{bottom:307.968300px;}
.y209{bottom:308.024100px;}
.y81{bottom:308.066550px;}
.yc3{bottom:310.858800px;}
.y18e{bottom:311.652450px;}
.y1b4{bottom:313.367550px;}
.y1cb{bottom:314.572050px;}
.y115{bottom:315.238200px;}
.y233{bottom:318.807900px;}
.y4d{bottom:322.268250px;}
.y1e7{bottom:323.274450px;}
.yde{bottom:324.408300px;}
.y151{bottom:325.201950px;}
.y208{bottom:327.824100px;}
.y80{bottom:327.866700px;}
.y17a{bottom:329.053950px;}
.yc2{bottom:330.658800px;}
.y12a{bottom:331.452450px;}
.y1b3{bottom:333.167550px;}
.y1ca{bottom:334.372050px;}
.y232{bottom:338.607900px;}
.y114{bottom:341.416200px;}
.y1e6{bottom:343.074450px;}
.y21{bottom:344.776050px;}
.y207{bottom:347.624100px;}
.y179{bottom:348.853950px;}
.yc1{bottom:350.458800px;}
.ydd{bottom:350.586300px;}
.y129{bottom:351.252450px;}
.y1b2{bottom:352.967550px;}
.y7f{bottom:354.044550px;}
.y231{bottom:358.407900px;}
.y4c{bottom:359.076000px;}
.y1e5{bottom:362.874450px;}
.y20{bottom:364.576200px;}
.y178{bottom:368.653950px;}
.y128{bottom:371.052450px;}
.y1c9{bottom:371.179950px;}
.y1b1{bottom:372.767550px;}
.y150{bottom:374.765850px;}
.y206{bottom:375.928050px;}
.yc0{bottom:376.636800px;}
.y230{bottom:378.207900px;}
.y113{bottom:378.224100px;}
.y4b{bottom:378.876000px;}
.y1f{bottom:384.376050px;}
.ydc{bottom:387.394200px;}
.y177{bottom:388.453950px;}
.y7e{bottom:390.852450px;}
.y1c8{bottom:390.979950px;}
.y1b0{bottom:392.567550px;}
.y14f{bottom:394.565850px;}
.y112{bottom:398.024100px;}
.y4a{bottom:398.676000px;}
.y1e4{bottom:399.682350px;}
.y1e{bottom:404.176050px;}
.y205{bottom:404.232000px;}
.y22f{bottom:406.511850px;}
.ydb{bottom:407.194200px;}
.y18d{bottom:407.860350px;}
.y176{bottom:408.253950px;}
.y7d{bottom:410.652450px;}
.y1c7{bottom:410.779950px;}
.y1af{bottom:412.367550px;}
.ybf{bottom:413.444700px;}
.y127{bottom:417.030450px;}
.y49{bottom:418.476000px;}
.y1e3{bottom:419.482350px;}
.y14e{bottom:420.743700px;}
.y1d{bottom:423.976050px;}
.y204{bottom:424.032000px;}
.y111{bottom:424.202100px;}
.y22e{bottom:426.311850px;}
.yda{bottom:426.994200px;}
.y18c{bottom:427.660350px;}
.y175{bottom:428.053950px;}
.y7c{bottom:430.452450px;}
.y1c6{bottom:430.579950px;}
.y1ae{bottom:432.167550px;}
.ybe{bottom:433.244700px;}
.y48{bottom:438.276000px;}
.y1e2{bottom:439.282350px;}
.y203{bottom:443.832000px;}
.y18b{bottom:447.460350px;}
.y174{bottom:447.853950px;}
.y1c5{bottom:450.379950px;}
.y1ad{bottom:451.967550px;}
.y1c{bottom:452.280000px;}
.ybd{bottom:453.044700px;}
.y126{bottom:453.838200px;}
.y22d{bottom:454.615800px;}
.y7b{bottom:456.630450px;}
.y14d{bottom:457.551600px;}
.y47{bottom:458.076000px;}
.y1e1{bottom:459.082350px;}
.y110{bottom:461.009850px;}
.yd9{bottom:463.802100px;}
.y18a{bottom:467.260350px;}
.y173{bottom:467.653950px;}
.y1c4{bottom:470.179950px;}
.y1ac{bottom:471.767550px;}
.y202{bottom:472.135950px;}
.y22c{bottom:474.415800px;}
.y14c{bottom:477.351600px;}
.y46{bottom:477.876000px;}
.y1e0{bottom:478.882350px;}
.ybc{bottom:479.222550px;}
.y125{bottom:480.016200px;}
.y10f{bottom:480.809850px;}
.yd8{bottom:483.602100px;}
.y172{bottom:487.453950px;}
.y1ab{bottom:491.567550px;}
.y201{bottom:491.935800px;}
.y7a{bottom:493.438200px;}
.y1c3{bottom:496.357950px;}
.y14b{bottom:497.151600px;}
.y45{bottom:497.676000px;}
.y1df{bottom:498.682350px;}
.y10e{bottom:500.609850px;}
.y22b{bottom:502.719750px;}
.y171{bottom:507.253950px;}
.y1b{bottom:509.695800px;}
.y1aa{bottom:511.367550px;}
.y200{bottom:511.735950px;}
.y79{bottom:513.238200px;}
.ybb{bottom:516.030450px;}
.y124{bottom:516.824100px;}
.y14a{bottom:516.951600px;}
.y44{bottom:517.476000px;}
.yaa{bottom:519.743700px;}
.y10d{bottom:520.409850px;}
.y22a{bottom:522.519750px;}
.y170{bottom:527.053950px;}
.y1a{bottom:529.495800px;}
.y189{bottom:530.246100px;}
.y1a9{bottom:531.167550px;}
.yd7{bottom:533.165850px;}
.y1de{bottom:535.490250px;}
.yba{bottom:535.830450px;}
.y123{bottom:536.624100px;}
.y149{bottom:536.751600px;}
.y43{bottom:537.276000px;}
.ya9{bottom:539.543700px;}
.y1ff{bottom:540.039900px;}
.y10c{bottom:540.209850px;}
.y229{bottom:542.319750px;}
.y78{bottom:550.046100px;}
.y1a8{bottom:550.967550px;}
.yd6{bottom:552.965850px;}
.y1dd{bottom:555.290250px;}
.yb9{bottom:555.630450px;}
.y122{bottom:556.424100px;}
.y148{bottom:556.551600px;}
.y42{bottom:557.076000px;}
.ya8{bottom:559.343700px;}
.y1fe{bottom:559.839900px;}
.y10b{bottom:560.009850px;}
.y16f{bottom:563.861850px;}
.y19{bottom:564.503700px;}
.y228{bottom:570.623700px;}
.y1a7{bottom:570.767550px;}
.y1dc{bottom:575.090250px;}
.y188{bottom:576.224100px;}
.ya7{bottom:579.143700px;}
.y10a{bottom:579.809850px;}
.yb8{bottom:581.808450px;}
.y121{bottom:582.602100px;}
.yf7{bottom:582.602250px;}
.y41{bottom:583.254000px;}
.y16e{bottom:583.661700px;}
.y77{bottom:586.854000px;}
.y1fd{bottom:588.143700px;}
.y227{bottom:590.423700px;}
.y1a6{bottom:590.567550px;}
.y147{bottom:593.359500px;}
.y1db{bottom:594.890250px;}
.y109{bottom:599.609850px;}
.y18{bottom:601.311600px;}
.yf6{bottom:602.402250px;}
.y16d{bottom:603.461850px;}
.y76{bottom:606.654000px;}
.y226{bottom:610.223700px;}
.y187{bottom:613.032000px;}
.y146{bottom:613.159500px;}
.ya6{bottom:615.951600px;}
.yb7{bottom:618.616350px;}
.y108{bottom:619.409850px;}
.y40{bottom:620.061900px;}
.y17{bottom:621.111450px;}
.yf5{bottom:622.202250px;}
.y16c{bottom:623.261700px;}
.y1a5{bottom:627.375450px;}
.y1fc{bottom:628.551600px;}
.y1da{bottom:631.698000px;}
.y186{bottom:632.832000px;}
.y145{bottom:632.959500px;}
.ya5{bottom:635.751600px;}
.y225{bottom:638.527650px;}
.y107{bottom:639.209850px;}
.y3f{bottom:639.861900px;}
.y16{bottom:640.911600px;}
.yf4{bottom:642.002250px;}
.y16b{bottom:643.061850px;}
.y1a4{bottom:647.175450px;}
.y1fb{bottom:648.351600px;}
.y1d9{bottom:651.498150px;}
.y185{bottom:652.632000px;}
.y144{bottom:652.759500px;}
.yb6{bottom:655.424100px;}
.ya4{bottom:655.551600px;}
.y75{bottom:656.217750px;}
.y224{bottom:658.327650px;}
.y106{bottom:659.009850px;}
.y3e{bottom:659.661900px;}
.y15{bottom:660.711600px;}
.yf3{bottom:661.802250px;}
.y16a{bottom:662.861850px;}
.y1a3{bottom:666.975450px;}
.y1fa{bottom:668.151600px;}
.yd5{bottom:672.559500px;}
.ya3{bottom:675.351600px;}
.y223{bottom:678.127650px;}
.y105{bottom:678.809850px;}
.y14{bottom:680.511600px;}
.y74{bottom:682.395750px;}
.y1a2{bottom:686.775450px;}
.y1f9{bottom:687.951600px;}
.yf2{bottom:687.980100px;}
.y1d8{bottom:688.305900px;}
.yb5{bottom:692.232000px;}
.yd4{bottom:692.359500px;}
.y1c2{bottom:695.151600px;}
.y3d{bottom:696.469800px;}
.y104{bottom:698.609850px;}
.y169{bottom:699.669600px;}
.y13{bottom:700.311600px;}
.y222{bottom:706.431600px;}
.y1a1{bottom:706.575450px;}
.y60{bottom:707.006250px;}
.y1f8{bottom:707.751600px;}
.y1d7{bottom:708.105900px;}
.y120{bottom:708.573600px;}
.yb4{bottom:712.032000px;}
.ya2{bottom:712.159500px;}
.y184{bottom:715.617750px;}
.y3c{bottom:716.269800px;}
.y103{bottom:718.409850px;}
.y73{bottom:719.203650px;}
.y168{bottom:719.469600px;}
.y12{bottom:720.111450px;}
.yf1{bottom:724.788000px;}
.y221{bottom:726.231600px;}
.y1a0{bottom:726.375450px;}
.y5f{bottom:726.806250px;}
.y1d6{bottom:727.905900px;}
.y11f{bottom:728.373750px;}
.ya1{bottom:731.959500px;}
.y183{bottom:735.417750px;}
.y1f7{bottom:736.055550px;}
.y3b{bottom:736.069800px;}
.y72{bottom:739.003650px;}
.y167{bottom:739.269600px;}
.yf0{bottom:744.588000px;}
.y1c1{bottom:745.381500px;}
.y19f{bottom:746.175450px;}
.y1d5{bottom:747.705900px;}
.ya0{bottom:751.759500px;}
.y5e{bottom:752.984100px;}
.y220{bottom:754.535550px;}
.y11e{bottom:754.551600px;}
.y102{bottom:755.217750px;}
.y3a{bottom:755.869650px;}
.y11{bottom:756.919350px;}
.y71{bottom:758.803650px;}
.y166{bottom:759.069600px;}
.yb3{bottom:761.595750px;}
.yef{bottom:764.388000px;}
.y1c0{bottom:765.181500px;}
.y19e{bottom:765.975450px;}
.y9f{bottom:771.559500px;}
.y21f{bottom:774.335550px;}
.y101{bottom:775.017750px;}
.y1d4{bottom:776.010000px;}
.y1f6{bottom:776.463450px;}
.y10{bottom:776.719350px;}
.y70{bottom:778.603650px;}
.y165{bottom:778.869750px;}
.yb2{bottom:781.395750px;}
.ye7{bottom:784.885050px;}
.y1bf{bottom:784.981500px;}
.y19d{bottom:785.775450px;}
.y5d{bottom:789.792150px;}
.yee{bottom:790.566000px;}
.y9e{bottom:791.359500px;}
.y39{bottom:792.677700px;}
.y100{bottom:794.817750px;}
.y1f5{bottom:796.263450px;}
.yf{bottom:796.519350px;}
.y164{bottom:798.669600px;}
.y21e{bottom:802.639500px;}
.ye6{bottom:804.685050px;}
.y6f{bottom:804.781650px;}
.y19c{bottom:805.575450px;}
.yb1{bottom:807.573750px;}
.y143{bottom:808.367400px;}
.ycf{bottom:808.633350px;}
.y9d{bottom:811.159500px;}
.y38{bottom:812.477550px;}
.yff{bottom:814.617750px;}
.y5c{bottom:815.970000px;}
.y1f4{bottom:816.063450px;}
.y163{bottom:818.469600px;}
.y1be{bottom:821.789400px;}
.y21d{bottom:822.439500px;}
.ye5{bottom:824.485050px;}
.y91{bottom:824.581650px;}
.y19b{bottom:825.375450px;}
.yed{bottom:827.373900px;}
.y142{bottom:828.167400px;}
.yce{bottom:828.433200px;}
.ye{bottom:829.075350px;}
.y9c{bottom:830.959500px;}
.y1d3{bottom:834.417750px;}
.y1f3{bottom:835.863450px;}
.y162{bottom:838.269600px;}
.yfe{bottom:840.795750px;}
.y6e{bottom:841.589400px;}
.y141{bottom:842.472900px;}
.yb0{bottom:844.381650px;}
.y19a{bottom:845.175450px;}
.y140{bottom:847.967400px;}
.ycd{bottom:848.233200px;}
.y37{bottom:849.285450px;}
.y21c{bottom:850.743300px;}
.y90{bottom:850.759500px;}
.y5b{bottom:852.777900px;}
.yec{bottom:853.551750px;}
.y1d2{bottom:854.217750px;}
.y1f2{bottom:855.663450px;}
.y161{bottom:858.069600px;}
.y6d{bottom:861.389400px;}
.y13f{bottom:862.272900px;}
.yaf{bottom:864.181650px;}
.y199{bottom:864.975450px;}
.yd3{bottom:867.767400px;}
.y13e{bottom:867.767550px;}
.ycc{bottom:868.033200px;}
.y36{bottom:869.085450px;}
.y21b{bottom:870.543300px;}
.y9b{bottom:870.559500px;}
.y5a{bottom:872.577900px;}
.y1d1{bottom:874.017750px;}
.y1f1{bottom:875.463450px;}
.yfd{bottom:877.603650px;}
.y160{bottom:877.869750px;}
.yd2{bottom:882.072900px;}
.y198{bottom:884.775300px;}
.y6c{bottom:887.567400px;}
.ycb{bottom:887.833350px;}
.y35{bottom:888.885450px;}
.y9a{bottom:890.359500px;}
.yae{bottom:890.359650px;}
.y1f0{bottom:895.263450px;}
.yfc{bottom:897.403500px;}
.y21a{bottom:898.847400px;}
.y1d0{bottom:900.195750px;}
.yd{bottom:901.698900px;}
.y13d{bottom:904.575300px;}
.y8f{bottom:907.367400px;}
.yca{bottom:907.633350px;}
.y34{bottom:908.685450px;}
.y59{bottom:909.385800px;}
.yeb{bottom:910.159650px;}
.y15f{bottom:914.677500px;}
.y1ef{bottom:915.063450px;}
.y219{bottom:918.647250px;}
.yfb{bottom:923.581650px;}
.y6b{bottom:924.375300px;}
.y13c{bottom:924.641250px;}
.y8e{bottom:927.167400px;}
.y33{bottom:928.485600px;}
.yc{bottom:928.698900px;}
.yea{bottom:929.959650px;}
.y15e{bottom:934.477500px;}
.y1cf{bottom:937.003650px;}
.y1ee{bottom:943.367400px;}
.y6a{bottom:944.175300px;}
.yd1{bottom:944.175450px;}
.yc9{bottom:944.441100px;}
.y13b{bottom:944.441250px;}
.y58{bottom:946.193700px;}
.y218{bottom:946.951200px;}
.y8d{bottom:946.967400px;}
.y32{bottom:948.285450px;}
.ye9{bottom:949.759650px;}
.yfa{bottom:960.389550px;}
.y15d{bottom:960.655500px;}
.y1ce{bottom:963.181500px;}
.y69{bottom:963.975150px;}
.yd0{bottom:963.975300px;}
.y99{bottom:964.241100px;}
.y13a{bottom:964.241250px;}
.y8c{bottom:966.767400px;}
.yad{bottom:966.767550px;}
.y31{bottom:968.085450px;}
.y217{bottom:975.255300px;}
.yf9{bottom:980.189550px;}
.y57{bottom:983.001600px;}
.y68{bottom:983.775300px;}
.y98{bottom:984.041100px;}
.y139{bottom:984.041250px;}
.y8b{bottom:986.567400px;}
.ye8{bottom:986.567550px;}
.y30{bottom:994.263450px;}
.y216{bottom:995.055300px;}
.y15c{bottom:997.463400px;}
.y1cd{bottom:999.989400px;}
.yf8{bottom:999.989550px;}
.y56{bottom:1002.801600px;}
.y67{bottom:1003.575300px;}
.y97{bottom:1003.841100px;}
.y138{bottom:1003.841250px;}
.y8a{bottom:1006.367400px;}
.y215{bottom:1014.855300px;}
.y15b{bottom:1017.263250px;}
.y1cc{bottom:1019.789400px;}
.yb{bottom:1021.339650px;}
.y2f{bottom:1022.567400px;}
.y55{bottom:1022.601600px;}
.y66{bottom:1023.375300px;}
.y96{bottom:1023.641100px;}
.y137{bottom:1023.641250px;}
.y89{bottom:1026.167400px;}
.y15a{bottom:1037.063250px;}
.y54{bottom:1042.401600px;}
.y214{bottom:1043.159250px;}
.y65{bottom:1043.175300px;}
.yac{bottom:1043.175450px;}
.y95{bottom:1043.441100px;}
.y136{bottom:1043.441250px;}
.y88{bottom:1045.967400px;}
.ya{bottom:1049.643600px;}
.y159{bottom:1056.863250px;}
.y213{bottom:1062.959250px;}
.y2e{bottom:1062.975150px;}
.yab{bottom:1062.975300px;}
.y94{bottom:1063.241100px;}
.y135{bottom:1063.241250px;}
.y53{bottom:1070.705550px;}
.y158{bottom:1076.663250px;}
.y9{bottom:1080.451500px;}
.y212{bottom:1082.759250px;}
.y2d{bottom:1082.775300px;}
.y93{bottom:1083.041100px;}
.y134{bottom:1083.041250px;}
.y52{bottom:1100.809500px;}
.y211{bottom:1102.559250px;}
.y2c{bottom:1102.575300px;}
.y92{bottom:1102.841100px;}
.y133{bottom:1102.841250px;}
.y8{bottom:1105.155450px;}
.y7{bottom:1142.615250px;}
.y2b{bottom:1143.795600px;}
.y6{bottom:1160.770500px;}
.y3{bottom:1180.554450px;}
.y5{bottom:1180.570650px;}
.y2{bottom:1200.354450px;}
.y4{bottom:1200.370650px;}
.hf{height:32.078320px;}
.hd{height:33.762190px;}
.h4{height:37.494141px;}
.h5{height:44.730469px;}
.he{height:45.826172px;}
.h3{height:47.381836px;}
.hc{height:49.007812px;}
.h9{height:52.207031px;}
.ha{height:52.646484px;}
.hb{height:52.863281px;}
.h2{height:57.911133px;}
.h7{height:60.996094px;}
.h6{height:61.259766px;}
.h8{height:63.175781px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:106.299150px;}
.x2d{left:108.425100px;}
.x23{left:118.128450px;}
.x1d{left:120.997050px;}
.xe{left:125.838600px;}
.x18{left:131.811000px;}
.x21{left:142.070850px;}
.xb{left:147.436350px;}
.x1e{left:150.079500px;}
.x1f{left:154.900500px;}
.x2{left:157.786800px;}
.x8{left:158.976600px;}
.xf{left:190.017900px;}
.x22{left:201.184200px;}
.xa{left:204.838050px;}
.x7{left:205.903650px;}
.x11{left:256.003800px;}
.x16{left:269.649750px;}
.x15{left:280.647000px;}
.x20{left:293.835750px;}
.x10{left:311.109150px;}
.x19{left:314.082000px;}
.x1b{left:317.296650px;}
.xc{left:319.273500px;}
.x17{left:326.259750px;}
.x14{left:347.488950px;}
.x13{left:350.228250px;}
.xd{left:352.282650px;}
.x9{left:364.822800px;}
.x2b{left:375.630750px;}
.x2a{left:393.053250px;}
.x1c{left:397.178250px;}
.x1a{left:401.303250px;}
.x28{left:406.166250px;}
.x2c{left:423.076350px;}
.x29{left:431.299350px;}
.x12{left:434.081700px;}
.x1{left:435.699450px;}
.x24{left:544.641600px;}
.x25{left:549.482850px;}
.x2e{left:557.056650px;}
.x2f{left:561.866250px;}
.x3{left:580.623750px;}
.x5{left:658.321950px;}
.x4{left:675.418200px;}
.x26{left:737.567250px;}
.x27{left:742.408350px;}
@media print{
.v2{vertical-align:-19.536000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:19.536000pt;}
.v1{vertical-align:21.311467pt;}
.ls1f{letter-spacing:-3.226667pt;}
.ls20{letter-spacing:-2.170667pt;}
.ls30{letter-spacing:-1.877333pt;}
.ls75{letter-spacing:-0.938667pt;}
.ls31{letter-spacing:-0.821333pt;}
.ls68{letter-spacing:-0.469333pt;}
.ls21{letter-spacing:-0.352000pt;}
.ls9{letter-spacing:-0.293333pt;}
.lsa{letter-spacing:-0.234667pt;}
.ls18{letter-spacing:-0.176000pt;}
.lsd{letter-spacing:-0.117333pt;}
.ls11{letter-spacing:-0.058667pt;}
.ls8{letter-spacing:0.000000pt;}
.ls4c{letter-spacing:0.000533pt;}
.ls60{letter-spacing:0.002080pt;}
.ls42{letter-spacing:0.002933pt;}
.ls29{letter-spacing:0.005333pt;}
.ls2b{letter-spacing:0.005867pt;}
.ls6e{letter-spacing:0.009600pt;}
.ls17{letter-spacing:0.010133pt;}
.ls1e{letter-spacing:0.011729pt;}
.ls54{letter-spacing:0.013090pt;}
.ls41{letter-spacing:0.013215pt;}
.ls1d{letter-spacing:0.021982pt;}
.ls5c{letter-spacing:0.024251pt;}
.ls5b{letter-spacing:0.039368pt;}
.ls5a{letter-spacing:0.042453pt;}
.ls53{letter-spacing:0.047080pt;}
.ls5e{letter-spacing:0.049313pt;}
.ls1{letter-spacing:0.058667pt;}
.ls76{letter-spacing:0.061736pt;}
.ls55{letter-spacing:0.065254pt;}
.ls3f{letter-spacing:0.086706pt;}
.ls26{letter-spacing:0.088000pt;}
.ls4f{letter-spacing:0.092630pt;}
.ls40{letter-spacing:0.095821pt;}
.ls5d{letter-spacing:0.097428pt;}
.ls2{letter-spacing:0.106667pt;}
.ls5{letter-spacing:0.113956pt;}
.ls3{letter-spacing:0.117333pt;}
.ls4a{letter-spacing:0.140306pt;}
.ls56{letter-spacing:0.144854pt;}
.ls4b{letter-spacing:0.148974pt;}
.ls6{letter-spacing:0.176000pt;}
.ls49{letter-spacing:0.185178pt;}
.ls35{letter-spacing:0.209996pt;}
.ls64{letter-spacing:0.215751pt;}
.ls28{letter-spacing:0.216393pt;}
.ls36{letter-spacing:0.218755pt;}
.ls27{letter-spacing:0.226650pt;}
.ls23{letter-spacing:0.234447pt;}
.ls4{letter-spacing:0.234667pt;}
.ls2d{letter-spacing:0.235052pt;}
.ls24{letter-spacing:0.243693pt;}
.ls39{letter-spacing:0.245656pt;}
.ls15{letter-spacing:0.248533pt;}
.ls38{letter-spacing:0.255726pt;}
.ls51{letter-spacing:0.287977pt;}
.ls7{letter-spacing:0.293333pt;}
.ls61{letter-spacing:0.297294pt;}
.ls50{letter-spacing:0.298350pt;}
.ls3a{letter-spacing:0.335842pt;}
.ls48{letter-spacing:0.346133pt;}
.ls10{letter-spacing:0.352000pt;}
.ls47{letter-spacing:0.354746pt;}
.lsf{letter-spacing:0.370165pt;}
.ls2f{letter-spacing:0.372277pt;}
.ls66{letter-spacing:0.383894pt;}
.ls71{letter-spacing:0.389122pt;}
.ls58{letter-spacing:0.397096pt;}
.ls12{letter-spacing:0.410667pt;}
.ls22{letter-spacing:0.469333pt;}
.ls52{letter-spacing:0.495467pt;}
.ls3b{letter-spacing:0.519023pt;}
.lsb{letter-spacing:0.528000pt;}
.ls3d{letter-spacing:0.528581pt;}
.ls3c{letter-spacing:0.533867pt;}
.lsc{letter-spacing:0.586667pt;}
.ls70{letter-spacing:0.616000pt;}
.ls59{letter-spacing:0.620800pt;}
.ls1c{letter-spacing:0.645333pt;}
.ls19{letter-spacing:0.694865pt;}
.ls1a{letter-spacing:0.704000pt;}
.ls6d{letter-spacing:0.762667pt;}
.ls57{letter-spacing:0.765867pt;}
.ls73{letter-spacing:0.806337pt;}
.ls72{letter-spacing:0.816264pt;}
.ls25{letter-spacing:0.821333pt;}
.ls69{letter-spacing:0.854865pt;}
.ls6a{letter-spacing:0.864422pt;}
.lse{letter-spacing:0.880000pt;}
.ls4d{letter-spacing:0.997333pt;}
.ls62{letter-spacing:1.096000pt;}
.ls1b{letter-spacing:1.173333pt;}
.ls16{letter-spacing:1.196800pt;}
.ls74{letter-spacing:1.277867pt;}
.ls44{letter-spacing:1.294933pt;}
.ls43{letter-spacing:1.295467pt;}
.ls6b{letter-spacing:1.349333pt;}
.ls5f{letter-spacing:1.479467pt;}
.ls33{letter-spacing:1.941333pt;}
.ls63{letter-spacing:2.477867pt;}
.ls14{letter-spacing:2.523200pt;}
.ls2a{letter-spacing:2.592533pt;}
.ls37{letter-spacing:2.978164pt;}
.ls46{letter-spacing:2.992187pt;}
.ls45{letter-spacing:2.992719pt;}
.ls4e{letter-spacing:3.011819pt;}
.ls3e{letter-spacing:3.104640pt;}
.ls2c{letter-spacing:3.140022pt;}
.ls2e{letter-spacing:4.098746pt;}
.ls65{letter-spacing:4.161056pt;}
.ls32{letter-spacing:4.594587pt;}
.ls13{letter-spacing:5.768449pt;}
.ls67{letter-spacing:6.066799pt;}
.ls34{letter-spacing:6.253201pt;}
.ls6f{letter-spacing:8.044356pt;}
.ls0{letter-spacing:11.733333pt;}
.ls6c{letter-spacing:14.841452pt;}
.ws25{word-spacing:-33.968000pt;}
.ws48{word-spacing:-33.733333pt;}
.ws3a{word-spacing:-33.674667pt;}
.ws2b{word-spacing:-33.616000pt;}
.ws77{word-spacing:-33.557333pt;}
.ws39{word-spacing:-33.498667pt;}
.ws2e{word-spacing:-33.440000pt;}
.ws8c{word-spacing:-33.381333pt;}
.ws6f{word-spacing:-33.322667pt;}
.wsa{word-spacing:-33.264000pt;}
.wsc{word-spacing:-33.205333pt;}
.ws76{word-spacing:-33.146667pt;}
.ws4{word-spacing:-33.088000pt;}
.ws3b{word-spacing:-33.029333pt;}
.ws2d{word-spacing:-32.970667pt;}
.ws6c{word-spacing:-32.912000pt;}
.ws30{word-spacing:-32.853333pt;}
.ws5{word-spacing:-32.794667pt;}
.ws9d{word-spacing:-32.618667pt;}
.ws6e{word-spacing:-32.266667pt;}
.ws6d{word-spacing:-31.210667pt;}
.ws93{word-spacing:-24.927467pt;}
.ws92{word-spacing:-24.288000pt;}
.ws1a{word-spacing:-22.176000pt;}
.ws1{word-spacing:-20.000000pt;}
.ws8{word-spacing:-17.333333pt;}
.ws19{word-spacing:-16.837333pt;}
.ws23{word-spacing:-16.000000pt;}
.ws24{word-spacing:-15.546667pt;}
.ws9f{word-spacing:-15.429333pt;}
.ws47{word-spacing:-15.370667pt;}
.ws82{word-spacing:-15.312000pt;}
.ws2c{word-spacing:-15.194667pt;}
.wsa5{word-spacing:-15.077333pt;}
.ws70{word-spacing:-15.018667pt;}
.ws8b{word-spacing:-14.960000pt;}
.ws9{word-spacing:-14.901333pt;}
.wsb{word-spacing:-14.842667pt;}
.ws5b{word-spacing:-14.784000pt;}
.ws5a{word-spacing:-14.754667pt;}
.ws3{word-spacing:-14.725333pt;}
.ws0{word-spacing:-14.666667pt;}
.ws94{word-spacing:-14.608000pt;}
.ws59{word-spacing:-14.549333pt;}
.ws6b{word-spacing:-14.490667pt;}
.ws2f{word-spacing:-14.432000pt;}
.ws6a{word-spacing:-14.373333pt;}
.wsb4{word-spacing:-14.256000pt;}
.ws9c{word-spacing:-14.197333pt;}
.ws6{word-spacing:-13.440000pt;}
.ws7{word-spacing:-13.333333pt;}
.ws53{word-spacing:-12.496000pt;}
.wsb6{word-spacing:-11.909333pt;}
.ws84{word-spacing:-10.800533pt;}
.wsbb{word-spacing:-10.736000pt;}
.wsb7{word-spacing:-10.618667pt;}
.wsae{word-spacing:-10.442667pt;}
.ws43{word-spacing:-10.266667pt;}
.ws3c{word-spacing:-8.550667pt;}
.wsba{word-spacing:-8.096000pt;}
.wsaf{word-spacing:-7.568000pt;}
.wsb1{word-spacing:-7.392000pt;}
.wsbd{word-spacing:-6.512000pt;}
.wsb8{word-spacing:-4.341333pt;}
.wsb2{word-spacing:-4.282667pt;}
.ws7a{word-spacing:-3.930667pt;}
.wsad{word-spacing:-3.226667pt;}
.wsb5{word-spacing:-2.698667pt;}
.wsb3{word-spacing:-2.640000pt;}
.wsb0{word-spacing:-2.522667pt;}
.wsb9{word-spacing:-2.288000pt;}
.ws46{word-spacing:-1.818667pt;}
.ws81{word-spacing:-1.760000pt;}
.ws52{word-spacing:-1.232000pt;}
.ws9e{word-spacing:-1.173333pt;}
.ws41{word-spacing:-0.997333pt;}
.ws7c{word-spacing:-0.821333pt;}
.ws22{word-spacing:-0.762667pt;}
.ws13{word-spacing:-0.704000pt;}
.ws5f{word-spacing:-0.645333pt;}
.ws16{word-spacing:-0.586667pt;}
.ws37{word-spacing:-0.528000pt;}
.ws73{word-spacing:-0.469333pt;}
.ws3f{word-spacing:-0.410667pt;}
.ws29{word-spacing:-0.352000pt;}
.ws57{word-spacing:-0.293333pt;}
.ws1c{word-spacing:-0.234667pt;}
.ws50{word-spacing:-0.176000pt;}
.ws15{word-spacing:-0.117333pt;}
.wse{word-spacing:-0.058667pt;}
.wsd{word-spacing:0.000000pt;}
.ws40{word-spacing:0.058667pt;}
.ws11{word-spacing:0.117333pt;}
.ws7b{word-spacing:0.176000pt;}
.ws38{word-spacing:0.234667pt;}
.ws71{word-spacing:0.293333pt;}
.ws35{word-spacing:0.352000pt;}
.ws36{word-spacing:0.410667pt;}
.ws86{word-spacing:0.469333pt;}
.ws87{word-spacing:0.528000pt;}
.ws55{word-spacing:0.586667pt;}
.ws32{word-spacing:0.645333pt;}
.ws69{word-spacing:0.704000pt;}
.ws58{word-spacing:0.762667pt;}
.wsa0{word-spacing:0.821333pt;}
.ws10{word-spacing:0.880000pt;}
.ws8e{word-spacing:0.938667pt;}
.ws4f{word-spacing:0.997333pt;}
.ws74{word-spacing:1.056000pt;}
.ws44{word-spacing:1.114667pt;}
.ws8f{word-spacing:1.173333pt;}
.ws79{word-spacing:1.232000pt;}
.ws68{word-spacing:1.290667pt;}
.ws34{word-spacing:1.349333pt;}
.ws18{word-spacing:1.408000pt;}
.ws99{word-spacing:1.466667pt;}
.ws78{word-spacing:1.525333pt;}
.ws28{word-spacing:1.642667pt;}
.ws89{word-spacing:1.701333pt;}
.ws12{word-spacing:1.760000pt;}
.ws67{word-spacing:1.818667pt;}
.ws72{word-spacing:1.877333pt;}
.ws64{word-spacing:1.936000pt;}
.ws62{word-spacing:1.994667pt;}
.ws4b{word-spacing:2.053333pt;}
.ws4e{word-spacing:2.112000pt;}
.ws45{word-spacing:2.170667pt;}
.ws1f{word-spacing:2.229333pt;}
.ws4d{word-spacing:2.288000pt;}
.ws7f{word-spacing:2.346667pt;}
.ws61{word-spacing:2.405333pt;}
.ws80{word-spacing:2.464000pt;}
.ws3d{word-spacing:2.522667pt;}
.ws63{word-spacing:2.581333pt;}
.ws14{word-spacing:2.613333pt;}
.ws65{word-spacing:2.640000pt;}
.ws66{word-spacing:2.698667pt;}
.ws98{word-spacing:2.757333pt;}
.ws27{word-spacing:2.816000pt;}
.ws17{word-spacing:2.874667pt;}
.wsf{word-spacing:2.933333pt;}
.ws96{word-spacing:2.992000pt;}
.ws51{word-spacing:3.050667pt;}
.ws1b{word-spacing:3.109333pt;}
.ws54{word-spacing:3.168000pt;}
.wsa9{word-spacing:3.226667pt;}
.ws7e{word-spacing:3.285333pt;}
.ws42{word-spacing:3.344000pt;}
.ws31{word-spacing:3.461333pt;}
.ws91{word-spacing:3.520000pt;}
.wsa2{word-spacing:3.637333pt;}
.ws2a{word-spacing:3.696000pt;}
.ws75{word-spacing:3.754667pt;}
.ws9a{word-spacing:3.813333pt;}
.ws4c{word-spacing:3.872000pt;}
.ws33{word-spacing:3.930667pt;}
.ws90{word-spacing:3.989333pt;}
.ws5d{word-spacing:4.106667pt;}
.ws3e{word-spacing:4.165333pt;}
.wsac{word-spacing:4.282667pt;}
.wsab{word-spacing:4.341333pt;}
.ws5e{word-spacing:4.517333pt;}
.wsbc{word-spacing:4.693333pt;}
.ws95{word-spacing:4.752000pt;}
.ws5c{word-spacing:4.869333pt;}
.ws88{word-spacing:4.986667pt;}
.ws21{word-spacing:5.104000pt;}
.ws1d{word-spacing:5.221333pt;}
.ws85{word-spacing:5.280000pt;}
.ws8d{word-spacing:5.338667pt;}
.ws9b{word-spacing:5.514667pt;}
.ws56{word-spacing:5.632000pt;}
.ws7d{word-spacing:5.690667pt;}
.ws8a{word-spacing:5.866667pt;}
.wsaa{word-spacing:5.984000pt;}
.ws1e{word-spacing:6.101333pt;}
.ws83{word-spacing:6.218667pt;}
.wsa7{word-spacing:6.277333pt;}
.ws49{word-spacing:7.040000pt;}
.wsa6{word-spacing:7.274667pt;}
.wsa4{word-spacing:7.861333pt;}
.wsa8{word-spacing:8.037333pt;}
.ws60{word-spacing:8.330667pt;}
.ws26{word-spacing:8.565333pt;}
.wsa1{word-spacing:8.624000pt;}
.ws97{word-spacing:9.856000pt;}
.ws20{word-spacing:10.912000pt;}
.ws4a{word-spacing:11.850667pt;}
.wsa3{word-spacing:13.493333pt;}
.ws2{word-spacing:18.281536pt;}
._24{margin-left:-14.232296pt;}
._17{margin-left:-10.794667pt;}
._18{margin-left:-7.643200pt;}
._4{margin-left:-6.739200pt;}
._1{margin-left:-5.403200pt;}
._3{margin-left:-3.889600pt;}
._0{margin-left:-2.176533pt;}
._2{margin-left:-1.108800pt;}
._1b{width:0.889600pt;}
._7{width:1.784533pt;}
._6{width:3.114275pt;}
._16{width:4.086812pt;}
._19{width:5.392808pt;}
._1a{width:6.773149pt;}
._b{width:7.861333pt;}
._15{width:9.153484pt;}
._11{width:10.912000pt;}
._1d{width:13.378133pt;}
._f{width:15.312000pt;}
._9{width:16.250667pt;}
._a{width:17.658667pt;}
._d{width:20.885333pt;}
._20{width:28.688000pt;}
._23{width:30.154667pt;}
._5{width:31.307733pt;}
._21{width:32.384000pt;}
._1c{width:34.320000pt;}
._e{width:35.317333pt;}
._1e{width:37.488000pt;}
._1f{width:39.130667pt;}
._22{width:40.128000pt;}
._10{width:42.468800pt;}
._c{width:50.218667pt;}
._12{width:54.384000pt;}
._8{width:56.730667pt;}
._13{width:66.240533pt;}
._14{width:79.317333pt;}
.fs7{font-size:34.202667pt;}
.fs4{font-size:37.312000pt;}
.fs8{font-size:41.066667pt;}
.fs1{font-size:48.000000pt;}
.fs5{font-size:53.333333pt;}
.fs0{font-size:58.666667pt;}
.fs3{font-size:64.000000pt;}
.fs6{font-size:69.333333pt;}
.fs2{font-size:80.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:76.759867pt;}
.y64{bottom:113.385867pt;}
.y2a{bottom:117.831467pt;}
.y132{bottom:117.918800pt;}
.y197{bottom:118.624400pt;}
.y1bd{bottom:120.148933pt;}
.y210{bottom:120.362933pt;}
.y182{bottom:121.456133pt;}
.y11d{bottom:124.293733pt;}
.y63{bottom:130.985867pt;}
.y29{bottom:135.431333pt;}
.y131{bottom:135.518933pt;}
.y196{bottom:136.224400pt;}
.y1bc{bottom:137.748933pt;}
.y181{bottom:139.056133pt;}
.y11c{bottom:141.893600pt;}
.y20f{bottom:145.522000pt;}
.y87{bottom:147.449600pt;}
.y157{bottom:147.562933pt;}
.y62{bottom:148.585867pt;}
.yc8{bottom:152.413467pt;}
.y195{bottom:153.824400pt;}
.y1bb{bottom:155.348933pt;}
.y180{bottom:156.656133pt;}
.y130{bottom:158.788133pt;}
.y11b{bottom:159.493600pt;}
.ye4{bottom:161.975600pt;}
.y20e{bottom:163.122000pt;}
.y86{bottom:165.049600pt;}
.y156{bottom:165.162933pt;}
.y61{bottom:166.185867pt;}
.y28{bottom:168.149600pt;}
.yc7{bottom:170.013467pt;}
.y194{bottom:171.424400pt;}
.y1ba{bottom:172.948933pt;}
.y17f{bottom:174.256133pt;}
.y11a{bottom:177.093733pt;}
.y238{bottom:180.266800pt;}
.y85{bottom:182.649600pt;}
.y155{bottom:182.762933pt;}
.y1ed{bottom:184.236933pt;}
.ye3{bottom:185.244933pt;}
.y27{bottom:185.749600pt;}
.y20d{bottom:188.281067pt;}
.y193{bottom:189.024400pt;}
.y1b9{bottom:190.548933pt;}
.y12f{bottom:191.506267pt;}
.yc6{bottom:193.282667pt;}
.y119{bottom:194.693733pt;}
.y237{bottom:197.866800pt;}
.y84{bottom:200.249600pt;}
.y1ec{bottom:201.836933pt;}
.y26{bottom:203.349467pt;}
.y20c{bottom:205.881067pt;}
.y154{bottom:206.032267pt;}
.y192{bottom:206.624400pt;}
.y17e{bottom:206.974267pt;}
.y1b8{bottom:208.148933pt;}
.y12e{bottom:209.106267pt;}
.y118{bottom:212.293733pt;}
.y1eb{bottom:214.553067pt;}
.y51{bottom:216.060667pt;}
.ye2{bottom:217.962933pt;}
.y1ea{bottom:219.437067pt;}
.y25{bottom:220.949600pt;}
.y236{bottom:223.025733pt;}
.y83{bottom:223.518933pt;}
.y191{bottom:224.224400pt;}
.y17d{bottom:224.574267pt;}
.y1b7{bottom:225.748933pt;}
.yc5{bottom:226.000800pt;}
.y12d{bottom:226.706267pt;}
.y117{bottom:229.893600pt;}
.y20b{bottom:231.040133pt;}
.y50{bottom:233.660533pt;}
.ye1{bottom:235.562933pt;}
.y1e9{bottom:237.036933pt;}
.y24{bottom:238.549600pt;}
.y153{bottom:238.750267pt;}
.y235{bottom:240.625867pt;}
.y190{bottom:241.824400pt;}
.y17c{bottom:242.174267pt;}
.y1b6{bottom:243.348933pt;}
.yc4{bottom:243.600800pt;}
.y12c{bottom:244.306267pt;}
.y20a{bottom:248.640133pt;}
.y4f{bottom:251.260533pt;}
.ye0{bottom:253.162933pt;}
.y23{bottom:256.149600pt;}
.y82{bottom:256.236933pt;}
.y234{bottom:258.225867pt;}
.y18f{bottom:259.424400pt;}
.y17b{bottom:259.774267pt;}
.y1b5{bottom:260.948933pt;}
.y12b{bottom:261.906267pt;}
.y116{bottom:262.611867pt;}
.y4e{bottom:268.860533pt;}
.y1e8{bottom:269.755067pt;}
.ydf{bottom:270.762933pt;}
.y152{bottom:271.468533pt;}
.y22{bottom:273.749600pt;}
.y209{bottom:273.799200pt;}
.y81{bottom:273.836933pt;}
.yc3{bottom:276.318933pt;}
.y18e{bottom:277.024400pt;}
.y1b4{bottom:278.548933pt;}
.y1cb{bottom:279.619600pt;}
.y115{bottom:280.211733pt;}
.y233{bottom:283.384800pt;}
.y4d{bottom:286.460667pt;}
.y1e7{bottom:287.355067pt;}
.yde{bottom:288.362933pt;}
.y151{bottom:289.068400pt;}
.y208{bottom:291.399200pt;}
.y80{bottom:291.437067pt;}
.y17a{bottom:292.492400pt;}
.yc2{bottom:293.918933pt;}
.y12a{bottom:294.624400pt;}
.y1b3{bottom:296.148933pt;}
.y1ca{bottom:297.219600pt;}
.y232{bottom:300.984800pt;}
.y114{bottom:303.481067pt;}
.y1e6{bottom:304.955067pt;}
.y21{bottom:306.467600pt;}
.y207{bottom:308.999200pt;}
.y179{bottom:310.092400pt;}
.yc1{bottom:311.518933pt;}
.ydd{bottom:311.632267pt;}
.y129{bottom:312.224400pt;}
.y1b2{bottom:313.748933pt;}
.y7f{bottom:314.706267pt;}
.y231{bottom:318.584800pt;}
.y4c{bottom:319.178667pt;}
.y1e5{bottom:322.555067pt;}
.y20{bottom:324.067733pt;}
.y178{bottom:327.692400pt;}
.y128{bottom:329.824400pt;}
.y1c9{bottom:329.937733pt;}
.y1b1{bottom:331.348933pt;}
.y150{bottom:333.125200pt;}
.y206{bottom:334.158267pt;}
.yc0{bottom:334.788267pt;}
.y230{bottom:336.184800pt;}
.y113{bottom:336.199200pt;}
.y4b{bottom:336.778667pt;}
.y1f{bottom:341.667600pt;}
.ydc{bottom:344.350400pt;}
.y177{bottom:345.292400pt;}
.y7e{bottom:347.424400pt;}
.y1c8{bottom:347.537733pt;}
.y1b0{bottom:348.948933pt;}
.y14f{bottom:350.725200pt;}
.y112{bottom:353.799200pt;}
.y4a{bottom:354.378667pt;}
.y1e4{bottom:355.273200pt;}
.y1e{bottom:359.267600pt;}
.y205{bottom:359.317333pt;}
.y22f{bottom:361.343867pt;}
.ydb{bottom:361.950400pt;}
.y18d{bottom:362.542533pt;}
.y176{bottom:362.892400pt;}
.y7d{bottom:365.024400pt;}
.y1c7{bottom:365.137733pt;}
.y1af{bottom:366.548933pt;}
.ybf{bottom:367.506400pt;}
.y127{bottom:370.693733pt;}
.y49{bottom:371.978667pt;}
.y1e3{bottom:372.873200pt;}
.y14e{bottom:373.994400pt;}
.y1d{bottom:376.867600pt;}
.y204{bottom:376.917333pt;}
.y111{bottom:377.068533pt;}
.y22e{bottom:378.943867pt;}
.yda{bottom:379.550400pt;}
.y18c{bottom:380.142533pt;}
.y175{bottom:380.492400pt;}
.y7c{bottom:382.624400pt;}
.y1c6{bottom:382.737733pt;}
.y1ae{bottom:384.148933pt;}
.ybe{bottom:385.106400pt;}
.y48{bottom:389.578667pt;}
.y1e2{bottom:390.473200pt;}
.y203{bottom:394.517333pt;}
.y18b{bottom:397.742533pt;}
.y174{bottom:398.092400pt;}
.y1c5{bottom:400.337733pt;}
.y1ad{bottom:401.748933pt;}
.y1c{bottom:402.026667pt;}
.ybd{bottom:402.706400pt;}
.y126{bottom:403.411733pt;}
.y22d{bottom:404.102933pt;}
.y7b{bottom:405.893733pt;}
.y14d{bottom:406.712533pt;}
.y47{bottom:407.178667pt;}
.y1e1{bottom:408.073200pt;}
.y110{bottom:409.786533pt;}
.yd9{bottom:412.268533pt;}
.y18a{bottom:415.342533pt;}
.y173{bottom:415.692400pt;}
.y1c4{bottom:417.937733pt;}
.y1ac{bottom:419.348933pt;}
.y202{bottom:419.676400pt;}
.y22c{bottom:421.702933pt;}
.y14c{bottom:424.312533pt;}
.y46{bottom:424.778667pt;}
.y1e0{bottom:425.673200pt;}
.ybc{bottom:425.975600pt;}
.y125{bottom:426.681067pt;}
.y10f{bottom:427.386533pt;}
.yd8{bottom:429.868533pt;}
.y172{bottom:433.292400pt;}
.y1ab{bottom:436.948933pt;}
.y201{bottom:437.276267pt;}
.y7a{bottom:438.611733pt;}
.y1c3{bottom:441.207067pt;}
.y14b{bottom:441.912533pt;}
.y45{bottom:442.378667pt;}
.y1df{bottom:443.273200pt;}
.y10e{bottom:444.986533pt;}
.y22b{bottom:446.862000pt;}
.y171{bottom:450.892400pt;}
.y1b{bottom:453.062933pt;}
.y1aa{bottom:454.548933pt;}
.y200{bottom:454.876400pt;}
.y79{bottom:456.211733pt;}
.ybb{bottom:458.693733pt;}
.y124{bottom:459.399200pt;}
.y14a{bottom:459.512533pt;}
.y44{bottom:459.978667pt;}
.yaa{bottom:461.994400pt;}
.y10d{bottom:462.586533pt;}
.y22a{bottom:464.462000pt;}
.y170{bottom:468.492400pt;}
.y1a{bottom:470.662933pt;}
.y189{bottom:471.329867pt;}
.y1a9{bottom:472.148933pt;}
.yd7{bottom:473.925200pt;}
.y1de{bottom:475.991333pt;}
.yba{bottom:476.293733pt;}
.y123{bottom:476.999200pt;}
.y149{bottom:477.112533pt;}
.y43{bottom:477.578667pt;}
.ya9{bottom:479.594400pt;}
.y1ff{bottom:480.035467pt;}
.y10c{bottom:480.186533pt;}
.y229{bottom:482.062000pt;}
.y78{bottom:488.929867pt;}
.y1a8{bottom:489.748933pt;}
.yd6{bottom:491.525200pt;}
.y1dd{bottom:493.591333pt;}
.yb9{bottom:493.893733pt;}
.y122{bottom:494.599200pt;}
.y148{bottom:494.712533pt;}
.y42{bottom:495.178667pt;}
.ya8{bottom:497.194400pt;}
.y1fe{bottom:497.635467pt;}
.y10b{bottom:497.786533pt;}
.y16f{bottom:501.210533pt;}
.y19{bottom:501.781067pt;}
.y228{bottom:507.221067pt;}
.y1a7{bottom:507.348933pt;}
.y1dc{bottom:511.191333pt;}
.y188{bottom:512.199200pt;}
.ya7{bottom:514.794400pt;}
.y10a{bottom:515.386533pt;}
.yb8{bottom:517.163067pt;}
.y121{bottom:517.868533pt;}
.yf7{bottom:517.868667pt;}
.y41{bottom:518.448000pt;}
.y16e{bottom:518.810400pt;}
.y77{bottom:521.648000pt;}
.y1fd{bottom:522.794400pt;}
.y227{bottom:524.821067pt;}
.y1a6{bottom:524.948933pt;}
.y147{bottom:527.430667pt;}
.y1db{bottom:528.791333pt;}
.y109{bottom:532.986533pt;}
.y18{bottom:534.499200pt;}
.yf6{bottom:535.468667pt;}
.y16d{bottom:536.410533pt;}
.y76{bottom:539.248000pt;}
.y226{bottom:542.421067pt;}
.y187{bottom:544.917333pt;}
.y146{bottom:545.030667pt;}
.ya6{bottom:547.512533pt;}
.yb7{bottom:549.881200pt;}
.y108{bottom:550.586533pt;}
.y40{bottom:551.166133pt;}
.y17{bottom:552.099067pt;}
.yf5{bottom:553.068667pt;}
.y16c{bottom:554.010400pt;}
.y1a5{bottom:557.667067pt;}
.y1fc{bottom:558.712533pt;}
.y1da{bottom:561.509333pt;}
.y186{bottom:562.517333pt;}
.y145{bottom:562.630667pt;}
.ya5{bottom:565.112533pt;}
.y225{bottom:567.580133pt;}
.y107{bottom:568.186533pt;}
.y3f{bottom:568.766133pt;}
.y16{bottom:569.699200pt;}
.yf4{bottom:570.668667pt;}
.y16b{bottom:571.610533pt;}
.y1a4{bottom:575.267067pt;}
.y1fb{bottom:576.312533pt;}
.y1d9{bottom:579.109467pt;}
.y185{bottom:580.117333pt;}
.y144{bottom:580.230667pt;}
.yb6{bottom:582.599200pt;}
.ya4{bottom:582.712533pt;}
.y75{bottom:583.304667pt;}
.y224{bottom:585.180133pt;}
.y106{bottom:585.786533pt;}
.y3e{bottom:586.366133pt;}
.y15{bottom:587.299200pt;}
.yf3{bottom:588.268667pt;}
.y16a{bottom:589.210533pt;}
.y1a3{bottom:592.867067pt;}
.y1fa{bottom:593.912533pt;}
.yd5{bottom:597.830667pt;}
.ya3{bottom:600.312533pt;}
.y223{bottom:602.780133pt;}
.y105{bottom:603.386533pt;}
.y14{bottom:604.899200pt;}
.y74{bottom:606.574000pt;}
.y1a2{bottom:610.467067pt;}
.y1f9{bottom:611.512533pt;}
.yf2{bottom:611.537867pt;}
.y1d8{bottom:611.827467pt;}
.yb5{bottom:615.317333pt;}
.yd4{bottom:615.430667pt;}
.y1c2{bottom:617.912533pt;}
.y3d{bottom:619.084267pt;}
.y104{bottom:620.986533pt;}
.y169{bottom:621.928533pt;}
.y13{bottom:622.499200pt;}
.y222{bottom:627.939200pt;}
.y1a1{bottom:628.067067pt;}
.y60{bottom:628.450000pt;}
.y1f8{bottom:629.112533pt;}
.y1d7{bottom:629.427467pt;}
.y120{bottom:629.843200pt;}
.yb4{bottom:632.917333pt;}
.ya2{bottom:633.030667pt;}
.y184{bottom:636.104667pt;}
.y3c{bottom:636.684267pt;}
.y103{bottom:638.586533pt;}
.y73{bottom:639.292133pt;}
.y168{bottom:639.528533pt;}
.y12{bottom:640.099067pt;}
.yf1{bottom:644.256000pt;}
.y221{bottom:645.539200pt;}
.y1a0{bottom:645.667067pt;}
.y5f{bottom:646.050000pt;}
.y1d6{bottom:647.027467pt;}
.y11f{bottom:647.443333pt;}
.ya1{bottom:650.630667pt;}
.y183{bottom:653.704667pt;}
.y1f7{bottom:654.271600pt;}
.y3b{bottom:654.284267pt;}
.y72{bottom:656.892133pt;}
.y167{bottom:657.128533pt;}
.yf0{bottom:661.856000pt;}
.y1c1{bottom:662.561333pt;}
.y19f{bottom:663.267067pt;}
.y1d5{bottom:664.627467pt;}
.ya0{bottom:668.230667pt;}
.y5e{bottom:669.319200pt;}
.y220{bottom:670.698267pt;}
.y11e{bottom:670.712533pt;}
.y102{bottom:671.304667pt;}
.y3a{bottom:671.884133pt;}
.y11{bottom:672.817200pt;}
.y71{bottom:674.492133pt;}
.y166{bottom:674.728533pt;}
.yb3{bottom:676.974000pt;}
.yef{bottom:679.456000pt;}
.y1c0{bottom:680.161333pt;}
.y19e{bottom:680.867067pt;}
.y9f{bottom:685.830667pt;}
.y21f{bottom:688.298267pt;}
.y101{bottom:688.904667pt;}
.y1d4{bottom:689.786667pt;}
.y1f6{bottom:690.189733pt;}
.y10{bottom:690.417200pt;}
.y70{bottom:692.092133pt;}
.y165{bottom:692.328667pt;}
.yb2{bottom:694.574000pt;}
.ye7{bottom:697.675600pt;}
.y1bf{bottom:697.761333pt;}
.y19d{bottom:698.467067pt;}
.y5d{bottom:702.037467pt;}
.yee{bottom:702.725333pt;}
.y9e{bottom:703.430667pt;}
.y39{bottom:704.602400pt;}
.y100{bottom:706.504667pt;}
.y1f5{bottom:707.789733pt;}
.yf{bottom:708.017200pt;}
.y164{bottom:709.928533pt;}
.y21e{bottom:713.457333pt;}
.ye6{bottom:715.275600pt;}
.y6f{bottom:715.361467pt;}
.y19c{bottom:716.067067pt;}
.yb1{bottom:717.843333pt;}
.y143{bottom:718.548800pt;}
.ycf{bottom:718.785200pt;}
.y9d{bottom:721.030667pt;}
.y38{bottom:722.202267pt;}
.yff{bottom:724.104667pt;}
.y5c{bottom:725.306667pt;}
.y1f4{bottom:725.389733pt;}
.y163{bottom:727.528533pt;}
.y1be{bottom:730.479467pt;}
.y21d{bottom:731.057333pt;}
.ye5{bottom:732.875600pt;}
.y91{bottom:732.961467pt;}
.y19b{bottom:733.667067pt;}
.yed{bottom:735.443467pt;}
.y142{bottom:736.148800pt;}
.yce{bottom:736.385067pt;}
.ye{bottom:736.955867pt;}
.y9c{bottom:738.630667pt;}
.y1d3{bottom:741.704667pt;}
.y1f3{bottom:742.989733pt;}
.y162{bottom:745.128533pt;}
.yfe{bottom:747.374000pt;}
.y6e{bottom:748.079467pt;}
.y141{bottom:748.864800pt;}
.yb0{bottom:750.561467pt;}
.y19a{bottom:751.267067pt;}
.y140{bottom:753.748800pt;}
.ycd{bottom:753.985067pt;}
.y37{bottom:754.920400pt;}
.y21c{bottom:756.216267pt;}
.y90{bottom:756.230667pt;}
.y5b{bottom:758.024800pt;}
.yec{bottom:758.712667pt;}
.y1d2{bottom:759.304667pt;}
.y1f2{bottom:760.589733pt;}
.y161{bottom:762.728533pt;}
.y6d{bottom:765.679467pt;}
.y13f{bottom:766.464800pt;}
.yaf{bottom:768.161467pt;}
.y199{bottom:768.867067pt;}
.yd3{bottom:771.348800pt;}
.y13e{bottom:771.348933pt;}
.ycc{bottom:771.585067pt;}
.y36{bottom:772.520400pt;}
.y21b{bottom:773.816267pt;}
.y9b{bottom:773.830667pt;}
.y5a{bottom:775.624800pt;}
.y1d1{bottom:776.904667pt;}
.y1f1{bottom:778.189733pt;}
.yfd{bottom:780.092133pt;}
.y160{bottom:780.328667pt;}
.yd2{bottom:784.064800pt;}
.y198{bottom:786.466933pt;}
.y6c{bottom:788.948800pt;}
.ycb{bottom:789.185200pt;}
.y35{bottom:790.120400pt;}
.y9a{bottom:791.430667pt;}
.yae{bottom:791.430800pt;}
.y1f0{bottom:795.789733pt;}
.yfc{bottom:797.692000pt;}
.y21a{bottom:798.975467pt;}
.y1d0{bottom:800.174000pt;}
.yd{bottom:801.510133pt;}
.y13d{bottom:804.066933pt;}
.y8f{bottom:806.548800pt;}
.yca{bottom:806.785200pt;}
.y34{bottom:807.720400pt;}
.y59{bottom:808.342933pt;}
.yeb{bottom:809.030800pt;}
.y15f{bottom:813.046667pt;}
.y1ef{bottom:813.389733pt;}
.y219{bottom:816.575333pt;}
.yfb{bottom:820.961467pt;}
.y6b{bottom:821.666933pt;}
.y13c{bottom:821.903333pt;}
.y8e{bottom:824.148800pt;}
.y33{bottom:825.320533pt;}
.yc{bottom:825.510133pt;}
.yea{bottom:826.630800pt;}
.y15e{bottom:830.646667pt;}
.y1cf{bottom:832.892133pt;}
.y1ee{bottom:838.548800pt;}
.y6a{bottom:839.266933pt;}
.yd1{bottom:839.267067pt;}
.yc9{bottom:839.503200pt;}
.y13b{bottom:839.503333pt;}
.y58{bottom:841.061067pt;}
.y218{bottom:841.734400pt;}
.y8d{bottom:841.748800pt;}
.y32{bottom:842.920400pt;}
.ye9{bottom:844.230800pt;}
.yfa{bottom:853.679600pt;}
.y15d{bottom:853.916000pt;}
.y1ce{bottom:856.161333pt;}
.y69{bottom:856.866800pt;}
.yd0{bottom:856.866933pt;}
.y99{bottom:857.103200pt;}
.y13a{bottom:857.103333pt;}
.y8c{bottom:859.348800pt;}
.yad{bottom:859.348933pt;}
.y31{bottom:860.520400pt;}
.y217{bottom:866.893600pt;}
.yf9{bottom:871.279600pt;}
.y57{bottom:873.779200pt;}
.y68{bottom:874.466933pt;}
.y98{bottom:874.703200pt;}
.y139{bottom:874.703333pt;}
.y8b{bottom:876.948800pt;}
.ye8{bottom:876.948933pt;}
.y30{bottom:883.789733pt;}
.y216{bottom:884.493600pt;}
.y15c{bottom:886.634133pt;}
.y1cd{bottom:888.879467pt;}
.yf8{bottom:888.879600pt;}
.y56{bottom:891.379200pt;}
.y67{bottom:892.066933pt;}
.y97{bottom:892.303200pt;}
.y138{bottom:892.303333pt;}
.y8a{bottom:894.548800pt;}
.y215{bottom:902.093600pt;}
.y15b{bottom:904.234000pt;}
.y1cc{bottom:906.479467pt;}
.yb{bottom:907.857467pt;}
.y2f{bottom:908.948800pt;}
.y55{bottom:908.979200pt;}
.y66{bottom:909.666933pt;}
.y96{bottom:909.903200pt;}
.y137{bottom:909.903333pt;}
.y89{bottom:912.148800pt;}
.y15a{bottom:921.834000pt;}
.y54{bottom:926.579200pt;}
.y214{bottom:927.252667pt;}
.y65{bottom:927.266933pt;}
.yac{bottom:927.267067pt;}
.y95{bottom:927.503200pt;}
.y136{bottom:927.503333pt;}
.y88{bottom:929.748800pt;}
.ya{bottom:933.016533pt;}
.y159{bottom:939.434000pt;}
.y213{bottom:944.852667pt;}
.y2e{bottom:944.866800pt;}
.yab{bottom:944.866933pt;}
.y94{bottom:945.103200pt;}
.y135{bottom:945.103333pt;}
.y53{bottom:951.738267pt;}
.y158{bottom:957.034000pt;}
.y9{bottom:960.401333pt;}
.y212{bottom:962.452667pt;}
.y2d{bottom:962.466933pt;}
.y93{bottom:962.703200pt;}
.y134{bottom:962.703333pt;}
.y52{bottom:978.497333pt;}
.y211{bottom:980.052667pt;}
.y2c{bottom:980.066933pt;}
.y92{bottom:980.303200pt;}
.y133{bottom:980.303333pt;}
.y8{bottom:982.360400pt;}
.y7{bottom:1015.658000pt;}
.y2b{bottom:1016.707200pt;}
.y6{bottom:1031.796000pt;}
.y3{bottom:1049.381733pt;}
.y5{bottom:1049.396133pt;}
.y2{bottom:1066.981733pt;}
.y4{bottom:1066.996133pt;}
.hf{height:28.514063pt;}
.hd{height:30.010836pt;}
.h4{height:33.328125pt;}
.h5{height:39.760417pt;}
.he{height:40.734375pt;}
.h3{height:42.117188pt;}
.hc{height:43.562500pt;}
.h9{height:46.406250pt;}
.ha{height:46.796875pt;}
.hb{height:46.989583pt;}
.h2{height:51.476562pt;}
.h7{height:54.218750pt;}
.h6{height:54.453125pt;}
.h8{height:56.156250pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:94.488133pt;}
.x2d{left:96.377867pt;}
.x23{left:105.003067pt;}
.x1d{left:107.552933pt;}
.xe{left:111.856533pt;}
.x18{left:117.165333pt;}
.x21{left:126.285200pt;}
.xb{left:131.054533pt;}
.x1e{left:133.404000pt;}
.x1f{left:137.689333pt;}
.x2{left:140.254933pt;}
.x8{left:141.312533pt;}
.xf{left:168.904800pt;}
.x22{left:178.830400pt;}
.xa{left:182.078267pt;}
.x7{left:183.025467pt;}
.x11{left:227.558933pt;}
.x16{left:239.688667pt;}
.x15{left:249.464000pt;}
.x20{left:261.187333pt;}
.x10{left:276.541467pt;}
.x19{left:279.184000pt;}
.x1b{left:282.041467pt;}
.xc{left:283.798667pt;}
.x17{left:290.008667pt;}
.x14{left:308.879067pt;}
.x13{left:311.314000pt;}
.xd{left:313.140133pt;}
.x9{left:324.286933pt;}
.x2b{left:333.894000pt;}
.x2a{left:349.380667pt;}
.x1c{left:353.047333pt;}
.x1a{left:356.714000pt;}
.x28{left:361.036667pt;}
.x2c{left:376.067867pt;}
.x29{left:383.377200pt;}
.x12{left:385.850400pt;}
.x1{left:387.288400pt;}
.x24{left:484.125867pt;}
.x25{left:488.429200pt;}
.x2e{left:495.161467pt;}
.x2f{left:499.436667pt;}
.x3{left:516.110000pt;}
.x5{left:585.175067pt;}
.x4{left:600.371733pt;}
.x26{left:655.615333pt;}
.x27{left:659.918533pt;}
}




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