
    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_f275a0772e2772e6bf0de667.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.311035;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_378732d28970846eb117b0cd.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.432129;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_aa5523abce6038074e8f5412.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284180;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_963a4b714c63afc74d346ccf.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284668;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_8e0699a6660c230a2004e7da.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.432129;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_b0adf2519b6ca2f70727757b.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.284180;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_f7b0853ce1ecada32be5ff01.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.281250;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_d5cd4b653d5e2364ebaeff0e.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.432129;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_be9741b93232f9351547b91a.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.432129;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_b0f3e521bda300c00b97aba0.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.432129;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_95d9bb9815a912f96a1fea48.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.284668;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_e8de52b5bfc19ce0e147736c.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.284180;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_7fc8202ff5a850ce64dd5218.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_471a2cbe2324b6b3bee8bb08.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_0c1532bccfbb7ab11b7492c7.woff2')format("woff");}.fff{font-family:fff;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_91588eb5495c84fb97caf464.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_5158a80764b9e4dd6d4769b0.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.432129;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:ff12;src:url('chunks/assets/font_b7c8dde86ea42a068028f5a2.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.432129;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:ff13;src:url('chunks/assets/font_9b03f2e231372af34f4acc4f.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.432129;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:ff14;src:url('chunks/assets/font_e2bb81ec9567c59be86b6085.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.284668;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:ff15;src:url('chunks/assets/font_5a772cebb63eaefc08d48f56.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.432129;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:ff16;src:url('chunks/assets/font_d6e8f6c233e794669df2c183.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.432129;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:ff17;src:url('chunks/assets/font_2f0e63aed95753b3f4327414.woff2')format("woff");}.ff17{font-family:ff17;line-height:1.284668;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:ff18;src:url('chunks/assets/font_5295032794e3dd0a094619a9.woff2')format("woff");}.ff18{font-family:ff18;line-height:1.432129;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:ff19;src:url('chunks/assets/font_979abdca1226ed1d1245cc74.woff2')format("woff");}.ff19{font-family:ff19;line-height:1.284668;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:ff1a;src:url('chunks/assets/font_d6dbf7829471093eb48fb3b7.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:1.432129;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:ff1b;src:url('chunks/assets/font_84bff3611dea132c5483cc6a.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:1.432129;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:ff1c;src:url('chunks/assets/font_610447cacbc93cd274cef87c.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:1.284668;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;}
.m66{transform:matrix(0.000000,0.477500,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.477500,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.477500,-0.250000,0.000000,0,0);}
.m84{transform:matrix(0.000000,0.475000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.475000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.475000,-0.250000,0.000000,0,0);}
.m68{transform:matrix(0.000000,0.450000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.450000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.450000,-0.250000,0.000000,0,0);}
.m76{transform:matrix(0.000000,0.427500,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.427500,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.427500,-0.250000,0.000000,0,0);}
.m70{transform:matrix(0.000000,0.410000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.410000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.410000,-0.250000,0.000000,0,0);}
.m62{transform:matrix(0.000000,0.400000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.400000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.400000,-0.250000,0.000000,0,0);}
.m72{transform:matrix(0.000000,0.392500,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.392500,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.392500,-0.250000,0.000000,0,0);}
.m79{transform:matrix(0.000000,0.387500,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.387500,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.387500,-0.250000,0.000000,0,0);}
.m74{transform:matrix(0.000000,0.375000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.375000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.375000,-0.250000,0.000000,0,0);}
.m78{transform:matrix(0.000000,0.322500,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.322500,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.322500,-0.250000,0.000000,0,0);}
.m73{transform:matrix(0.000000,0.312500,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.312500,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.312500,-0.250000,0.000000,0,0);}
.m81{transform:matrix(0.000000,0.292500,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.292500,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.292500,-0.250000,0.000000,0,0);}
.m65{transform:matrix(0.000000,0.285000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.285000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.285000,-0.250000,0.000000,0,0);}
.m77{transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);}
.m63{transform:matrix(0.000000,0.207500,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.207500,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.207500,-0.250000,0.000000,0,0);}
.m6f{transform:matrix(0.000000,0.200000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.200000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.200000,-0.250000,0.000000,0,0);}
.m7d{transform:matrix(0.000000,0.197500,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.197500,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.197500,-0.250000,0.000000,0,0);}
.m71{transform:matrix(0.000000,0.192500,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.192500,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.192500,-0.250000,0.000000,0,0);}
.m75{transform:matrix(0.000000,0.187500,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.187500,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.187500,-0.250000,0.000000,0,0);}
.m86{transform:matrix(0.000000,0.167500,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.167500,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.167500,-0.250000,0.000000,0,0);}
.m82{transform:matrix(0.000000,0.117500,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.117500,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.117500,-0.250000,0.000000,0,0);}
.m80{transform:matrix(0.000000,0.102500,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.102500,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.102500,-0.250000,0.000000,0,0);}
.m7e{transform:matrix(0.000000,0.090000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.090000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.090000,-0.250000,0.000000,0,0);}
.m7c{transform:matrix(0.000000,0.080000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.080000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.080000,-0.250000,0.000000,0,0);}
.m83{transform:matrix(0.000000,0.032500,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.032500,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.032500,-0.250000,0.000000,0,0);}
.m49{transform:matrix(0.055000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.055000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.055000,0.000000,0.000000,0.250000,0,0);}
.m48{transform:matrix(0.057500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.057500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.057500,0.000000,0.000000,0.250000,0,0);}
.m51{transform:matrix(0.075000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.075000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.075000,0.000000,0.000000,0.250000,0,0);}
.m53{transform:matrix(0.082500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.082500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.082500,0.000000,0.000000,0.250000,0,0);}
.m4e{transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);}
.m4f{transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);}
.m85{transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);}
.m56{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.m30{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m57{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.m55{transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);}
.m6b{transform:matrix(0.158509,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158509,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158509,0.000000,0.000000,0.250000,0,0);}
.m4c{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);}
.m46{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m6a{transform:matrix(0.187814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187814,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m4b{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m41{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m31{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m6e{transform:matrix(0.223817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223817,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m7f{transform:matrix(0.226971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226971,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m87{transform:matrix(0.231374,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231374,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231374,0.000000,0.000000,0.250000,0,0);}
.m7b{transform:matrix(0.231852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231852,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m37{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m5d{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);}
.m6c{transform:matrix(0.248610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248610,0.000000,0.000000,0.250000,0,0);}
.m9{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);}
.m23{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);}
.m8{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m7a{transform:matrix(0.256535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256535,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m69{transform:matrix(0.277787,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277787,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277787,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m32{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m6d{transform:matrix(0.287097,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287097,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287097,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m34{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m3d{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m3e{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m4d{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m36{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m45{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m3c{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m33{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m40{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m3b{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m39{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m44{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m3a{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m60{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m5a{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m38{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m59{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m5e{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m50{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m52{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m61{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);}
.m43{transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);}
.m35{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m3f{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m5c{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m42{transform:matrix(0.410000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410000,0.000000,0.000000,0.250000,0,0);}
.m4a{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m47{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m54{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m5f{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m64{transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);}
.m58{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m5b{transform:matrix(0.500000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.500000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.500000,0.000000,0.000000,0.250000,0,0);}
.m67{transform:matrix(0.559090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559090,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-30.000000px;}
.v8{vertical-align:-27.360000px;}
.v3{vertical-align:-6.000000px;}
.v9{vertical-align:-4.320000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:6.000000px;}
.v7{vertical-align:30.000000px;}
.v4{vertical-align:48.000000px;}
.v1{vertical-align:54.000000px;}
.v5{vertical-align:72.000000px;}
.lsc{letter-spacing:-5.292021px;}
.ls14{letter-spacing:-1.995000px;}
.ls12{letter-spacing:-1.953000px;}
.ls10{letter-spacing:-1.890000px;}
.lsd{letter-spacing:-1.386000px;}
.ls0{letter-spacing:0.000000px;}
.lse{letter-spacing:0.675000px;}
.lsb{letter-spacing:1.620030px;}
.ls8{letter-spacing:2.344320px;}
.ls5{letter-spacing:2.396160px;}
.lsf{letter-spacing:2.700000px;}
.ls13{letter-spacing:2.707500px;}
.ls11{letter-spacing:2.790000px;}
.ls9{letter-spacing:3.180000px;}
.lsa{letter-spacing:4.374000px;}
.ls2{letter-spacing:23.652000px;}
.ls6{letter-spacing:34.140000px;}
.ls7{letter-spacing:45.000000px;}
.ls4{letter-spacing:77.333333px;}
.ls1{letter-spacing:117.333333px;}
.ls3{letter-spacing:201.000000px;}
.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;}
}
.ws34{word-spacing:-311.916000px;}
.ws77{word-spacing:-124.005333px;}
.wsc6{word-spacing:-84.005333px;}
.ws32{word-spacing:-68.388000px;}
.ws74{word-spacing:-56.712000px;}
.ws13{word-spacing:-16.500000px;}
.ws87{word-spacing:-15.000000px;}
.wsc{word-spacing:-13.500000px;}
.wsb1{word-spacing:-3.686979px;}
.wsb4{word-spacing:-3.671762px;}
.ws3f{word-spacing:-3.544082px;}
.ws9c{word-spacing:-3.388802px;}
.ws9e{word-spacing:-3.275646px;}
.ws72{word-spacing:-3.253412px;}
.wsa0{word-spacing:-3.052801px;}
.ws2e{word-spacing:-2.987603px;}
.ws46{word-spacing:-2.944408px;}
.ws10{word-spacing:-2.840881px;}
.wsd3{word-spacing:-2.828882px;}
.wsaf{word-spacing:-2.777764px;}
.ws80{word-spacing:-2.640000px;}
.ws1c{word-spacing:-2.579147px;}
.ws47{word-spacing:-2.450758px;}
.wsaa{word-spacing:-2.423058px;}
.wsdf{word-spacing:-2.400264px;}
.wsa1{word-spacing:-2.377440px;}
.wsa9{word-spacing:-2.322002px;}
.wsd8{word-spacing:-2.209282px;}
.wsc3{word-spacing:-2.037000px;}
.wsda{word-spacing:-2.013678px;}
.ws3b{word-spacing:-1.970878px;}
.ws3e{word-spacing:-1.889762px;}
.ws39{word-spacing:-1.707867px;}
.wsc2{word-spacing:-1.650470px;}
.wsba{word-spacing:-1.612803px;}
.wse0{word-spacing:-1.408802px;}
.wsad{word-spacing:-1.374427px;}
.ws92{word-spacing:-1.247455px;}
.ws2c{word-spacing:-1.226380px;}
.ws79{word-spacing:-1.183153px;}
.ws71{word-spacing:-1.167132px;}
.ws22{word-spacing:-0.929407px;}
.wsa4{word-spacing:-0.901922px;}
.ws43{word-spacing:-0.898484px;}
.wsa7{word-spacing:-0.793835px;}
.wse1{word-spacing:-0.566584px;}
.wsb{word-spacing:-0.478104px;}
.ws7c{word-spacing:-0.428091px;}
.ws20{word-spacing:-0.354790px;}
.wsbe{word-spacing:-0.330248px;}
.wse5{word-spacing:-0.264248px;}
.wsb9{word-spacing:-0.232617px;}
.wse9{word-spacing:-0.155939px;}
.ws0{word-spacing:0.000000px;}
.ws5a{word-spacing:0.009021px;}
.wse3{word-spacing:0.335551px;}
.wse8{word-spacing:0.518158px;}
.wsd9{word-spacing:0.598847px;}
.ws4b{word-spacing:0.751592px;}
.wsd2{word-spacing:1.013950px;}
.ws17{word-spacing:1.144441px;}
.ws61{word-spacing:1.997279px;}
.ws49{word-spacing:2.420015px;}
.ws66{word-spacing:2.421811px;}
.ws48{word-spacing:2.519103px;}
.wsea{word-spacing:2.658988px;}
.ws7b{word-spacing:2.702490px;}
.ws38{word-spacing:2.766593px;}
.ws18{word-spacing:2.812286px;}
.wsb6{word-spacing:3.000000px;}
.wsc0{word-spacing:3.098749px;}
.ws7f{word-spacing:3.275210px;}
.wscb{word-spacing:3.575278px;}
.ws2f{word-spacing:3.639021px;}
.wse4{word-spacing:3.664765px;}
.wsdb{word-spacing:3.696000px;}
.ws44{word-spacing:3.787100px;}
.ws8{word-spacing:3.856165px;}
.ws65{word-spacing:3.964647px;}
.wsc9{word-spacing:3.965551px;}
.wsa5{word-spacing:4.073501px;}
.wsb2{word-spacing:4.090245px;}
.ws4e{word-spacing:4.164843px;}
.ws41{word-spacing:4.214626px;}
.wsc8{word-spacing:4.404397px;}
.ws3a{word-spacing:4.500000px;}
.ws6a{word-spacing:4.511449px;}
.ws23{word-spacing:4.530000px;}
.wsdc{word-spacing:4.586313px;}
.ws3d{word-spacing:4.911416px;}
.ws3c{word-spacing:4.948560px;}
.ws86{word-spacing:4.980000px;}
.ws5b{word-spacing:5.060975px;}
.wsae{word-spacing:5.153053px;}
.ws15{word-spacing:5.196000px;}
.ws27{word-spacing:5.476909px;}
.ws4c{word-spacing:5.534755px;}
.wse7{word-spacing:5.552133px;}
.wsce{word-spacing:5.675530px;}
.ws51{word-spacing:5.820988px;}
.wsca{word-spacing:6.135721px;}
.ws56{word-spacing:6.462593px;}
.ws6c{word-spacing:6.584015px;}
.ws4a{word-spacing:6.632399px;}
.wsdd{word-spacing:6.764399px;}
.ws8a{word-spacing:7.020000px;}
.ws5d{word-spacing:7.047359px;}
.wsd4{word-spacing:7.062957px;}
.wsb7{word-spacing:7.473514px;}
.wsd1{word-spacing:7.494298px;}
.ws97{word-spacing:7.500000px;}
.wscf{word-spacing:7.576952px;}
.ws1f{word-spacing:7.595449px;}
.wsb8{word-spacing:7.648599px;}
.wscc{word-spacing:7.775082px;}
.wsb0{word-spacing:7.910626px;}
.ws59{word-spacing:8.258430px;}
.wsde{word-spacing:8.773398px;}
.ws50{word-spacing:8.895359px;}
.ws82{word-spacing:9.000000px;}
.ws40{word-spacing:9.029487px;}
.ws1a{word-spacing:9.305530px;}
.wse{word-spacing:9.333359px;}
.ws45{word-spacing:9.358658px;}
.ws12{word-spacing:9.522000px;}
.wsb5{word-spacing:9.696000px;}
.ws14{word-spacing:9.870000px;}
.wsab{word-spacing:10.092593px;}
.wsd0{word-spacing:10.152000px;}
.ws7d{word-spacing:10.317918px;}
.ws16{word-spacing:10.318030px;}
.ws30{word-spacing:10.500000px;}
.ws93{word-spacing:10.512000px;}
.ws28{word-spacing:10.530000px;}
.wsd7{word-spacing:10.673466px;}
.wsa8{word-spacing:10.965021px;}
.wsb3{word-spacing:11.015509px;}
.ws19{word-spacing:11.196000px;}
.ws62{word-spacing:11.478000px;}
.ws4f{word-spacing:12.000000px;}
.wscd{word-spacing:12.097439px;}
.ws88{word-spacing:12.360000px;}
.wsa{word-spacing:12.384298px;}
.wsd5{word-spacing:12.479053px;}
.ws11{word-spacing:12.522000px;}
.ws58{word-spacing:12.792472px;}
.ws1d{word-spacing:12.870000px;}
.ws81{word-spacing:13.020000px;}
.ws9b{word-spacing:13.392000px;}
.ws9{word-spacing:13.500000px;}
.ws96{word-spacing:13.512000px;}
.wsbd{word-spacing:13.848000px;}
.wsac{word-spacing:14.369466px;}
.ws31{word-spacing:14.478000px;}
.ws83{word-spacing:15.000000px;}
.ws64{word-spacing:15.060000px;}
.wse6{word-spacing:15.236626px;}
.ws84{word-spacing:15.720000px;}
.ws94{word-spacing:16.482000px;}
.ws7{word-spacing:16.488000px;}
.ws2d{word-spacing:16.500000px;}
.ws85{word-spacing:16.980000px;}
.ws1e{word-spacing:17.196000px;}
.ws7e{word-spacing:17.478000px;}
.ws1b{word-spacing:17.544000px;}
.ws5{word-spacing:17.640000px;}
.wsbc{word-spacing:17.826000px;}
.wsd6{word-spacing:17.892000px;}
.ws52{word-spacing:19.218000px;}
.wseb{word-spacing:19.524000px;}
.wsbf{word-spacing:20.801103px;}
.ws7a{word-spacing:21.000000px;}
.ws9a{word-spacing:21.510397px;}
.ws89{word-spacing:21.660000px;}
.ws4d{word-spacing:22.500000px;}
.ws42{word-spacing:23.196000px;}
.ws9d{word-spacing:23.544000px;}
.ws63{word-spacing:23.640000px;}
.wsa3{word-spacing:24.174000px;}
.wsa6{word-spacing:24.522000px;}
.wsd{word-spacing:25.500000px;}
.ws3{word-spacing:26.250000px;}
.wsbb{word-spacing:26.826000px;}
.ws1{word-spacing:27.719704px;}
.ws33{word-spacing:28.968000px;}
.ws6b{word-spacing:29.196000px;}
.ws21{word-spacing:31.218000px;}
.wsf{word-spacing:31.986415px;}
.wsc1{word-spacing:34.569216px;}
.ws99{word-spacing:34.723140px;}
.ws9f{word-spacing:37.680000px;}
.wsc4{word-spacing:38.826000px;}
.ws75{word-spacing:39.296000px;}
.ws68{word-spacing:43.321320px;}
.ws55{word-spacing:43.524000px;}
.ws98{word-spacing:44.833333px;}
.ws2{word-spacing:48.649406px;}
.ws67{word-spacing:48.976895px;}
.wse2{word-spacing:54.522000px;}
.ws6{word-spacing:64.627604px;}
.ws35{word-spacing:64.968000px;}
.ws4{word-spacing:69.968438px;}
.wsc7{word-spacing:70.661333px;}
.ws26{word-spacing:86.661333px;}
.ws2b{word-spacing:89.328000px;}
.ws29{word-spacing:109.380000px;}
.ws54{word-spacing:110.661333px;}
.ws69{word-spacing:114.120000px;}
.ws6e{word-spacing:143.940000px;}
.ws60{word-spacing:153.669017px;}
.ws2a{word-spacing:171.000000px;}
.wsc5{word-spacing:187.500000px;}
.ws25{word-spacing:190.925926px;}
.ws24{word-spacing:198.333333px;}
.ws37{word-spacing:204.174818px;}
.ws90{word-spacing:210.564104px;}
.ws70{word-spacing:217.354571px;}
.ws36{word-spacing:217.500000px;}
.wsa2{word-spacing:221.904000px;}
.ws5c{word-spacing:250.185185px;}
.ws53{word-spacing:257.592593px;}
.ws5f{word-spacing:258.009133px;}
.ws76{word-spacing:259.672563px;}
.ws57{word-spacing:265.000000px;}
.ws73{word-spacing:265.500000px;}
.ws6f{word-spacing:279.962142px;}
.ws8f{word-spacing:332.833333px;}
.ws91{word-spacing:343.500000px;}
.ws8d{word-spacing:393.984000px;}
.ws5e{word-spacing:407.070261px;}
.ws8e{word-spacing:417.984000px;}
.ws95{word-spacing:439.500000px;}
.ws78{word-spacing:459.375000px;}
.ws6d{word-spacing:961.429190px;}
.ws8b{word-spacing:1360.904985px;}
.ws8c{word-spacing:2115.252938px;}
._15{margin-left:-319.248000px;}
._14{margin-left:-241.248000px;}
._12{margin-left:-186.522000px;}
._1d{margin-left:-117.333333px;}
._25{margin-left:-77.333333px;}
._29{margin-left:-65.733600px;}
._2c{margin-left:-59.573134px;}
._22{margin-left:-17.245232px;}
._26{margin-left:-11.546404px;}
._9{margin-left:-8.644988px;}
._1c{margin-left:-6.881851px;}
._7{margin-left:-4.669653px;}
._2{margin-left:-3.315801px;}
._10{margin-left:-1.944292px;}
._1{width:1.790816px;}
._5{width:2.838952px;}
._f{width:4.293117px;}
._e{width:5.449877px;}
._11{width:6.957367px;}
._6{width:8.619719px;}
._3{width:10.723383px;}
._8{width:12.468429px;}
._27{width:13.559040px;}
._24{width:16.794239px;}
._a{width:19.266593px;}
._b{width:21.828137px;}
._20{width:24.372000px;}
._4{width:27.696000px;}
._1f{width:30.348000px;}
._23{width:32.370000px;}
._19{width:36.000000px;}
._17{width:39.000000px;}
._16{width:40.500000px;}
._0{width:43.125000px;}
._21{width:45.099244px;}
._2b{width:63.244800px;}
._c{width:96.000000px;}
._18{width:120.000000px;}
._28{width:164.632466px;}
._1b{width:196.188767px;}
._d{width:211.833333px;}
._13{width:231.948000px;}
._2a{width:235.615895px;}
._1e{width:278.500000px;}
._1a{width:426.104255px;}
._2d{width:470.339550px;}
.fc1{color:transparent;}
.fc0{color:rgb(255,255,255);}
.fs25{font-size:22.800600px;}
.fs22{font-size:23.400600px;}
.fs5{font-size:24.000000px;}
.fs10{font-size:30.000000px;}
.fs26{font-size:31.200000px;}
.fs1c{font-size:32.400600px;}
.fs1a{font-size:34.800600px;}
.fs9{font-size:36.000000px;}
.fs29{font-size:37.200000px;}
.fs31{font-size:38.400600px;}
.fs24{font-size:39.600000px;}
.fs1e{font-size:41.400600px;}
.fs8{font-size:42.000000px;}
.fs1b{font-size:45.600000px;}
.fs30{font-size:46.800600px;}
.fs3{font-size:48.000000px;}
.fs18{font-size:51.600000px;}
.fs6{font-size:54.000000px;}
.fs23{font-size:54.600000px;}
.fs17{font-size:55.200000px;}
.fs27{font-size:55.800000px;}
.fs2a{font-size:57.000000px;}
.fs16{font-size:57.600000px;}
.fs1d{font-size:58.800000px;}
.fs4{font-size:60.000000px;}
.fs19{font-size:63.600000px;}
.fs21{font-size:64.200000px;}
.fs2{font-size:66.000000px;}
.fs11{font-size:72.000000px;}
.fsf{font-size:78.000000px;}
.fs13{font-size:84.000000px;}
.fs1{font-size:96.000000px;}
.fs15{font-size:108.000000px;}
.fs7{font-size:120.000000px;}
.fs2e{font-size:126.000000px;}
.fs2f{font-size:138.000000px;}
.fs1f{font-size:151.200600px;}
.fs20{font-size:165.600000px;}
.fsa{font-size:168.000000px;}
.fs2b{font-size:192.000000px;}
.fs12{font-size:204.000000px;}
.fs0{font-size:210.000000px;}
.fs28{font-size:240.000000px;}
.fsb{font-size:246.000000px;}
.fs2c{font-size:318.000000px;}
.fs14{font-size:348.000000px;}
.fse{font-size:354.000000px;}
.fsc{font-size:600.000000px;}
.fs2d{font-size:750.000000px;}
.fsd{font-size:1122.000000px;}
.y0{bottom:0.000000px;}
.y1f4{bottom:22.650000px;}
.y1db{bottom:49.500000px;}
.y1e9{bottom:52.500000px;}
.y1f0{bottom:54.000000px;}
.y1c9{bottom:55.500000px;}
.y216{bottom:57.000000px;}
.yd9{bottom:58.500000px;}
.ybf{bottom:60.000000px;}
.y1ed{bottom:61.500000px;}
.y15e{bottom:63.000000px;}
.y1f2{bottom:64.065000px;}
.ycc{bottom:64.500000px;}
.y108{bottom:67.500000px;}
.y12a{bottom:69.000000px;}
.y1d6{bottom:70.500000px;}
.y1b4{bottom:72.000000px;}
.y1aa{bottom:73.500000px;}
.y11c{bottom:75.000000px;}
.y183{bottom:76.500000px;}
.y9{bottom:78.000000px;}
.y156{bottom:81.000000px;}
.y218{bottom:82.065000px;}
.y18b{bottom:82.500000px;}
.y20a{bottom:83.505000px;}
.y173{bottom:84.000000px;}
.y211{bottom:85.500000px;}
.y210{bottom:86.370000px;}
.y81{bottom:87.000000px;}
.y214{bottom:87.465000px;}
.y1e8{bottom:88.500000px;}
.y1c8{bottom:90.000000px;}
.y197{bottom:91.500000px;}
.yd8{bottom:93.000000px;}
.y5c{bottom:94.500000px;}
.y20f{bottom:96.000000px;}
.y1f1{bottom:96.465000px;}
.y41{bottom:97.500000px;}
.y1ef{bottom:98.220000px;}
.y212{bottom:99.000000px;}
.y107{bottom:100.500000px;}
.y8{bottom:102.000000px;}
.y16{bottom:103.500000px;}
.y1d5{bottom:105.000000px;}
.y1b3{bottom:106.500000px;}
.y1a9{bottom:108.000000px;}
.yd7{bottom:109.500000px;}
.y40{bottom:111.000000px;}
.ybe{bottom:112.500000px;}
.y106{bottom:114.000000px;}
.y129{bottom:115.500000px;}
.y1bb{bottom:117.000000px;}
.y155{bottom:118.500000px;}
.y172{bottom:120.000000px;}
.y80{bottom:121.500000px;}
.y1d4{bottom:123.000000px;}
.y1b2{bottom:124.500000px;}
.y3f{bottom:126.000000px;}
.y11b{bottom:127.500000px;}
.y7{bottom:129.000000px;}
.y15{bottom:130.500000px;}
.y20e{bottom:132.000000px;}
.y213{bottom:132.810000px;}
.y4{bottom:133.500000px;}
.y217{bottom:134.970000px;}
.y182{bottom:135.000000px;}
.y20d{bottom:136.500000px;}
.y171{bottom:138.000000px;}
.y20b{bottom:139.290000px;}
.y3e{bottom:139.500000px;}
.y128{bottom:141.000000px;}
.y5b{bottom:145.500000px;}
.y9d{bottom:147.000000px;}
.y181{bottom:148.500000px;}
.y20c{bottom:149.370000px;}
.y14{bottom:150.000000px;}
.y1f3{bottom:150.810000px;}
.yc4{bottom:151.500000px;}
.y6{bottom:153.000000px;}
.y170{bottom:154.500000px;}
.y7f{bottom:156.000000px;}
.y1d3{bottom:157.500000px;}
.y3{bottom:159.000000px;}
.y3d{bottom:160.500000px;}
.y5a{bottom:163.500000px;}
.y154{bottom:165.000000px;}
.ybd{bottom:166.500000px;}
.y1c3{bottom:168.000000px;}
.y127{bottom:169.500000px;}
.y105{bottom:171.000000px;}
.y17d{bottom:172.500000px;}
.y7e{bottom:174.000000px;}
.y16f{bottom:175.500000px;}
.y1e7{bottom:177.000000px;}
.y153{bottom:178.500000px;}
.y59{bottom:180.000000px;}
.y1a3{bottom:183.000000px;}
.y104{bottom:184.500000px;}
.y126{bottom:186.000000px;}
.y13a{bottom:187.500000px;}
.y3c{bottom:189.000000px;}
.y7d{bottom:190.500000px;}
.y9b{bottom:192.000000px;}
.y16e{bottom:193.500000px;}
.y1e6{bottom:195.000000px;}
.y103{bottom:196.500000px;}
.yd6{bottom:198.000000px;}
.y58{bottom:199.500000px;}
.y1a2{bottom:201.000000px;}
.y3b{bottom:204.000000px;}
.ybc{bottom:205.500000px;}
.ye8{bottom:207.000000px;}
.y7c{bottom:208.500000px;}
.y102{bottom:210.000000px;}
.y16d{bottom:211.500000px;}
.y1b1{bottom:213.000000px;}
.y196{bottom:214.500000px;}
.y57{bottom:216.000000px;}
.y3a{bottom:217.500000px;}
.y15d{bottom:219.000000px;}
.y11a{bottom:220.500000px;}
.ycb{bottom:222.000000px;}
.ybb{bottom:223.500000px;}
.y1ac{bottom:225.000000px;}
.y1c7{bottom:226.500000px;}
.y16c{bottom:228.000000px;}
.y9a{bottom:229.500000px;}
.y39{bottom:231.000000px;}
.yd5{bottom:232.500000px;}
.y56{bottom:234.000000px;}
.y101{bottom:235.500000px;}
.y1d2{bottom:237.000000px;}
.y139{bottom:238.500000px;}
.yba{bottom:240.000000px;}
.y13{bottom:241.500000px;}
.y9c{bottom:243.000000px;}
.y7b{bottom:244.500000px;}
.y38{bottom:246.000000px;}
.y100{bottom:247.500000px;}
.y1e5{bottom:249.000000px;}
.y55{bottom:250.500000px;}
.y200{bottom:251.625000px;}
.y185{bottom:253.500000px;}
.y138{bottom:256.500000px;}
.yb9{bottom:258.000000px;}
.y1ff{bottom:258.465000px;}
.y119{bottom:259.500000px;}
.y37{bottom:261.000000px;}
.y16b{bottom:262.500000px;}
.y1da{bottom:264.000000px;}
.y1b0{bottom:265.500000px;}
.y195{bottom:267.000000px;}
.y54{bottom:268.500000px;}
.y17c{bottom:270.000000px;}
.ye7{bottom:271.500000px;}
.yff{bottom:273.000000px;}
.y36{bottom:274.500000px;}
.y1fe{bottom:275.385000px;}
.y125{bottom:276.000000px;}
.yb8{bottom:277.500000px;}
.y16a{bottom:280.500000px;}
.y12{bottom:282.000000px;}
.y180{bottom:283.500000px;}
.y14a{bottom:285.000000px;}
.y53{bottom:286.500000px;}
.y1d1{bottom:288.000000px;}
.y35{bottom:289.500000px;}
.yb7{bottom:292.500000px;}
.y1f8{bottom:293.027100px;}
.y17b{bottom:295.500000px;}
.y1fd{bottom:296.985000px;}
.y7a{bottom:298.500000px;}
.y1d9{bottom:300.000000px;}
.y1f7{bottom:300.945000px;}
.yfe{bottom:301.500000px;}
.y34{bottom:303.000000px;}
.y52{bottom:304.500000px;}
.y99{bottom:306.000000px;}
.y152{bottom:307.500000px;}
.y17f{bottom:309.000000px;}
.yb6{bottom:310.500000px;}
.y1c6{bottom:312.000000px;}
.y1a1{bottom:313.500000px;}
.ye6{bottom:315.000000px;}
.y79{bottom:316.500000px;}
.y1f6{bottom:317.145000px;}
.y33{bottom:318.000000px;}
.y1af{bottom:319.500000px;}
.y51{bottom:321.000000px;}
.y184{bottom:322.500000px;}
.yfd{bottom:324.000000px;}
.y1c2{bottom:325.500000px;}
.y1f5{bottom:325.785000px;}
.y1a0{bottom:327.000000px;}
.yb5{bottom:328.500000px;}
.y15c{bottom:330.000000px;}
.y32{bottom:333.000000px;}
.y78{bottom:334.500000px;}
.y169{bottom:336.000000px;}
.y149{bottom:337.500000px;}
.y50{bottom:339.000000px;}
.y19f{bottom:340.500000px;}
.yfc{bottom:342.000000px;}
.y1ee{bottom:343.500000px;}
.y1ba{bottom:345.000000px;}
.y31{bottom:346.500000px;}
.y168{bottom:348.000000px;}
.y11{bottom:349.500000px;}
.y77{bottom:351.000000px;}
.y19e{bottom:352.500000px;}
.y1ae{bottom:354.000000px;}
.yd4{bottom:355.500000px;}
.y4f{bottom:357.000000px;}
.y97{bottom:358.500000px;}
.y30{bottom:360.000000px;}
.y167{bottom:361.500000px;}
.yb4{bottom:363.000000px;}
.y124{bottom:364.500000px;}
.y19d{bottom:366.000000px;}
.y76{bottom:369.000000px;}
.y98{bottom:370.500000px;}
.y96{bottom:372.000000px;}
.y2f{bottom:373.500000px;}
.y1ec{bottom:375.000000px;}
.yfb{bottom:376.500000px;}
.y215{bottom:378.000000px;}
.y10{bottom:381.000000px;}
.y137{bottom:382.500000px;}
.y95{bottom:384.000000px;}
.y191{bottom:385.500000px;}
.ye5{bottom:387.000000px;}
.y2e{bottom:388.500000px;}
.y1d8{bottom:390.000000px;}
.y4e{bottom:391.500000px;}
.y17a{bottom:393.000000px;}
.yfa{bottom:394.500000px;}
.y94{bottom:396.000000px;}
.y1b9{bottom:397.500000px;}
.yb3{bottom:399.000000px;}
.y1c5{bottom:400.500000px;}
.y15b{bottom:402.000000px;}
.y2d{bottom:403.500000px;}
.y75{bottom:406.500000px;}
.y93{bottom:408.000000px;}
.yf{bottom:409.500000px;}
.yf9{bottom:411.000000px;}
.y190{bottom:412.500000px;}
.yc3{bottom:414.000000px;}
.y1b8{bottom:415.500000px;}
.yb2{bottom:417.000000px;}
.y17e{bottom:420.000000px;}
.yc2{bottom:421.500000px;}
.y2c{bottom:423.000000px;}
.y74{bottom:424.500000px;}
.y4d{bottom:426.000000px;}
.y118{bottom:427.500000px;}
.yf8{bottom:429.000000px;}
.y179{bottom:432.000000px;}
.yb1{bottom:433.500000px;}
.y92{bottom:435.000000px;}
.y15a{bottom:436.500000px;}
.y18f{bottom:438.000000px;}
.y1de{bottom:439.500000px;}
.ye{bottom:441.000000px;}
.y73{bottom:442.500000px;}
.y4c{bottom:444.000000px;}
.y123{bottom:445.500000px;}
.yf7{bottom:447.000000px;}
.y194{bottom:450.000000px;}
.y2b{bottom:451.500000px;}
.y19c{bottom:454.500000px;}
.y178{bottom:456.000000px;}
.y122{bottom:457.500000px;}
.ye4{bottom:459.000000px;}
.y4b{bottom:460.500000px;}
.y117{bottom:462.000000px;}
.y72{bottom:463.500000px;}
.yf6{bottom:465.000000px;}
.y2a{bottom:466.500000px;}
.y1b7{bottom:468.000000px;}
.yb0{bottom:469.500000px;}
.yd{bottom:471.000000px;}
.ye3{bottom:472.500000px;}
.y91{bottom:474.000000px;}
.y166{bottom:475.500000px;}
.y148{bottom:477.000000px;}
.y4a{bottom:478.500000px;}
.y29{bottom:480.000000px;}
.y71{bottom:481.500000px;}
.y209{bottom:483.844619px;}
.yaf{bottom:486.000000px;}
.y18e{bottom:487.500000px;}
.y165{bottom:489.000000px;}
.y208{bottom:490.308444px;}
.y147{bottom:490.500000px;}
.y18a{bottom:492.000000px;}
.y177{bottom:493.500000px;}
.y28{bottom:495.000000px;}
.y207{bottom:496.432069px;}
.y49{bottom:496.500000px;}
.y70{bottom:498.000000px;}
.yf5{bottom:499.500000px;}
.yc{bottom:501.000000px;}
.y146{bottom:502.500000px;}
.y206{bottom:502.895894px;}
.yae{bottom:504.000000px;}
.y116{bottom:505.500000px;}
.y115{bottom:507.000000px;}
.y27{bottom:508.500000px;}
.y205{bottom:509.019519px;}
.y159{bottom:510.000000px;}
.y48{bottom:513.000000px;}
.y204{bottom:514.424940px;}
.y1be{bottom:514.500000px;}
.y6f{bottom:516.000000px;}
.y151{bottom:517.500000px;}
.y114{bottom:519.000000px;}
.y203{bottom:520.548564px;}
.y1a8{bottom:522.000000px;}
.y26{bottom:523.500000px;}
.yad{bottom:525.000000px;}
.y136{bottom:526.500000px;}
.y202{bottom:527.012390px;}
.y145{bottom:528.000000px;}
.ye2{bottom:529.500000px;}
.y201{bottom:529.545000px;}
.yb{bottom:531.000000px;}
.y90{bottom:532.500000px;}
.y5{bottom:534.000000px;}
.y25{bottom:537.000000px;}
.y189{bottom:538.500000px;}
.y18d{bottom:540.000000px;}
.y1c1{bottom:541.500000px;}
.yac{bottom:543.000000px;}
.y135{bottom:544.500000px;}
.y176{bottom:546.000000px;}
.y1dd{bottom:547.500000px;}
.y1fc{bottom:547.557580px;}
.yd3{bottom:549.000000px;}
.y1e4{bottom:550.500000px;}
.y24{bottom:552.000000px;}
.y1fb{bottom:552.585000px;}
.y6e{bottom:553.500000px;}
.y1a7{bottom:555.000000px;}
.y8f{bottom:556.500000px;}
.y1fa{bottom:556.545000px;}
.y113{bottom:558.000000px;}
.yab{bottom:559.500000px;}
.y134{bottom:561.000000px;}
.y144{bottom:562.500000px;}
.ye1{bottom:564.000000px;}
.y23{bottom:565.500000px;}
.yaa{bottom:567.000000px;}
.y158{bottom:568.500000px;}
.y1f9{bottom:569.130000px;}
.y150{bottom:570.000000px;}
.y6d{bottom:571.500000px;}
.y8e{bottom:573.000000px;}
.yf4{bottom:574.500000px;}
.y157{bottom:576.000000px;}
.y18c{bottom:577.500000px;}
.y22{bottom:579.000000px;}
.ye0{bottom:580.500000px;}
.ya{bottom:582.000000px;}
.ya9{bottom:585.000000px;}
.y14f{bottom:586.500000px;}
.y6c{bottom:589.500000px;}
.y8d{bottom:591.000000px;}
.y121{bottom:592.500000px;}
.y21{bottom:594.000000px;}
.yc1{bottom:595.500000px;}
.ydf{bottom:597.000000px;}
.y47{bottom:598.500000px;}
.yd2{bottom:601.500000px;}
.ya8{bottom:603.000000px;}
.y14e{bottom:604.500000px;}
.y1e3{bottom:606.000000px;}
.y6b{bottom:607.500000px;}
.y20{bottom:609.000000px;}
.y8c{bottom:610.500000px;}
.y1c0{bottom:612.000000px;}
.yca{bottom:613.500000px;}
.y46{bottom:615.000000px;}
.y164{bottom:616.500000px;}
.ya7{bottom:619.500000px;}
.y1eb{bottom:621.000000px;}
.y6a{bottom:624.000000px;}
.yf3{bottom:625.500000px;}
.y120{bottom:627.000000px;}
.y1f{bottom:628.500000px;}
.y163{bottom:630.000000px;}
.y143{bottom:631.500000px;}
.y45{bottom:633.000000px;}
.y1d0{bottom:636.000000px;}
.ya6{bottom:637.500000px;}
.y14d{bottom:639.000000px;}
.y69{bottom:640.500000px;}
.y162{bottom:642.000000px;}
.yf2{bottom:643.500000px;}
.yc9{bottom:645.000000px;}
.y188{bottom:646.500000px;}
.y44{bottom:648.000000px;}
.yde{bottom:649.500000px;}
.y112{bottom:651.000000px;}
.y8b{bottom:652.500000px;}
.yd1{bottom:654.000000px;}
.ya5{bottom:655.500000px;}
.y1e{bottom:657.000000px;}
.y1ab{bottom:658.500000px;}
.yf1{bottom:660.000000px;}
.y68{bottom:661.500000px;}
.y11f{bottom:663.000000px;}
.y19b{bottom:666.000000px;}
.ydd{bottom:667.500000px;}
.y8a{bottom:669.000000px;}
.y1cf{bottom:670.500000px;}
.yd0{bottom:672.000000px;}
.yc8{bottom:673.500000px;}
.y133{bottom:676.500000px;}
.yf0{bottom:678.000000px;}
.y67{bottom:679.500000px;}
.y11e{bottom:681.000000px;}
.y1bf{bottom:682.500000px;}
.y142{bottom:684.000000px;}
.y1d{bottom:685.500000px;}
.y89{bottom:687.000000px;}
.y132{bottom:688.500000px;}
.y131{bottom:690.000000px;}
.y14c{bottom:691.500000px;}
.y161{bottom:693.000000px;}
.yef{bottom:696.000000px;}
.y66{bottom:697.500000px;}
.y187{bottom:700.500000px;}
.y43{bottom:702.000000px;}
.y111{bottom:703.500000px;}
.y193{bottom:705.000000px;}
.y88{bottom:706.500000px;}
.y1d7{bottom:708.000000px;}
.y1c{bottom:709.500000px;}
.yee{bottom:712.500000px;}
.y65{bottom:714.000000px;}
.y19a{bottom:715.500000px;}
.ya4{bottom:717.000000px;}
.y192{bottom:718.500000px;}
.y110{bottom:720.000000px;}
.y42{bottom:721.500000px;}
.y1ce{bottom:723.000000px;}
.y87{bottom:724.500000px;}
.y1ea{bottom:726.000000px;}
.y130{bottom:727.500000px;}
.yc7{bottom:729.000000px;}
.ya3{bottom:730.500000px;}
.y64{bottom:732.000000px;}
.y11d{bottom:733.500000px;}
.y1e2{bottom:735.000000px;}
.y1c4{bottom:736.500000px;}
.y10f{bottom:738.000000px;}
.y141{bottom:739.500000px;}
.y199{bottom:741.000000px;}
.y86{bottom:742.500000px;}
.y14b{bottom:744.000000px;}
.ydc{bottom:745.500000px;}
.yed{bottom:747.000000px;}
.y1a6{bottom:748.500000px;}
.y63{bottom:750.000000px;}
.y140{bottom:751.500000px;}
.y1e1{bottom:753.000000px;}
.ycf{bottom:754.500000px;}
.ya1{bottom:756.000000px;}
.yc6{bottom:757.500000px;}
.y1dc{bottom:759.000000px;}
.y85{bottom:760.500000px;}
.y1b{bottom:762.000000px;}
.y13f{bottom:763.500000px;}
.yec{bottom:765.000000px;}
.y62{bottom:766.500000px;}
.ya0{bottom:768.000000px;}
.ya2{bottom:769.500000px;}
.y12f{bottom:771.000000px;}
.y175{bottom:772.500000px;}
.y10e{bottom:774.000000px;}
.y1cd{bottom:775.500000px;}
.y13e{bottom:777.000000px;}
.yc0{bottom:778.500000px;}
.ydb{bottom:780.000000px;}
.y186{bottom:781.500000px;}
.yeb{bottom:783.000000px;}
.y61{bottom:784.500000px;}
.yc5{bottom:786.000000px;}
.y1e0{bottom:787.500000px;}
.y13d{bottom:789.000000px;}
.y10d{bottom:790.500000px;}
.y2{bottom:792.000000px;}
.yce{bottom:793.500000px;}
.y84{bottom:795.000000px;}
.y1a{bottom:796.500000px;}
.y9f{bottom:798.000000px;}
.y1a5{bottom:799.500000px;}
.yea{bottom:801.000000px;}
.y60{bottom:802.500000px;}
.y1df{bottom:804.000000px;}
.y10c{bottom:808.500000px;}
.y1cc{bottom:810.000000px;}
.y1bd{bottom:811.500000px;}
.y12e{bottom:813.000000px;}
.y13c{bottom:814.500000px;}
.y1a4{bottom:817.500000px;}
.y5f{bottom:819.000000px;}
.y160{bottom:820.500000px;}
.y19{bottom:822.000000px;}
.y10b{bottom:826.500000px;}
.y1cb{bottom:828.000000px;}
.y12d{bottom:829.500000px;}
.y1bc{bottom:831.000000px;}
.yda{bottom:832.500000px;}
.ycd{bottom:834.000000px;}
.y9e{bottom:835.500000px;}
.y5e{bottom:837.000000px;}
.y1ad{bottom:840.000000px;}
.y10a{bottom:843.000000px;}
.y1{bottom:844.500000px;}
.y12c{bottom:846.000000px;}
.y18{bottom:847.500000px;}
.y13b{bottom:849.000000px;}
.y1b6{bottom:850.500000px;}
.ye9{bottom:852.000000px;}
.y5d{bottom:853.500000px;}
.y15f{bottom:858.000000px;}
.y174{bottom:859.500000px;}
.y109{bottom:861.000000px;}
.y1ca{bottom:862.500000px;}
.y12b{bottom:864.000000px;}
.y83{bottom:865.500000px;}
.y1b5{bottom:868.500000px;}
.y198{bottom:870.000000px;}
.y17{bottom:873.000000px;}
.y82{bottom:883.500000px;}
.h3a{height:23.780313px;}
.h7{height:25.031250px;}
.h3b{height:30.621094px;}
.h21{height:31.031250px;}
.h19{height:31.289062px;}
.h31{height:33.792813px;}
.h2e{height:34.154886px;}
.h26{height:36.281250px;}
.h3e{height:36.509766px;}
.h11{height:37.546875px;}
.h34{height:40.632425px;}
.hc{height:41.220703px;}
.h39{height:41.301562px;}
.h1b{height:42.328125px;}
.h33{height:43.179532px;}
.h1d{height:43.804688px;}
.h2f{height:44.753906px;}
.h45{height:45.932229px;}
.he{height:47.085938px;}
.h5{height:47.109375px;}
.h10{height:48.375000px;}
.h13{height:50.062500px;}
.hd{height:52.971680px;}
.hb{height:52.998047px;}
.hf{height:54.421875px;}
.h3c{height:54.764648px;}
.h3f{height:55.942383px;}
.h8{height:56.320312px;}
.h2c{height:56.531250px;}
.h38{height:56.946094px;}
.h32{height:57.708984px;}
.h9{height:58.857422px;}
.h6{height:58.886719px;}
.h2d{height:62.419922px;}
.h20{height:62.578125px;}
.h3{height:64.743164px;}
.h4{height:64.775391px;}
.h29{height:66.515625px;}
.h37{height:66.958594px;}
.h1e{height:68.835938px;}
.h2a{height:70.664062px;}
.h22{height:75.093750px;}
.h1c{height:76.552734px;}
.h18{height:81.351562px;}
.h24{height:82.441406px;}
.h27{height:94.775391px;}
.h2{height:100.125000px;}
.h1a{height:100.998047px;}
.h12{height:106.998047px;}
.h28{height:112.640625px;}
.ha{height:120.937500px;}
.h43{height:131.414062px;}
.h1f{height:136.775391px;}
.h44{height:143.929688px;}
.h35{height:157.697501px;}
.h36{height:172.715625px;}
.h14{height:175.218750px;}
.h40{height:200.250000px;}
.h1{height:211.640625px;}
.h23{height:212.765625px;}
.h3d{height:250.312500px;}
.h15{height:256.570312px;}
.h41{height:331.664062px;}
.h25{height:362.953125px;}
.h16{height:625.781250px;}
.h2b{height:654.000000px;}
.h30{height:655.500000px;}
.h42{height:782.226562px;}
.h0{height:925.500000px;}
.h17{height:1170.210938px;}
.w0{width:654.000000px;}
.w1{width:655.500000px;}
.w2{width:925.500000px;}
.x0{left:0.000000px;}
.x16d{left:42.000000px;}
.x168{left:48.000000px;}
.x16b{left:49.500000px;}
.x164{left:51.000000px;}
.x16f{left:52.500000px;}
.x165{left:54.000000px;}
.x163{left:55.500000px;}
.x162{left:57.000000px;}
.x15c{left:58.500000px;}
.x15d{left:60.000000px;}
.x10c{left:61.500000px;}
.x11c{left:63.000000px;}
.x12e{left:64.500000px;}
.x139{left:66.000000px;}
.x147{left:67.500000px;}
.x17{left:69.000000px;}
.x151{left:70.500000px;}
.x152{left:72.000000px;}
.x155{left:73.500000px;}
.x4a{left:75.000000px;}
.x60{left:76.500000px;}
.x65{left:78.000000px;}
.x9a{left:79.500000px;}
.xcb{left:81.000000px;}
.xeb{left:82.500000px;}
.x15b{left:84.000000px;}
.x10d{left:85.500000px;}
.x11e{left:87.000000px;}
.x12d{left:88.500000px;}
.x130{left:90.000000px;}
.x12f{left:91.500000px;}
.x3c{left:93.000000px;}
.xd7{left:94.500000px;}
.x63{left:96.000000px;}
.x83{left:97.500000px;}
.xab{left:99.000000px;}
.xcd{left:100.500000px;}
.x4d{left:102.000000px;}
.xdc{left:103.500000px;}
.xe4{left:105.000000px;}
.xf5{left:106.500000px;}
.xfe{left:108.000000px;}
.xe2{left:109.500000px;}
.xea{left:111.000000px;}
.x142{left:112.500000px;}
.x1{left:114.000000px;}
.x67{left:115.500000px;}
.x5b{left:117.000000px;}
.xb3{left:118.500000px;}
.xd2{left:120.000000px;}
.x117{left:121.500000px;}
.xe7{left:123.000000px;}
.x12b{left:124.500000px;}
.x13c{left:126.000000px;}
.xdd{left:127.500000px;}
.xe5{left:129.000000px;}
.xa5{left:130.500000px;}
.x8e{left:132.000000px;}
.x104{left:133.500000px;}
.xaf{left:135.000000px;}
.xc3{left:136.500000px;}
.x127{left:138.000000px;}
.x92{left:139.500000px;}
.xfb{left:141.000000px;}
.xaa{left:142.500000px;}
.x4e{left:144.000000px;}
.x6b{left:145.500000px;}
.x15a{left:147.000000px;}
.x37{left:148.500000px;}
.x149{left:150.000000px;}
.x121{left:151.500000px;}
.x2e{left:153.000000px;}
.x89{left:154.500000px;}
.x9b{left:156.000000px;}
.x4b{left:157.500000px;}
.xc2{left:159.000000px;}
.x150{left:160.500000px;}
.xb4{left:162.000000px;}
.x2a{left:163.500000px;}
.xbc{left:165.000000px;}
.x34{left:166.500000px;}
.x28{left:168.000000px;}
.xa6{left:169.500000px;}
.xca{left:171.000000px;}
.x109{left:172.500000px;}
.x14b{left:174.000000px;}
.x5{left:175.500000px;}
.x18{left:177.000000px;}
.x125{left:178.500000px;}
.x47{left:180.000000px;}
.x66{left:181.500000px;}
.xec{left:183.000000px;}
.x2{left:184.500000px;}
.x112{left:186.000000px;}
.x7d{left:187.500000px;}
.x42{left:189.000000px;}
.x25{left:190.500000px;}
.xcc{left:192.000000px;}
.xb5{left:193.500000px;}
.x93{left:195.000000px;}
.x31{left:196.500000px;}
.x2d{left:198.000000px;}
.x2f{left:199.500000px;}
.x5c{left:201.000000px;}
.x118{left:202.500000px;}
.x131{left:204.000000px;}
.x9c{left:205.500000px;}
.xf4{left:207.000000px;}
.x7e{left:208.500000px;}
.x11d{left:210.000000px;}
.x2b{left:211.500000px;}
.x6{left:213.000000px;}
.x6c{left:214.500000px;}
.x35{left:216.000000px;}
.x72{left:217.500000px;}
.xa7{left:219.000000px;}
.xf9{left:220.500000px;}
.x5d{left:222.000000px;}
.xb9{left:223.500000px;}
.x12{left:225.000000px;}
.x23{left:226.500000px;}
.x43{left:228.000000px;}
.x136{left:229.500000px;}
.x111{left:231.000000px;}
.xb{left:232.500000px;}
.x4f{left:234.000000px;}
.x48{left:235.500000px;}
.x84{left:237.000000px;}
.xd8{left:238.500000px;}
.x94{left:240.000000px;}
.xbf{left:241.500000px;}
.x124{left:243.000000px;}
.x29{left:244.500000px;}
.xe3{left:246.000000px;}
.xe8{left:247.500000px;}
.x19{left:249.000000px;}
.x32{left:250.500000px;}
.x154{left:252.000000px;}
.x73{left:253.500000px;}
.x107{left:255.000000px;}
.x9d{left:256.500000px;}
.x10{left:258.000000px;}
.x6d{left:259.500000px;}
.x58{left:261.000000px;}
.xa{left:262.500000px;}
.x114{left:264.000000px;}
.xbd{left:265.500000px;}
.xc{left:267.000000px;}
.x1a{left:268.500000px;}
.xff{left:270.000000px;}
.xc5{left:271.500000px;}
.x26{left:273.000000px;}
.x13e{left:274.500000px;}
.x4{left:276.000000px;}
.xa3{left:277.500000px;}
.x68{left:279.000000px;}
.x6e{left:280.500000px;}
.x38{left:282.000000px;}
.x1b{left:283.500000px;}
.x13{left:285.000000px;}
.x140{left:286.500000px;}
.x7{left:288.000000px;}
.x10e{left:289.500000px;}
.x10a{left:291.000000px;}
.x13d{left:292.500000px;}
.x36{left:294.000000px;}
.xba{left:295.500000px;}
.x3d{left:297.000000px;}
.x6f{left:298.500000px;}
.x1c{left:300.000000px;}
.xc0{left:301.500000px;}
.xce{left:303.000000px;}
.x50{left:304.500000px;}
.x137{left:306.000000px;}
.x24{left:307.500000px;}
.x14e{left:309.000000px;}
.x44{left:310.500000px;}
.x11{left:312.000000px;}
.x14f{left:313.500000px;}
.x85{left:315.000000px;}
.x8{left:316.500000px;}
.xe{left:318.000000px;}
.xae{left:319.500000px;}
.xf6{left:321.000000px;}
.x3e{left:322.500000px;}
.x90{left:324.000000px;}
.x33{left:325.500000px;}
.x74{left:327.000000px;}
.xe1{left:328.500000px;}
.x14{left:330.000000px;}
.x9e{left:331.500000px;}
.x45{left:333.000000px;}
.x101{left:334.500000px;}
.x59{left:336.000000px;}
.xf{left:337.500000px;}
.x5e{left:339.000000px;}
.x51{left:340.500000px;}
.xd{left:342.000000px;}
.x49{left:343.500000px;}
.x143{left:345.000000px;}
.x95{left:346.500000px;}
.x4c{left:348.000000px;}
.x30{left:349.500000px;}
.x15{left:351.000000px;}
.x3{left:352.500000px;}
.x2c{left:354.000000px;}
.xb6{left:355.500000px;}
.x10f{left:357.000000px;}
.x1d{left:358.500000px;}
.xf1{left:360.000000px;}
.x27{left:361.500000px;}
.x5a{left:363.000000px;}
.x69{left:364.500000px;}
.xc6{left:366.000000px;}
.xd4{left:367.500000px;}
.x16{left:369.000000px;}
.x46{left:370.500000px;}
.xc4{left:372.000000px;}
.x86{left:373.500000px;}
.x9{left:375.000000px;}
.x39{left:376.500000px;}
.x9f{left:378.000000px;}
.x1e{left:379.500000px;}
.x79{left:381.000000px;}
.x52{left:382.500000px;}
.x10b{left:384.000000px;}
.x75{left:385.500000px;}
.x132{left:387.000000px;}
.x156{left:388.500000px;}
.x11b{left:390.000000px;}
.xc7{left:391.500000px;}
.x14d{left:393.000000px;}
.xb0{left:394.500000px;}
.x7f{left:396.000000px;}
.x8a{left:397.500000px;}
.x100{left:399.000000px;}
.x53{left:400.500000px;}
.x7a{left:402.000000px;}
.xbb{left:403.500000px;}
.xed{left:405.000000px;}
.x3a{left:406.500000px;}
.x11f{left:408.000000px;}
.x148{left:409.500000px;}
.x14c{left:411.000000px;}
.x13b{left:412.500000px;}
.x1f{left:414.000000px;}
.x8b{left:415.500000px;}
.x80{left:417.000000px;}
.xbe{left:418.500000px;}
.xcf{left:420.000000px;}
.x54{left:421.500000px;}
.x91{left:423.000000px;}
.x98{left:424.500000px;}
.xd9{left:426.000000px;}
.xb7{left:427.500000px;}
.xc8{left:429.000000px;}
.x122{left:430.500000px;}
.x3f{left:432.000000px;}
.x70{left:433.500000px;}
.x3b{left:435.000000px;}
.xfd{left:436.500000px;}
.x96{left:438.000000px;}
.xa0{left:439.500000px;}
.xd5{left:441.000000px;}
.x76{left:442.500000px;}
.x8c{left:444.000000px;}
.x113{left:445.500000px;}
.x115{left:447.000000px;}
.x7b{left:448.500000px;}
.xb1{left:450.000000px;}
.x128{left:451.500000px;}
.xe6{left:453.000000px;}
.x120{left:454.500000px;}
.x157{left:456.000000px;}
.xac{left:457.500000px;}
.x6a{left:459.000000px;}
.x55{left:460.500000px;}
.x40{left:462.000000px;}
.xda{left:463.500000px;}
.x5f{left:465.000000px;}
.x97{left:466.500000px;}
.x20{left:468.000000px;}
.xb8{left:469.500000px;}
.x7c{left:471.000000px;}
.x102{left:472.500000px;}
.x133{left:474.000000px;}
.x12c{left:475.500000px;}
.xde{left:477.000000px;}
.x56{left:478.500000px;}
.xc1{left:480.000000px;}
.x87{left:481.500000px;}
.x21{left:483.000000px;}
.x116{left:484.500000px;}
.x81{left:486.000000px;}
.xdb{left:487.500000px;}
.x13a{left:489.000000px;}
.xad{left:490.500000px;}
.x61{left:492.000000px;}
.x123{left:493.500000px;}
.x105{left:495.000000px;}
.xd0{left:496.500000px;}
.x41{left:498.000000px;}
.xc9{left:499.500000px;}
.xfc{left:501.000000px;}
.x110{left:502.500000px;}
.x88{left:504.000000px;}
.x119{left:505.500000px;}
.x82{left:507.000000px;}
.x57{left:508.500000px;}
.xee{left:510.000000px;}
.xb2{left:511.500000px;}
.xa1{left:513.000000px;}
.x134{left:514.500000px;}
.x106{left:516.000000px;}
.xd1{left:517.500000px;}
.x11a{left:519.000000px;}
.x77{left:520.500000px;}
.x141{left:522.000000px;}
.x22{left:523.500000px;}
.xa8{left:525.000000px;}
.x99{left:526.500000px;}
.xd3{left:528.000000px;}
.xf7{left:529.500000px;}
.x8f{left:531.000000px;}
.x126{left:532.500000px;}
.x78{left:534.901800px;}
.xa9{left:536.255625px;}
.xa2{left:537.367500px;}
.xd6{left:538.741905px;}
.x62{left:540.000000px;}
.x108{left:541.500000px;}
.x145{left:543.000000px;}
.x129{left:544.500000px;}
.xef{left:546.000000px;}
.xe9{left:547.500000px;}
.x12a{left:549.000000px;}
.xf2{left:550.500000px;}
.x144{left:552.000000px;}
.x146{left:553.500000px;}
.x138{left:555.000000px;}
.xdf{left:556.500000px;}
.x8d{left:558.000000px;}
.xa4{left:559.500000px;}
.xf3{left:561.000000px;}
.x135{left:562.330860px;}
.x71{left:564.000000px;}
.x14a{left:565.883040px;}
.xfa{left:567.000000px;}
.x153{left:568.963290px;}
.x64{left:570.000000px;}
.x158{left:571.180860px;}
.x159{left:572.318310px;}
.x13f{left:573.573210px;}
.xe0{left:575.475000px;}
.xf0{left:577.337460px;}
.xf8{left:578.376420px;}
.x103{left:579.675000px;}
.x15e{left:580.835625px;}
.x167{left:582.000000px;}
.x15f{left:585.886065px;}
.x161{left:587.718510px;}
.x160{left:588.886065px;}
.x169{left:591.000000px;}
.x170{left:640.500000px;}
.x16c{left:657.000000px;}
.x16e{left:711.285000px;}
.x16a{left:736.500000px;}
.x166{left:873.000000px;}
@media print{
.v2{vertical-align:-26.666667pt;}
.v8{vertical-align:-24.320000pt;}
.v3{vertical-align:-5.333333pt;}
.v9{vertical-align:-3.840000pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:5.333333pt;}
.v7{vertical-align:26.666667pt;}
.v4{vertical-align:42.666667pt;}
.v1{vertical-align:48.000000pt;}
.v5{vertical-align:64.000000pt;}
.lsc{letter-spacing:-4.704019pt;}
.ls14{letter-spacing:-1.773333pt;}
.ls12{letter-spacing:-1.736000pt;}
.ls10{letter-spacing:-1.680000pt;}
.lsd{letter-spacing:-1.232000pt;}
.ls0{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.600000pt;}
.lsb{letter-spacing:1.440027pt;}
.ls8{letter-spacing:2.083840pt;}
.ls5{letter-spacing:2.129920pt;}
.lsf{letter-spacing:2.400000pt;}
.ls13{letter-spacing:2.406667pt;}
.ls11{letter-spacing:2.480000pt;}
.ls9{letter-spacing:2.826667pt;}
.lsa{letter-spacing:3.888000pt;}
.ls2{letter-spacing:21.024000pt;}
.ls6{letter-spacing:30.346667pt;}
.ls7{letter-spacing:40.000000pt;}
.ls4{letter-spacing:68.740741pt;}
.ls1{letter-spacing:104.296296pt;}
.ls3{letter-spacing:178.666667pt;}
.ws34{word-spacing:-277.258667pt;}
.ws77{word-spacing:-110.226963pt;}
.wsc6{word-spacing:-74.671407pt;}
.ws32{word-spacing:-60.789333pt;}
.ws74{word-spacing:-50.410667pt;}
.ws13{word-spacing:-14.666667pt;}
.ws87{word-spacing:-13.333333pt;}
.wsc{word-spacing:-12.000000pt;}
.wsb1{word-spacing:-3.277315pt;}
.wsb4{word-spacing:-3.263789pt;}
.ws3f{word-spacing:-3.150295pt;}
.ws9c{word-spacing:-3.012268pt;}
.ws9e{word-spacing:-2.911686pt;}
.ws72{word-spacing:-2.891922pt;}
.wsa0{word-spacing:-2.713601pt;}
.ws2e{word-spacing:-2.655647pt;}
.ws46{word-spacing:-2.617252pt;}
.ws10{word-spacing:-2.525228pt;}
.wsd3{word-spacing:-2.514561pt;}
.wsaf{word-spacing:-2.469124pt;}
.ws80{word-spacing:-2.346667pt;}
.ws1c{word-spacing:-2.292575pt;}
.ws47{word-spacing:-2.178452pt;}
.wsaa{word-spacing:-2.153829pt;}
.wsdf{word-spacing:-2.133568pt;}
.wsa1{word-spacing:-2.113280pt;}
.wsa9{word-spacing:-2.064002pt;}
.wsd8{word-spacing:-1.963806pt;}
.wsc3{word-spacing:-1.810667pt;}
.wsda{word-spacing:-1.789936pt;}
.ws3b{word-spacing:-1.751891pt;}
.ws3e{word-spacing:-1.679789pt;}
.ws39{word-spacing:-1.518104pt;}
.wsc2{word-spacing:-1.467084pt;}
.wsba{word-spacing:-1.433602pt;}
.wse0{word-spacing:-1.252268pt;}
.wsad{word-spacing:-1.221713pt;}
.ws92{word-spacing:-1.108849pt;}
.ws2c{word-spacing:-1.090116pt;}
.ws79{word-spacing:-1.051692pt;}
.ws71{word-spacing:-1.037450pt;}
.ws22{word-spacing:-0.826140pt;}
.wsa4{word-spacing:-0.801708pt;}
.ws43{word-spacing:-0.798653pt;}
.wsa7{word-spacing:-0.705631pt;}
.wse1{word-spacing:-0.503631pt;}
.wsb{word-spacing:-0.424982pt;}
.ws7c{word-spacing:-0.380525pt;}
.ws20{word-spacing:-0.315369pt;}
.wsbe{word-spacing:-0.293554pt;}
.wse5{word-spacing:-0.234887pt;}
.wsb9{word-spacing:-0.206771pt;}
.wse9{word-spacing:-0.138612pt;}
.ws0{word-spacing:0.000000pt;}
.ws5a{word-spacing:0.008018pt;}
.wse3{word-spacing:0.298268pt;}
.wse8{word-spacing:0.460585pt;}
.wsd9{word-spacing:0.532308pt;}
.ws4b{word-spacing:0.668082pt;}
.wsd2{word-spacing:0.901289pt;}
.ws17{word-spacing:1.017281pt;}
.ws61{word-spacing:1.775359pt;}
.ws49{word-spacing:2.151124pt;}
.ws66{word-spacing:2.152721pt;}
.ws48{word-spacing:2.239203pt;}
.wsea{word-spacing:2.363545pt;}
.ws7b{word-spacing:2.402213pt;}
.ws38{word-spacing:2.459193pt;}
.ws18{word-spacing:2.499810pt;}
.wsb6{word-spacing:2.666667pt;}
.wsc0{word-spacing:2.754444pt;}
.ws7f{word-spacing:2.911297pt;}
.wscb{word-spacing:3.178025pt;}
.ws2f{word-spacing:3.234685pt;}
.wse4{word-spacing:3.257569pt;}
.wsdb{word-spacing:3.285333pt;}
.ws44{word-spacing:3.366311pt;}
.ws8{word-spacing:3.427702pt;}
.ws65{word-spacing:3.524131pt;}
.wsc9{word-spacing:3.524935pt;}
.wsa5{word-spacing:3.620889pt;}
.wsb2{word-spacing:3.635773pt;}
.ws4e{word-spacing:3.702083pt;}
.ws41{word-spacing:3.746334pt;}
.wsc8{word-spacing:3.915019pt;}
.ws3a{word-spacing:4.000000pt;}
.ws6a{word-spacing:4.010176pt;}
.ws23{word-spacing:4.026667pt;}
.wsdc{word-spacing:4.076723pt;}
.ws3d{word-spacing:4.365703pt;}
.ws3c{word-spacing:4.398720pt;}
.ws86{word-spacing:4.426667pt;}
.ws5b{word-spacing:4.498645pt;}
.wsae{word-spacing:4.580492pt;}
.ws15{word-spacing:4.618667pt;}
.ws27{word-spacing:4.868363pt;}
.ws4c{word-spacing:4.919782pt;}
.wse7{word-spacing:4.935229pt;}
.wsce{word-spacing:5.044916pt;}
.ws51{word-spacing:5.174211pt;}
.wsca{word-spacing:5.453975pt;}
.ws56{word-spacing:5.744527pt;}
.ws6c{word-spacing:5.852458pt;}
.ws4a{word-spacing:5.895466pt;}
.wsdd{word-spacing:6.012799pt;}
.ws8a{word-spacing:6.240000pt;}
.ws5d{word-spacing:6.264319pt;}
.wsd4{word-spacing:6.278184pt;}
.wsb7{word-spacing:6.643124pt;}
.wsd1{word-spacing:6.661598pt;}
.ws97{word-spacing:6.666667pt;}
.wscf{word-spacing:6.735069pt;}
.ws1f{word-spacing:6.751510pt;}
.wsb8{word-spacing:6.798754pt;}
.wscc{word-spacing:6.911184pt;}
.wsb0{word-spacing:7.031667pt;}
.ws59{word-spacing:7.340826pt;}
.wsde{word-spacing:7.798576pt;}
.ws50{word-spacing:7.906986pt;}
.ws82{word-spacing:8.000000pt;}
.ws40{word-spacing:8.026211pt;}
.ws1a{word-spacing:8.271582pt;}
.wse{word-spacing:8.296319pt;}
.ws45{word-spacing:8.318807pt;}
.ws12{word-spacing:8.464000pt;}
.wsb5{word-spacing:8.618667pt;}
.ws14{word-spacing:8.773333pt;}
.wsab{word-spacing:8.971193pt;}
.wsd0{word-spacing:9.024000pt;}
.ws7d{word-spacing:9.171483pt;}
.ws16{word-spacing:9.171582pt;}
.ws30{word-spacing:9.333333pt;}
.ws93{word-spacing:9.344000pt;}
.ws28{word-spacing:9.360000pt;}
.wsd7{word-spacing:9.487525pt;}
.wsa8{word-spacing:9.746685pt;}
.wsb3{word-spacing:9.791563pt;}
.ws19{word-spacing:9.952000pt;}
.ws62{word-spacing:10.202667pt;}
.ws4f{word-spacing:10.666667pt;}
.wscd{word-spacing:10.753279pt;}
.ws88{word-spacing:10.986667pt;}
.wsa{word-spacing:11.008264pt;}
.wsd5{word-spacing:11.092492pt;}
.ws11{word-spacing:11.130667pt;}
.ws58{word-spacing:11.371086pt;}
.ws1d{word-spacing:11.440000pt;}
.ws81{word-spacing:11.573333pt;}
.ws9b{word-spacing:11.904000pt;}
.ws9{word-spacing:12.000000pt;}
.ws96{word-spacing:12.010667pt;}
.wsbd{word-spacing:12.309333pt;}
.wsac{word-spacing:12.772859pt;}
.ws31{word-spacing:12.869333pt;}
.ws83{word-spacing:13.333333pt;}
.ws64{word-spacing:13.386667pt;}
.wse6{word-spacing:13.543667pt;}
.ws84{word-spacing:13.973333pt;}
.ws94{word-spacing:14.650667pt;}
.ws7{word-spacing:14.656000pt;}
.ws2d{word-spacing:14.666667pt;}
.ws85{word-spacing:15.093333pt;}
.ws1e{word-spacing:15.285333pt;}
.ws7e{word-spacing:15.536000pt;}
.ws1b{word-spacing:15.594667pt;}
.ws5{word-spacing:15.680000pt;}
.wsbc{word-spacing:15.845333pt;}
.wsd6{word-spacing:15.904000pt;}
.ws52{word-spacing:17.082667pt;}
.wseb{word-spacing:17.354667pt;}
.wsbf{word-spacing:18.489869pt;}
.ws7a{word-spacing:18.666667pt;}
.ws9a{word-spacing:19.120353pt;}
.ws89{word-spacing:19.253333pt;}
.ws4d{word-spacing:20.000000pt;}
.ws42{word-spacing:20.618667pt;}
.ws9d{word-spacing:20.928000pt;}
.ws63{word-spacing:21.013333pt;}
.wsa3{word-spacing:21.488000pt;}
.wsa6{word-spacing:21.797333pt;}
.wsd{word-spacing:22.666667pt;}
.ws3{word-spacing:23.333333pt;}
.wsbb{word-spacing:23.845333pt;}
.ws1{word-spacing:24.639737pt;}
.ws33{word-spacing:25.749333pt;}
.ws6b{word-spacing:25.952000pt;}
.ws21{word-spacing:27.749333pt;}
.wsf{word-spacing:28.432369pt;}
.wsc1{word-spacing:30.728192pt;}
.ws99{word-spacing:30.865014pt;}
.ws9f{word-spacing:33.493333pt;}
.wsc4{word-spacing:34.512000pt;}
.ws75{word-spacing:34.929778pt;}
.ws68{word-spacing:38.507840pt;}
.ws55{word-spacing:38.688000pt;}
.ws98{word-spacing:39.851852pt;}
.ws2{word-spacing:43.243917pt;}
.ws67{word-spacing:43.535018pt;}
.wse2{word-spacing:48.464000pt;}
.ws6{word-spacing:57.446760pt;}
.ws35{word-spacing:57.749333pt;}
.ws4{word-spacing:62.194167pt;}
.wsc7{word-spacing:62.810074pt;}
.ws26{word-spacing:77.032296pt;}
.ws2b{word-spacing:79.402667pt;}
.ws29{word-spacing:97.226667pt;}
.ws54{word-spacing:98.365630pt;}
.ws69{word-spacing:101.440000pt;}
.ws6e{word-spacing:127.946667pt;}
.ws60{word-spacing:136.594682pt;}
.ws2a{word-spacing:152.000000pt;}
.wsc5{word-spacing:166.666667pt;}
.ws25{word-spacing:169.711934pt;}
.ws24{word-spacing:176.296296pt;}
.ws37{word-spacing:181.488727pt;}
.ws90{word-spacing:187.168093pt;}
.ws70{word-spacing:193.204063pt;}
.ws36{word-spacing:193.333333pt;}
.wsa2{word-spacing:197.248000pt;}
.ws5c{word-spacing:222.386831pt;}
.ws53{word-spacing:228.971193pt;}
.ws5f{word-spacing:229.341452pt;}
.ws76{word-spacing:230.820056pt;}
.ws57{word-spacing:235.555556pt;}
.ws73{word-spacing:236.000000pt;}
.ws6f{word-spacing:248.855237pt;}
.ws8f{word-spacing:295.851852pt;}
.ws91{word-spacing:305.333333pt;}
.ws8d{word-spacing:350.208000pt;}
.ws5e{word-spacing:361.840232pt;}
.ws8e{word-spacing:371.541333pt;}
.ws95{word-spacing:390.666667pt;}
.ws78{word-spacing:408.333333pt;}
.ws6d{word-spacing:854.603725pt;}
.ws8b{word-spacing:1209.693320pt;}
.ws8c{word-spacing:1880.224834pt;}
._15{margin-left:-283.776000pt;}
._14{margin-left:-214.442667pt;}
._12{margin-left:-165.797333pt;}
._1d{margin-left:-104.296296pt;}
._25{margin-left:-68.740741pt;}
._29{margin-left:-58.429867pt;}
._2c{margin-left:-52.953897pt;}
._22{margin-left:-15.329095pt;}
._26{margin-left:-10.263470pt;}
._9{margin-left:-7.684434pt;}
._1c{margin-left:-6.117201pt;}
._7{margin-left:-4.150803pt;}
._2{margin-left:-2.947379pt;}
._10{margin-left:-1.728259pt;}
._1{width:1.591837pt;}
._5{width:2.523513pt;}
._f{width:3.816104pt;}
._e{width:4.844335pt;}
._11{width:6.184327pt;}
._6{width:7.661972pt;}
._3{width:9.531896pt;}
._8{width:11.083048pt;}
._27{width:12.052480pt;}
._24{width:14.928212pt;}
._a{width:17.125860pt;}
._b{width:19.402789pt;}
._20{width:21.664000pt;}
._4{width:24.618667pt;}
._1f{width:26.976000pt;}
._23{width:28.773333pt;}
._19{width:32.000000pt;}
._17{width:34.666667pt;}
._16{width:36.000000pt;}
._0{width:38.333333pt;}
._21{width:40.088217pt;}
._2b{width:56.217600pt;}
._c{width:85.333333pt;}
._18{width:106.666667pt;}
._28{width:146.339970pt;}
._1b{width:174.390015pt;}
._d{width:188.296296pt;}
._13{width:206.176000pt;}
._2a{width:209.436351pt;}
._1e{width:247.555556pt;}
._1a{width:378.759338pt;}
._2d{width:418.079600pt;}
.fs25{font-size:20.267200pt;}
.fs22{font-size:20.800533pt;}
.fs5{font-size:21.333333pt;}
.fs10{font-size:26.666667pt;}
.fs26{font-size:27.733333pt;}
.fs1c{font-size:28.800533pt;}
.fs1a{font-size:30.933867pt;}
.fs9{font-size:32.000000pt;}
.fs29{font-size:33.066667pt;}
.fs31{font-size:34.133867pt;}
.fs24{font-size:35.200000pt;}
.fs1e{font-size:36.800533pt;}
.fs8{font-size:37.333333pt;}
.fs1b{font-size:40.533333pt;}
.fs30{font-size:41.600533pt;}
.fs3{font-size:42.666667pt;}
.fs18{font-size:45.866667pt;}
.fs6{font-size:48.000000pt;}
.fs23{font-size:48.533333pt;}
.fs17{font-size:49.066667pt;}
.fs27{font-size:49.600000pt;}
.fs2a{font-size:50.666667pt;}
.fs16{font-size:51.200000pt;}
.fs1d{font-size:52.266667pt;}
.fs4{font-size:53.333333pt;}
.fs19{font-size:56.533333pt;}
.fs21{font-size:57.066667pt;}
.fs2{font-size:58.666667pt;}
.fs11{font-size:64.000000pt;}
.fsf{font-size:69.333333pt;}
.fs13{font-size:74.666667pt;}
.fs1{font-size:85.333333pt;}
.fs15{font-size:96.000000pt;}
.fs7{font-size:106.666667pt;}
.fs2e{font-size:112.000000pt;}
.fs2f{font-size:122.666667pt;}
.fs1f{font-size:134.400533pt;}
.fs20{font-size:147.200000pt;}
.fsa{font-size:149.333333pt;}
.fs2b{font-size:170.666667pt;}
.fs12{font-size:181.333333pt;}
.fs0{font-size:186.666667pt;}
.fs28{font-size:213.333333pt;}
.fsb{font-size:218.666667pt;}
.fs2c{font-size:282.666667pt;}
.fs14{font-size:309.333333pt;}
.fse{font-size:314.666667pt;}
.fsc{font-size:533.333333pt;}
.fs2d{font-size:666.666667pt;}
.fsd{font-size:997.333333pt;}
.y0{bottom:0.000000pt;}
.y1f4{bottom:20.133333pt;}
.y1db{bottom:44.000000pt;}
.y1e9{bottom:46.666667pt;}
.y1f0{bottom:48.000000pt;}
.y1c9{bottom:49.333333pt;}
.y216{bottom:50.666667pt;}
.yd9{bottom:52.000000pt;}
.ybf{bottom:53.333333pt;}
.y1ed{bottom:54.666667pt;}
.y15e{bottom:56.000000pt;}
.y1f2{bottom:56.946667pt;}
.ycc{bottom:57.333333pt;}
.y108{bottom:60.000000pt;}
.y12a{bottom:61.333333pt;}
.y1d6{bottom:62.666667pt;}
.y1b4{bottom:64.000000pt;}
.y1aa{bottom:65.333333pt;}
.y11c{bottom:66.666667pt;}
.y183{bottom:68.000000pt;}
.y9{bottom:69.333333pt;}
.y156{bottom:72.000000pt;}
.y218{bottom:72.946667pt;}
.y18b{bottom:73.333333pt;}
.y20a{bottom:74.226667pt;}
.y173{bottom:74.666667pt;}
.y211{bottom:76.000000pt;}
.y210{bottom:76.773333pt;}
.y81{bottom:77.333333pt;}
.y214{bottom:77.746667pt;}
.y1e8{bottom:78.666667pt;}
.y1c8{bottom:80.000000pt;}
.y197{bottom:81.333333pt;}
.yd8{bottom:82.666667pt;}
.y5c{bottom:84.000000pt;}
.y20f{bottom:85.333333pt;}
.y1f1{bottom:85.746667pt;}
.y41{bottom:86.666667pt;}
.y1ef{bottom:87.306667pt;}
.y212{bottom:88.000000pt;}
.y107{bottom:89.333333pt;}
.y8{bottom:90.666667pt;}
.y16{bottom:92.000000pt;}
.y1d5{bottom:93.333333pt;}
.y1b3{bottom:94.666667pt;}
.y1a9{bottom:96.000000pt;}
.yd7{bottom:97.333333pt;}
.y40{bottom:98.666667pt;}
.ybe{bottom:100.000000pt;}
.y106{bottom:101.333333pt;}
.y129{bottom:102.666667pt;}
.y1bb{bottom:104.000000pt;}
.y155{bottom:105.333333pt;}
.y172{bottom:106.666667pt;}
.y80{bottom:108.000000pt;}
.y1d4{bottom:109.333333pt;}
.y1b2{bottom:110.666667pt;}
.y3f{bottom:112.000000pt;}
.y11b{bottom:113.333333pt;}
.y7{bottom:114.666667pt;}
.y15{bottom:116.000000pt;}
.y20e{bottom:117.333333pt;}
.y213{bottom:118.053333pt;}
.y4{bottom:118.666667pt;}
.y217{bottom:119.973333pt;}
.y182{bottom:120.000000pt;}
.y20d{bottom:121.333333pt;}
.y171{bottom:122.666667pt;}
.y20b{bottom:123.813333pt;}
.y3e{bottom:124.000000pt;}
.y128{bottom:125.333333pt;}
.y5b{bottom:129.333333pt;}
.y9d{bottom:130.666667pt;}
.y181{bottom:132.000000pt;}
.y20c{bottom:132.773333pt;}
.y14{bottom:133.333333pt;}
.y1f3{bottom:134.053333pt;}
.yc4{bottom:134.666667pt;}
.y6{bottom:136.000000pt;}
.y170{bottom:137.333333pt;}
.y7f{bottom:138.666667pt;}
.y1d3{bottom:140.000000pt;}
.y3{bottom:141.333333pt;}
.y3d{bottom:142.666667pt;}
.y5a{bottom:145.333333pt;}
.y154{bottom:146.666667pt;}
.ybd{bottom:148.000000pt;}
.y1c3{bottom:149.333333pt;}
.y127{bottom:150.666667pt;}
.y105{bottom:152.000000pt;}
.y17d{bottom:153.333333pt;}
.y7e{bottom:154.666667pt;}
.y16f{bottom:156.000000pt;}
.y1e7{bottom:157.333333pt;}
.y153{bottom:158.666667pt;}
.y59{bottom:160.000000pt;}
.y1a3{bottom:162.666667pt;}
.y104{bottom:164.000000pt;}
.y126{bottom:165.333333pt;}
.y13a{bottom:166.666667pt;}
.y3c{bottom:168.000000pt;}
.y7d{bottom:169.333333pt;}
.y9b{bottom:170.666667pt;}
.y16e{bottom:172.000000pt;}
.y1e6{bottom:173.333333pt;}
.y103{bottom:174.666667pt;}
.yd6{bottom:176.000000pt;}
.y58{bottom:177.333333pt;}
.y1a2{bottom:178.666667pt;}
.y3b{bottom:181.333333pt;}
.ybc{bottom:182.666667pt;}
.ye8{bottom:184.000000pt;}
.y7c{bottom:185.333333pt;}
.y102{bottom:186.666667pt;}
.y16d{bottom:188.000000pt;}
.y1b1{bottom:189.333333pt;}
.y196{bottom:190.666667pt;}
.y57{bottom:192.000000pt;}
.y3a{bottom:193.333333pt;}
.y15d{bottom:194.666667pt;}
.y11a{bottom:196.000000pt;}
.ycb{bottom:197.333333pt;}
.ybb{bottom:198.666667pt;}
.y1ac{bottom:200.000000pt;}
.y1c7{bottom:201.333333pt;}
.y16c{bottom:202.666667pt;}
.y9a{bottom:204.000000pt;}
.y39{bottom:205.333333pt;}
.yd5{bottom:206.666667pt;}
.y56{bottom:208.000000pt;}
.y101{bottom:209.333333pt;}
.y1d2{bottom:210.666667pt;}
.y139{bottom:212.000000pt;}
.yba{bottom:213.333333pt;}
.y13{bottom:214.666667pt;}
.y9c{bottom:216.000000pt;}
.y7b{bottom:217.333333pt;}
.y38{bottom:218.666667pt;}
.y100{bottom:220.000000pt;}
.y1e5{bottom:221.333333pt;}
.y55{bottom:222.666667pt;}
.y200{bottom:223.666667pt;}
.y185{bottom:225.333333pt;}
.y138{bottom:228.000000pt;}
.yb9{bottom:229.333333pt;}
.y1ff{bottom:229.746667pt;}
.y119{bottom:230.666667pt;}
.y37{bottom:232.000000pt;}
.y16b{bottom:233.333333pt;}
.y1da{bottom:234.666667pt;}
.y1b0{bottom:236.000000pt;}
.y195{bottom:237.333333pt;}
.y54{bottom:238.666667pt;}
.y17c{bottom:240.000000pt;}
.ye7{bottom:241.333333pt;}
.yff{bottom:242.666667pt;}
.y36{bottom:244.000000pt;}
.y1fe{bottom:244.786667pt;}
.y125{bottom:245.333333pt;}
.yb8{bottom:246.666667pt;}
.y16a{bottom:249.333333pt;}
.y12{bottom:250.666667pt;}
.y180{bottom:252.000000pt;}
.y14a{bottom:253.333333pt;}
.y53{bottom:254.666667pt;}
.y1d1{bottom:256.000000pt;}
.y35{bottom:257.333333pt;}
.yb7{bottom:260.000000pt;}
.y1f8{bottom:260.468533pt;}
.y17b{bottom:262.666667pt;}
.y1fd{bottom:263.986667pt;}
.y7a{bottom:265.333333pt;}
.y1d9{bottom:266.666667pt;}
.y1f7{bottom:267.506667pt;}
.yfe{bottom:268.000000pt;}
.y34{bottom:269.333333pt;}
.y52{bottom:270.666667pt;}
.y99{bottom:272.000000pt;}
.y152{bottom:273.333333pt;}
.y17f{bottom:274.666667pt;}
.yb6{bottom:276.000000pt;}
.y1c6{bottom:277.333333pt;}
.y1a1{bottom:278.666667pt;}
.ye6{bottom:280.000000pt;}
.y79{bottom:281.333333pt;}
.y1f6{bottom:281.906667pt;}
.y33{bottom:282.666667pt;}
.y1af{bottom:284.000000pt;}
.y51{bottom:285.333333pt;}
.y184{bottom:286.666667pt;}
.yfd{bottom:288.000000pt;}
.y1c2{bottom:289.333333pt;}
.y1f5{bottom:289.586667pt;}
.y1a0{bottom:290.666667pt;}
.yb5{bottom:292.000000pt;}
.y15c{bottom:293.333333pt;}
.y32{bottom:296.000000pt;}
.y78{bottom:297.333333pt;}
.y169{bottom:298.666667pt;}
.y149{bottom:300.000000pt;}
.y50{bottom:301.333333pt;}
.y19f{bottom:302.666667pt;}
.yfc{bottom:304.000000pt;}
.y1ee{bottom:305.333333pt;}
.y1ba{bottom:306.666667pt;}
.y31{bottom:308.000000pt;}
.y168{bottom:309.333333pt;}
.y11{bottom:310.666667pt;}
.y77{bottom:312.000000pt;}
.y19e{bottom:313.333333pt;}
.y1ae{bottom:314.666667pt;}
.yd4{bottom:316.000000pt;}
.y4f{bottom:317.333333pt;}
.y97{bottom:318.666667pt;}
.y30{bottom:320.000000pt;}
.y167{bottom:321.333333pt;}
.yb4{bottom:322.666667pt;}
.y124{bottom:324.000000pt;}
.y19d{bottom:325.333333pt;}
.y76{bottom:328.000000pt;}
.y98{bottom:329.333333pt;}
.y96{bottom:330.666667pt;}
.y2f{bottom:332.000000pt;}
.y1ec{bottom:333.333333pt;}
.yfb{bottom:334.666667pt;}
.y215{bottom:336.000000pt;}
.y10{bottom:338.666667pt;}
.y137{bottom:340.000000pt;}
.y95{bottom:341.333333pt;}
.y191{bottom:342.666667pt;}
.ye5{bottom:344.000000pt;}
.y2e{bottom:345.333333pt;}
.y1d8{bottom:346.666667pt;}
.y4e{bottom:348.000000pt;}
.y17a{bottom:349.333333pt;}
.yfa{bottom:350.666667pt;}
.y94{bottom:352.000000pt;}
.y1b9{bottom:353.333333pt;}
.yb3{bottom:354.666667pt;}
.y1c5{bottom:356.000000pt;}
.y15b{bottom:357.333333pt;}
.y2d{bottom:358.666667pt;}
.y75{bottom:361.333333pt;}
.y93{bottom:362.666667pt;}
.yf{bottom:364.000000pt;}
.yf9{bottom:365.333333pt;}
.y190{bottom:366.666667pt;}
.yc3{bottom:368.000000pt;}
.y1b8{bottom:369.333333pt;}
.yb2{bottom:370.666667pt;}
.y17e{bottom:373.333333pt;}
.yc2{bottom:374.666667pt;}
.y2c{bottom:376.000000pt;}
.y74{bottom:377.333333pt;}
.y4d{bottom:378.666667pt;}
.y118{bottom:380.000000pt;}
.yf8{bottom:381.333333pt;}
.y179{bottom:384.000000pt;}
.yb1{bottom:385.333333pt;}
.y92{bottom:386.666667pt;}
.y15a{bottom:388.000000pt;}
.y18f{bottom:389.333333pt;}
.y1de{bottom:390.666667pt;}
.ye{bottom:392.000000pt;}
.y73{bottom:393.333333pt;}
.y4c{bottom:394.666667pt;}
.y123{bottom:396.000000pt;}
.yf7{bottom:397.333333pt;}
.y194{bottom:400.000000pt;}
.y2b{bottom:401.333333pt;}
.y19c{bottom:404.000000pt;}
.y178{bottom:405.333333pt;}
.y122{bottom:406.666667pt;}
.ye4{bottom:408.000000pt;}
.y4b{bottom:409.333333pt;}
.y117{bottom:410.666667pt;}
.y72{bottom:412.000000pt;}
.yf6{bottom:413.333333pt;}
.y2a{bottom:414.666667pt;}
.y1b7{bottom:416.000000pt;}
.yb0{bottom:417.333333pt;}
.yd{bottom:418.666667pt;}
.ye3{bottom:420.000000pt;}
.y91{bottom:421.333333pt;}
.y166{bottom:422.666667pt;}
.y148{bottom:424.000000pt;}
.y4a{bottom:425.333333pt;}
.y29{bottom:426.666667pt;}
.y71{bottom:428.000000pt;}
.y209{bottom:430.084105pt;}
.yaf{bottom:432.000000pt;}
.y18e{bottom:433.333333pt;}
.y165{bottom:434.666667pt;}
.y208{bottom:435.829728pt;}
.y147{bottom:436.000000pt;}
.y18a{bottom:437.333333pt;}
.y177{bottom:438.666667pt;}
.y28{bottom:440.000000pt;}
.y207{bottom:441.272950pt;}
.y49{bottom:441.333333pt;}
.y70{bottom:442.666667pt;}
.yf5{bottom:444.000000pt;}
.yc{bottom:445.333333pt;}
.y146{bottom:446.666667pt;}
.y206{bottom:447.018573pt;}
.yae{bottom:448.000000pt;}
.y116{bottom:449.333333pt;}
.y115{bottom:450.666667pt;}
.y27{bottom:452.000000pt;}
.y205{bottom:452.461794pt;}
.y159{bottom:453.333333pt;}
.y48{bottom:456.000000pt;}
.y204{bottom:457.266613pt;}
.y1be{bottom:457.333333pt;}
.y6f{bottom:458.666667pt;}
.y151{bottom:460.000000pt;}
.y114{bottom:461.333333pt;}
.y203{bottom:462.709835pt;}
.y1a8{bottom:464.000000pt;}
.y26{bottom:465.333333pt;}
.yad{bottom:466.666667pt;}
.y136{bottom:468.000000pt;}
.y202{bottom:468.455458pt;}
.y145{bottom:469.333333pt;}
.ye2{bottom:470.666667pt;}
.y201{bottom:470.706667pt;}
.yb{bottom:472.000000pt;}
.y90{bottom:473.333333pt;}
.y5{bottom:474.666667pt;}
.y25{bottom:477.333333pt;}
.y189{bottom:478.666667pt;}
.y18d{bottom:480.000000pt;}
.y1c1{bottom:481.333333pt;}
.yac{bottom:482.666667pt;}
.y135{bottom:484.000000pt;}
.y176{bottom:485.333333pt;}
.y1dd{bottom:486.666667pt;}
.y1fc{bottom:486.717849pt;}
.yd3{bottom:488.000000pt;}
.y1e4{bottom:489.333333pt;}
.y24{bottom:490.666667pt;}
.y1fb{bottom:491.186667pt;}
.y6e{bottom:492.000000pt;}
.y1a7{bottom:493.333333pt;}
.y8f{bottom:494.666667pt;}
.y1fa{bottom:494.706667pt;}
.y113{bottom:496.000000pt;}
.yab{bottom:497.333333pt;}
.y134{bottom:498.666667pt;}
.y144{bottom:500.000000pt;}
.ye1{bottom:501.333333pt;}
.y23{bottom:502.666667pt;}
.yaa{bottom:504.000000pt;}
.y158{bottom:505.333333pt;}
.y1f9{bottom:505.893333pt;}
.y150{bottom:506.666667pt;}
.y6d{bottom:508.000000pt;}
.y8e{bottom:509.333333pt;}
.yf4{bottom:510.666667pt;}
.y157{bottom:512.000000pt;}
.y18c{bottom:513.333333pt;}
.y22{bottom:514.666667pt;}
.ye0{bottom:516.000000pt;}
.ya{bottom:517.333333pt;}
.ya9{bottom:520.000000pt;}
.y14f{bottom:521.333333pt;}
.y6c{bottom:524.000000pt;}
.y8d{bottom:525.333333pt;}
.y121{bottom:526.666667pt;}
.y21{bottom:528.000000pt;}
.yc1{bottom:529.333333pt;}
.ydf{bottom:530.666667pt;}
.y47{bottom:532.000000pt;}
.yd2{bottom:534.666667pt;}
.ya8{bottom:536.000000pt;}
.y14e{bottom:537.333333pt;}
.y1e3{bottom:538.666667pt;}
.y6b{bottom:540.000000pt;}
.y20{bottom:541.333333pt;}
.y8c{bottom:542.666667pt;}
.y1c0{bottom:544.000000pt;}
.yca{bottom:545.333333pt;}
.y46{bottom:546.666667pt;}
.y164{bottom:548.000000pt;}
.ya7{bottom:550.666667pt;}
.y1eb{bottom:552.000000pt;}
.y6a{bottom:554.666667pt;}
.yf3{bottom:556.000000pt;}
.y120{bottom:557.333333pt;}
.y1f{bottom:558.666667pt;}
.y163{bottom:560.000000pt;}
.y143{bottom:561.333333pt;}
.y45{bottom:562.666667pt;}
.y1d0{bottom:565.333333pt;}
.ya6{bottom:566.666667pt;}
.y14d{bottom:568.000000pt;}
.y69{bottom:569.333333pt;}
.y162{bottom:570.666667pt;}
.yf2{bottom:572.000000pt;}
.yc9{bottom:573.333333pt;}
.y188{bottom:574.666667pt;}
.y44{bottom:576.000000pt;}
.yde{bottom:577.333333pt;}
.y112{bottom:578.666667pt;}
.y8b{bottom:580.000000pt;}
.yd1{bottom:581.333333pt;}
.ya5{bottom:582.666667pt;}
.y1e{bottom:584.000000pt;}
.y1ab{bottom:585.333333pt;}
.yf1{bottom:586.666667pt;}
.y68{bottom:588.000000pt;}
.y11f{bottom:589.333333pt;}
.y19b{bottom:592.000000pt;}
.ydd{bottom:593.333333pt;}
.y8a{bottom:594.666667pt;}
.y1cf{bottom:596.000000pt;}
.yd0{bottom:597.333333pt;}
.yc8{bottom:598.666667pt;}
.y133{bottom:601.333333pt;}
.yf0{bottom:602.666667pt;}
.y67{bottom:604.000000pt;}
.y11e{bottom:605.333333pt;}
.y1bf{bottom:606.666667pt;}
.y142{bottom:608.000000pt;}
.y1d{bottom:609.333333pt;}
.y89{bottom:610.666667pt;}
.y132{bottom:612.000000pt;}
.y131{bottom:613.333333pt;}
.y14c{bottom:614.666667pt;}
.y161{bottom:616.000000pt;}
.yef{bottom:618.666667pt;}
.y66{bottom:620.000000pt;}
.y187{bottom:622.666667pt;}
.y43{bottom:624.000000pt;}
.y111{bottom:625.333333pt;}
.y193{bottom:626.666667pt;}
.y88{bottom:628.000000pt;}
.y1d7{bottom:629.333333pt;}
.y1c{bottom:630.666667pt;}
.yee{bottom:633.333333pt;}
.y65{bottom:634.666667pt;}
.y19a{bottom:636.000000pt;}
.ya4{bottom:637.333333pt;}
.y192{bottom:638.666667pt;}
.y110{bottom:640.000000pt;}
.y42{bottom:641.333333pt;}
.y1ce{bottom:642.666667pt;}
.y87{bottom:644.000000pt;}
.y1ea{bottom:645.333333pt;}
.y130{bottom:646.666667pt;}
.yc7{bottom:648.000000pt;}
.ya3{bottom:649.333333pt;}
.y64{bottom:650.666667pt;}
.y11d{bottom:652.000000pt;}
.y1e2{bottom:653.333333pt;}
.y1c4{bottom:654.666667pt;}
.y10f{bottom:656.000000pt;}
.y141{bottom:657.333333pt;}
.y199{bottom:658.666667pt;}
.y86{bottom:660.000000pt;}
.y14b{bottom:661.333333pt;}
.ydc{bottom:662.666667pt;}
.yed{bottom:664.000000pt;}
.y1a6{bottom:665.333333pt;}
.y63{bottom:666.666667pt;}
.y140{bottom:668.000000pt;}
.y1e1{bottom:669.333333pt;}
.ycf{bottom:670.666667pt;}
.ya1{bottom:672.000000pt;}
.yc6{bottom:673.333333pt;}
.y1dc{bottom:674.666667pt;}
.y85{bottom:676.000000pt;}
.y1b{bottom:677.333333pt;}
.y13f{bottom:678.666667pt;}
.yec{bottom:680.000000pt;}
.y62{bottom:681.333333pt;}
.ya0{bottom:682.666667pt;}
.ya2{bottom:684.000000pt;}
.y12f{bottom:685.333333pt;}
.y175{bottom:686.666667pt;}
.y10e{bottom:688.000000pt;}
.y1cd{bottom:689.333333pt;}
.y13e{bottom:690.666667pt;}
.yc0{bottom:692.000000pt;}
.ydb{bottom:693.333333pt;}
.y186{bottom:694.666667pt;}
.yeb{bottom:696.000000pt;}
.y61{bottom:697.333333pt;}
.yc5{bottom:698.666667pt;}
.y1e0{bottom:700.000000pt;}
.y13d{bottom:701.333333pt;}
.y10d{bottom:702.666667pt;}
.y2{bottom:704.000000pt;}
.yce{bottom:705.333333pt;}
.y84{bottom:706.666667pt;}
.y1a{bottom:708.000000pt;}
.y9f{bottom:709.333333pt;}
.y1a5{bottom:710.666667pt;}
.yea{bottom:712.000000pt;}
.y60{bottom:713.333333pt;}
.y1df{bottom:714.666667pt;}
.y10c{bottom:718.666667pt;}
.y1cc{bottom:720.000000pt;}
.y1bd{bottom:721.333333pt;}
.y12e{bottom:722.666667pt;}
.y13c{bottom:724.000000pt;}
.y1a4{bottom:726.666667pt;}
.y5f{bottom:728.000000pt;}
.y160{bottom:729.333333pt;}
.y19{bottom:730.666667pt;}
.y10b{bottom:734.666667pt;}
.y1cb{bottom:736.000000pt;}
.y12d{bottom:737.333333pt;}
.y1bc{bottom:738.666667pt;}
.yda{bottom:740.000000pt;}
.ycd{bottom:741.333333pt;}
.y9e{bottom:742.666667pt;}
.y5e{bottom:744.000000pt;}
.y1ad{bottom:746.666667pt;}
.y10a{bottom:749.333333pt;}
.y1{bottom:750.666667pt;}
.y12c{bottom:752.000000pt;}
.y18{bottom:753.333333pt;}
.y13b{bottom:754.666667pt;}
.y1b6{bottom:756.000000pt;}
.ye9{bottom:757.333333pt;}
.y5d{bottom:758.666667pt;}
.y15f{bottom:762.666667pt;}
.y174{bottom:764.000000pt;}
.y109{bottom:765.333333pt;}
.y1ca{bottom:766.666667pt;}
.y12b{bottom:768.000000pt;}
.y83{bottom:769.333333pt;}
.y1b5{bottom:772.000000pt;}
.y198{bottom:773.333333pt;}
.y17{bottom:776.000000pt;}
.y82{bottom:785.333333pt;}
.h3a{height:21.138056pt;}
.h7{height:22.250000pt;}
.h3b{height:27.218750pt;}
.h21{height:27.583333pt;}
.h19{height:27.812500pt;}
.h31{height:30.038056pt;}
.h2e{height:30.359898pt;}
.h26{height:32.250000pt;}
.h3e{height:32.453125pt;}
.h11{height:33.375000pt;}
.h34{height:36.117711pt;}
.hc{height:36.640625pt;}
.h39{height:36.712500pt;}
.h1b{height:37.625000pt;}
.h33{height:38.381806pt;}
.h1d{height:38.937500pt;}
.h2f{height:39.781250pt;}
.h45{height:40.828648pt;}
.he{height:41.854167pt;}
.h5{height:41.875000pt;}
.h10{height:43.000000pt;}
.h13{height:44.500000pt;}
.hd{height:47.085938pt;}
.hb{height:47.109375pt;}
.hf{height:48.375000pt;}
.h3c{height:48.679688pt;}
.h3f{height:49.726562pt;}
.h8{height:50.062500pt;}
.h2c{height:50.250000pt;}
.h38{height:50.618750pt;}
.h32{height:51.296875pt;}
.h9{height:52.317708pt;}
.h6{height:52.343750pt;}
.h2d{height:55.484375pt;}
.h20{height:55.625000pt;}
.h3{height:57.549479pt;}
.h4{height:57.578125pt;}
.h29{height:59.125000pt;}
.h37{height:59.518750pt;}
.h1e{height:61.187500pt;}
.h2a{height:62.812500pt;}
.h22{height:66.750000pt;}
.h1c{height:68.046875pt;}
.h18{height:72.312500pt;}
.h24{height:73.281250pt;}
.h27{height:84.244792pt;}
.h2{height:89.000000pt;}
.h1a{height:89.776042pt;}
.h12{height:95.109375pt;}
.h28{height:100.125000pt;}
.ha{height:107.500000pt;}
.h43{height:116.812500pt;}
.h1f{height:121.578125pt;}
.h44{height:127.937500pt;}
.h35{height:140.175556pt;}
.h36{height:153.525000pt;}
.h14{height:155.750000pt;}
.h40{height:178.000000pt;}
.h1{height:188.125000pt;}
.h23{height:189.125000pt;}
.h3d{height:222.500000pt;}
.h15{height:228.062500pt;}
.h41{height:294.812500pt;}
.h25{height:322.625000pt;}
.h16{height:556.250000pt;}
.h2b{height:581.333333pt;}
.h30{height:582.666667pt;}
.h42{height:695.312500pt;}
.h0{height:822.666667pt;}
.h17{height:1040.187500pt;}
.w0{width:581.333333pt;}
.w1{width:582.666667pt;}
.w2{width:822.666667pt;}
.x0{left:0.000000pt;}
.x16d{left:37.333333pt;}
.x168{left:42.666667pt;}
.x16b{left:44.000000pt;}
.x164{left:45.333333pt;}
.x16f{left:46.666667pt;}
.x165{left:48.000000pt;}
.x163{left:49.333333pt;}
.x162{left:50.666667pt;}
.x15c{left:52.000000pt;}
.x15d{left:53.333333pt;}
.x10c{left:54.666667pt;}
.x11c{left:56.000000pt;}
.x12e{left:57.333333pt;}
.x139{left:58.666667pt;}
.x147{left:60.000000pt;}
.x17{left:61.333333pt;}
.x151{left:62.666667pt;}
.x152{left:64.000000pt;}
.x155{left:65.333333pt;}
.x4a{left:66.666667pt;}
.x60{left:68.000000pt;}
.x65{left:69.333333pt;}
.x9a{left:70.666667pt;}
.xcb{left:72.000000pt;}
.xeb{left:73.333333pt;}
.x15b{left:74.666667pt;}
.x10d{left:76.000000pt;}
.x11e{left:77.333333pt;}
.x12d{left:78.666667pt;}
.x130{left:80.000000pt;}
.x12f{left:81.333333pt;}
.x3c{left:82.666667pt;}
.xd7{left:84.000000pt;}
.x63{left:85.333333pt;}
.x83{left:86.666667pt;}
.xab{left:88.000000pt;}
.xcd{left:89.333333pt;}
.x4d{left:90.666667pt;}
.xdc{left:92.000000pt;}
.xe4{left:93.333333pt;}
.xf5{left:94.666667pt;}
.xfe{left:96.000000pt;}
.xe2{left:97.333333pt;}
.xea{left:98.666667pt;}
.x142{left:100.000000pt;}
.x1{left:101.333333pt;}
.x67{left:102.666667pt;}
.x5b{left:104.000000pt;}
.xb3{left:105.333333pt;}
.xd2{left:106.666667pt;}
.x117{left:108.000000pt;}
.xe7{left:109.333333pt;}
.x12b{left:110.666667pt;}
.x13c{left:112.000000pt;}
.xdd{left:113.333333pt;}
.xe5{left:114.666667pt;}
.xa5{left:116.000000pt;}
.x8e{left:117.333333pt;}
.x104{left:118.666667pt;}
.xaf{left:120.000000pt;}
.xc3{left:121.333333pt;}
.x127{left:122.666667pt;}
.x92{left:124.000000pt;}
.xfb{left:125.333333pt;}
.xaa{left:126.666667pt;}
.x4e{left:128.000000pt;}
.x6b{left:129.333333pt;}
.x15a{left:130.666667pt;}
.x37{left:132.000000pt;}
.x149{left:133.333333pt;}
.x121{left:134.666667pt;}
.x2e{left:136.000000pt;}
.x89{left:137.333333pt;}
.x9b{left:138.666667pt;}
.x4b{left:140.000000pt;}
.xc2{left:141.333333pt;}
.x150{left:142.666667pt;}
.xb4{left:144.000000pt;}
.x2a{left:145.333333pt;}
.xbc{left:146.666667pt;}
.x34{left:148.000000pt;}
.x28{left:149.333333pt;}
.xa6{left:150.666667pt;}
.xca{left:152.000000pt;}
.x109{left:153.333333pt;}
.x14b{left:154.666667pt;}
.x5{left:156.000000pt;}
.x18{left:157.333333pt;}
.x125{left:158.666667pt;}
.x47{left:160.000000pt;}
.x66{left:161.333333pt;}
.xec{left:162.666667pt;}
.x2{left:164.000000pt;}
.x112{left:165.333333pt;}
.x7d{left:166.666667pt;}
.x42{left:168.000000pt;}
.x25{left:169.333333pt;}
.xcc{left:170.666667pt;}
.xb5{left:172.000000pt;}
.x93{left:173.333333pt;}
.x31{left:174.666667pt;}
.x2d{left:176.000000pt;}
.x2f{left:177.333333pt;}
.x5c{left:178.666667pt;}
.x118{left:180.000000pt;}
.x131{left:181.333333pt;}
.x9c{left:182.666667pt;}
.xf4{left:184.000000pt;}
.x7e{left:185.333333pt;}
.x11d{left:186.666667pt;}
.x2b{left:188.000000pt;}
.x6{left:189.333333pt;}
.x6c{left:190.666667pt;}
.x35{left:192.000000pt;}
.x72{left:193.333333pt;}
.xa7{left:194.666667pt;}
.xf9{left:196.000000pt;}
.x5d{left:197.333333pt;}
.xb9{left:198.666667pt;}
.x12{left:200.000000pt;}
.x23{left:201.333333pt;}
.x43{left:202.666667pt;}
.x136{left:204.000000pt;}
.x111{left:205.333333pt;}
.xb{left:206.666667pt;}
.x4f{left:208.000000pt;}
.x48{left:209.333333pt;}
.x84{left:210.666667pt;}
.xd8{left:212.000000pt;}
.x94{left:213.333333pt;}
.xbf{left:214.666667pt;}
.x124{left:216.000000pt;}
.x29{left:217.333333pt;}
.xe3{left:218.666667pt;}
.xe8{left:220.000000pt;}
.x19{left:221.333333pt;}
.x32{left:222.666667pt;}
.x154{left:224.000000pt;}
.x73{left:225.333333pt;}
.x107{left:226.666667pt;}
.x9d{left:228.000000pt;}
.x10{left:229.333333pt;}
.x6d{left:230.666667pt;}
.x58{left:232.000000pt;}
.xa{left:233.333333pt;}
.x114{left:234.666667pt;}
.xbd{left:236.000000pt;}
.xc{left:237.333333pt;}
.x1a{left:238.666667pt;}
.xff{left:240.000000pt;}
.xc5{left:241.333333pt;}
.x26{left:242.666667pt;}
.x13e{left:244.000000pt;}
.x4{left:245.333333pt;}
.xa3{left:246.666667pt;}
.x68{left:248.000000pt;}
.x6e{left:249.333333pt;}
.x38{left:250.666667pt;}
.x1b{left:252.000000pt;}
.x13{left:253.333333pt;}
.x140{left:254.666667pt;}
.x7{left:256.000000pt;}
.x10e{left:257.333333pt;}
.x10a{left:258.666667pt;}
.x13d{left:260.000000pt;}
.x36{left:261.333333pt;}
.xba{left:262.666667pt;}
.x3d{left:264.000000pt;}
.x6f{left:265.333333pt;}
.x1c{left:266.666667pt;}
.xc0{left:268.000000pt;}
.xce{left:269.333333pt;}
.x50{left:270.666667pt;}
.x137{left:272.000000pt;}
.x24{left:273.333333pt;}
.x14e{left:274.666667pt;}
.x44{left:276.000000pt;}
.x11{left:277.333333pt;}
.x14f{left:278.666667pt;}
.x85{left:280.000000pt;}
.x8{left:281.333333pt;}
.xe{left:282.666667pt;}
.xae{left:284.000000pt;}
.xf6{left:285.333333pt;}
.x3e{left:286.666667pt;}
.x90{left:288.000000pt;}
.x33{left:289.333333pt;}
.x74{left:290.666667pt;}
.xe1{left:292.000000pt;}
.x14{left:293.333333pt;}
.x9e{left:294.666667pt;}
.x45{left:296.000000pt;}
.x101{left:297.333333pt;}
.x59{left:298.666667pt;}
.xf{left:300.000000pt;}
.x5e{left:301.333333pt;}
.x51{left:302.666667pt;}
.xd{left:304.000000pt;}
.x49{left:305.333333pt;}
.x143{left:306.666667pt;}
.x95{left:308.000000pt;}
.x4c{left:309.333333pt;}
.x30{left:310.666667pt;}
.x15{left:312.000000pt;}
.x3{left:313.333333pt;}
.x2c{left:314.666667pt;}
.xb6{left:316.000000pt;}
.x10f{left:317.333333pt;}
.x1d{left:318.666667pt;}
.xf1{left:320.000000pt;}
.x27{left:321.333333pt;}
.x5a{left:322.666667pt;}
.x69{left:324.000000pt;}
.xc6{left:325.333333pt;}
.xd4{left:326.666667pt;}
.x16{left:328.000000pt;}
.x46{left:329.333333pt;}
.xc4{left:330.666667pt;}
.x86{left:332.000000pt;}
.x9{left:333.333333pt;}
.x39{left:334.666667pt;}
.x9f{left:336.000000pt;}
.x1e{left:337.333333pt;}
.x79{left:338.666667pt;}
.x52{left:340.000000pt;}
.x10b{left:341.333333pt;}
.x75{left:342.666667pt;}
.x132{left:344.000000pt;}
.x156{left:345.333333pt;}
.x11b{left:346.666667pt;}
.xc7{left:348.000000pt;}
.x14d{left:349.333333pt;}
.xb0{left:350.666667pt;}
.x7f{left:352.000000pt;}
.x8a{left:353.333333pt;}
.x100{left:354.666667pt;}
.x53{left:356.000000pt;}
.x7a{left:357.333333pt;}
.xbb{left:358.666667pt;}
.xed{left:360.000000pt;}
.x3a{left:361.333333pt;}
.x11f{left:362.666667pt;}
.x148{left:364.000000pt;}
.x14c{left:365.333333pt;}
.x13b{left:366.666667pt;}
.x1f{left:368.000000pt;}
.x8b{left:369.333333pt;}
.x80{left:370.666667pt;}
.xbe{left:372.000000pt;}
.xcf{left:373.333333pt;}
.x54{left:374.666667pt;}
.x91{left:376.000000pt;}
.x98{left:377.333333pt;}
.xd9{left:378.666667pt;}
.xb7{left:380.000000pt;}
.xc8{left:381.333333pt;}
.x122{left:382.666667pt;}
.x3f{left:384.000000pt;}
.x70{left:385.333333pt;}
.x3b{left:386.666667pt;}
.xfd{left:388.000000pt;}
.x96{left:389.333333pt;}
.xa0{left:390.666667pt;}
.xd5{left:392.000000pt;}
.x76{left:393.333333pt;}
.x8c{left:394.666667pt;}
.x113{left:396.000000pt;}
.x115{left:397.333333pt;}
.x7b{left:398.666667pt;}
.xb1{left:400.000000pt;}
.x128{left:401.333333pt;}
.xe6{left:402.666667pt;}
.x120{left:404.000000pt;}
.x157{left:405.333333pt;}
.xac{left:406.666667pt;}
.x6a{left:408.000000pt;}
.x55{left:409.333333pt;}
.x40{left:410.666667pt;}
.xda{left:412.000000pt;}
.x5f{left:413.333333pt;}
.x97{left:414.666667pt;}
.x20{left:416.000000pt;}
.xb8{left:417.333333pt;}
.x7c{left:418.666667pt;}
.x102{left:420.000000pt;}
.x133{left:421.333333pt;}
.x12c{left:422.666667pt;}
.xde{left:424.000000pt;}
.x56{left:425.333333pt;}
.xc1{left:426.666667pt;}
.x87{left:428.000000pt;}
.x21{left:429.333333pt;}
.x116{left:430.666667pt;}
.x81{left:432.000000pt;}
.xdb{left:433.333333pt;}
.x13a{left:434.666667pt;}
.xad{left:436.000000pt;}
.x61{left:437.333333pt;}
.x123{left:438.666667pt;}
.x105{left:440.000000pt;}
.xd0{left:441.333333pt;}
.x41{left:442.666667pt;}
.xc9{left:444.000000pt;}
.xfc{left:445.333333pt;}
.x110{left:446.666667pt;}
.x88{left:448.000000pt;}
.x119{left:449.333333pt;}
.x82{left:450.666667pt;}
.x57{left:452.000000pt;}
.xee{left:453.333333pt;}
.xb2{left:454.666667pt;}
.xa1{left:456.000000pt;}
.x134{left:457.333333pt;}
.x106{left:458.666667pt;}
.xd1{left:460.000000pt;}
.x11a{left:461.333333pt;}
.x77{left:462.666667pt;}
.x141{left:464.000000pt;}
.x22{left:465.333333pt;}
.xa8{left:466.666667pt;}
.x99{left:468.000000pt;}
.xd3{left:469.333333pt;}
.xf7{left:470.666667pt;}
.x8f{left:472.000000pt;}
.x126{left:473.333333pt;}
.x78{left:475.468267pt;}
.xa9{left:476.671667pt;}
.xa2{left:477.660000pt;}
.xd6{left:478.881693pt;}
.x62{left:480.000000pt;}
.x108{left:481.333333pt;}
.x145{left:482.666667pt;}
.x129{left:484.000000pt;}
.xef{left:485.333333pt;}
.xe9{left:486.666667pt;}
.x12a{left:488.000000pt;}
.xf2{left:489.333333pt;}
.x144{left:490.666667pt;}
.x146{left:492.000000pt;}
.x138{left:493.333333pt;}
.xdf{left:494.666667pt;}
.x8d{left:496.000000pt;}
.xa4{left:497.333333pt;}
.xf3{left:498.666667pt;}
.x135{left:499.849653pt;}
.x71{left:501.333333pt;}
.x14a{left:503.007147pt;}
.xfa{left:504.000000pt;}
.x153{left:505.745147pt;}
.x64{left:506.666667pt;}
.x158{left:507.716320pt;}
.x159{left:508.727387pt;}
.x13f{left:509.842853pt;}
.xe0{left:511.533333pt;}
.xf0{left:513.188853pt;}
.xf8{left:514.112373pt;}
.x103{left:515.266667pt;}
.x15e{left:516.298333pt;}
.x167{left:517.333333pt;}
.x15f{left:520.787613pt;}
.x161{left:522.416453pt;}
.x160{left:523.454280pt;}
.x169{left:525.333333pt;}
.x170{left:569.333333pt;}
.x16c{left:584.000000pt;}
.x16e{left:632.253333pt;}
.x16a{left:654.666667pt;}
.x166{left:776.000000pt;}
}




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