
    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_b2a3c5ddc275d0e7052b749f.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.971191;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_c08651e7f50ec66adc5eb9f6.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.971191;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_94d89e7770276c786ab1c8ab.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.971191;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_fb29ddf5badb2f76a345ebe5.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.971191;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_921bb91af45ba52a731a9e56.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.754395;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_97f10394078f5afd38fc4ed7.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.971191;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_0a7c4fc753c84459902a875f.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.942871;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_3116bbbab030b4768388e1a6.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.959961;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_6d61d8e7ff55e41728f9a4f9.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.958008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_22855afa47a72b68b1d32759.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.938477;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_8b2292600619e5443862cb88.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_a3ed03b41b7029d3928c03c9.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.971191;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_359c2bc9633488e18bbb2627.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.750000;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_bebf0361a5f4992224704b2c.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.910645;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_f8616d80a278b3cb78b9e61e.woff2')format("woff");}.fff{font-family:fff;line-height:0.971191;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_3f52482a037df131356044ef.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.910645;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_a863edcb44c8dad47edf19a9.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.678223;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;}
.m4{transform:matrix(0.242850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242850,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.244128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244128,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.244603,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244603,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244603,0.000000,0.000000,0.250000,0,0);}
.m20{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);}
.m52{transform:matrix(0.245085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245085,0.000000,0.000000,0.250000,0,0);}
.m6a{transform:matrix(0.245119,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245119,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245119,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.245173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245173,0.000000,0.000000,0.250000,0,0);}
.m53{transform:matrix(0.245287,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245287,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245287,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.245350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245350,0.000000,0.000000,0.250000,0,0);}
.m6f{transform:matrix(0.245406,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245406,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245406,0.000000,0.000000,0.250000,0,0);}
.m46{transform:matrix(0.245475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245475,0.000000,0.000000,0.250000,0,0);}
.m78{transform:matrix(0.245522,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245522,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245522,0.000000,0.000000,0.250000,0,0);}
.m74{transform:matrix(0.245606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245606,0.000000,0.000000,0.250000,0,0);}
.m30{transform:matrix(0.245782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245782,0.000000,0.000000,0.250000,0,0);}
.m3f{transform:matrix(0.245838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245838,0.000000,0.000000,0.250000,0,0);}
.m36{transform:matrix(0.245878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245878,0.000000,0.000000,0.250000,0,0);}
.m37{transform:matrix(0.245879,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245879,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245879,0.000000,0.000000,0.250000,0,0);}
.m3a{transform:matrix(0.246185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246185,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.246343,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246343,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246343,0.000000,0.000000,0.250000,0,0);}
.m54{transform:matrix(0.246595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246595,0.000000,0.000000,0.250000,0,0);}
.m38{transform:matrix(0.246625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246625,0.000000,0.000000,0.250000,0,0);}
.m34{transform:matrix(0.246923,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246923,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246923,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.247078,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247078,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247078,0.000000,0.000000,0.250000,0,0);}
.m5e{transform:matrix(0.247098,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247098,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247098,0.000000,0.000000,0.250000,0,0);}
.m64{transform:matrix(0.247239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247239,0.000000,0.000000,0.250000,0,0);}
.m43{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m4a{transform:matrix(0.247315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247315,0.000000,0.000000,0.250000,0,0);}
.m42{transform:matrix(0.247330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247330,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.247360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247360,0.000000,0.000000,0.250000,0,0);}
.m47{transform:matrix(0.247365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247365,0.000000,0.000000,0.250000,0,0);}
.m45{transform:matrix(0.247425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247425,0.000000,0.000000,0.250000,0,0);}
.m40{transform:matrix(0.247532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247532,0.000000,0.000000,0.250000,0,0);}
.m66{transform:matrix(0.247611,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247611,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247611,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.247731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247731,0.000000,0.000000,0.250000,0,0);}
.m77{transform:matrix(0.247781,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247781,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247781,0.000000,0.000000,0.250000,0,0);}
.m65{transform:matrix(0.247956,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247956,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247956,0.000000,0.000000,0.250000,0,0);}
.m60{transform:matrix(0.248140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248140,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.248153,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248153,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248153,0.000000,0.000000,0.250000,0,0);}
.m4e{transform:matrix(0.248213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248213,0.000000,0.000000,0.250000,0,0);}
.m41{transform:matrix(0.248230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248230,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.248393,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248393,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248393,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.248472,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248472,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248472,0.000000,0.000000,0.250000,0,0);}
.m6d{transform:matrix(0.248575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248575,0.000000,0.000000,0.250000,0,0);}
.m76{transform:matrix(0.248725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248725,0.000000,0.000000,0.250000,0,0);}
.m35{transform:matrix(0.248867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248867,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.248947,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248947,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248947,0.000000,0.000000,0.250000,0,0);}
.m3b{transform:matrix(0.249128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249128,0.000000,0.000000,0.250000,0,0);}
.m4d{transform:matrix(0.249202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249202,0.000000,0.000000,0.250000,0,0);}
.m58{transform:matrix(0.249330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249330,0.000000,0.000000,0.250000,0,0);}
.m3c{transform:matrix(0.249495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249495,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m6b{transform:matrix(0.249519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249519,0.000000,0.000000,0.250000,0,0);}
.m62{transform:matrix(0.249525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249525,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.249712,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249712,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249712,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.249742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249742,0.000000,0.000000,0.250000,0,0);}
.m69{transform:matrix(0.249933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249933,0.000000,0.000000,0.250000,0,0);}
.m70{transform:matrix(0.249942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249942,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m5c{transform:matrix(0.250185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250185,0.000000,0.000000,0.250000,0,0);}
.m33{transform:matrix(0.250475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250475,0.000000,0.000000,0.250000,0,0);}
.m44{transform:matrix(0.250527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250527,0.000000,0.000000,0.250000,0,0);}
.m32{transform:matrix(0.250570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250570,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.250653,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250653,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250653,0.000000,0.000000,0.250000,0,0);}
.m3d{transform:matrix(0.250667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250667,0.000000,0.000000,0.250000,0,0);}
.m5d{transform:matrix(0.250677,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250677,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250677,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.251188,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251188,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251188,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.251192,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251192,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251192,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.251207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251207,0.000000,0.000000,0.250000,0,0);}
.m68{transform:matrix(0.251283,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251283,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251283,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.251336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251336,0.000000,0.000000,0.250000,0,0);}
.m39{transform:matrix(0.251340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251340,0.000000,0.000000,0.250000,0,0);}
.m59{transform:matrix(0.251372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251372,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.251395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251395,0.000000,0.000000,0.250000,0,0);}
.m63{transform:matrix(0.251414,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251414,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251414,0.000000,0.000000,0.250000,0,0);}
.m50{transform:matrix(0.251415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251415,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.251505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251505,0.000000,0.000000,0.250000,0,0);}
.m5b{transform:matrix(0.251510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251510,0.000000,0.000000,0.250000,0,0);}
.m73{transform:matrix(0.251536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251536,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.251619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251619,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.251635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251635,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.251640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251640,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.251653,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251653,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251653,0.000000,0.000000,0.250000,0,0);}
.m49{transform:matrix(0.251688,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251688,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251688,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.251743,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251743,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251743,0.000000,0.000000,0.250000,0,0);}
.m51{transform:matrix(0.252057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252057,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.252290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252290,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.252345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252345,0.000000,0.000000,0.250000,0,0);}
.m4b{transform:matrix(0.252395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252395,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.252408,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252408,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252408,0.000000,0.000000,0.250000,0,0);}
.m72{transform:matrix(0.252439,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252439,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252439,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.252530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252530,0.000000,0.000000,0.250000,0,0);}
.m67{transform:matrix(0.252600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252600,0.000000,0.000000,0.250000,0,0);}
.m4f{transform:matrix(0.252610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252610,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.252632,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252632,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252632,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.252710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252710,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.252857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252857,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.253188,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253188,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253188,0.000000,0.000000,0.250000,0,0);}
.m3e{transform:matrix(0.253245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253245,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.253285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253285,0.000000,0.000000,0.250000,0,0);}
.m57{transform:matrix(0.253415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253415,0.000000,0.000000,0.250000,0,0);}
.m71{transform:matrix(0.253453,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253453,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253453,0.000000,0.000000,0.250000,0,0);}
.m56{transform:matrix(0.253665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253665,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.253752,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253752,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253752,0.000000,0.000000,0.250000,0,0);}
.m5a{transform:matrix(0.253805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253805,0.000000,0.000000,0.250000,0,0);}
.m5f{transform:matrix(0.253955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253955,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.254092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254092,0.000000,0.000000,0.250000,0,0);}
.m61{transform:matrix(0.254100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254100,0.000000,0.000000,0.250000,0,0);}
.m55{transform:matrix(0.254267,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254267,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254267,0.000000,0.000000,0.250000,0,0);}
.m75{transform:matrix(0.254342,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254342,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254342,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.254361,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254361,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254361,0.000000,0.000000,0.250000,0,0);}
.m6c{transform:matrix(0.254411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254411,0.000000,0.000000,0.250000,0,0);}
.m48{transform:matrix(0.254520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254520,0.000000,0.000000,0.250000,0,0);}
.m4c{transform:matrix(0.254560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254560,0.000000,0.000000,0.250000,0,0);}
.m6e{transform:matrix(0.254769,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254769,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254769,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.254812,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254812,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254812,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.254853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254853,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.254912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254912,0.000000,0.000000,0.250000,0,0);}
.m31{transform:matrix(0.254930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254930,0.000000,0.000000,0.250000,0,0);}
.m1{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);}
.m7{transform:matrix(0.256956,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256956,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256956,0.000000,0.000000,0.250000,0,0);}
.m5{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);}
.v3{vertical-align:-23.975400px;}
.v1{vertical-align:-4.588200px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:19.980000px;}
.v2{vertical-align:21.937800px;}
.v5{vertical-align:36.000000px;}
.ls5{letter-spacing:-2.220000px;}
.ls1{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.000052px;}
.ls7{letter-spacing:0.436263px;}
.ls0{letter-spacing:2.520000px;}
.ls2{letter-spacing:5.564412px;}
.ls4{letter-spacing:165.540000px;}
.ls3{letter-spacing:253.560000px;}
.ls8{letter-spacing:254.160000px;}
.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;}
}
.ws2{word-spacing:-22.530960px;}
.ws4{word-spacing:-20.520000px;}
.ws19{word-spacing:-15.000000px;}
.ws3{word-spacing:-13.406400px;}
.ws1{word-spacing:-13.135468px;}
.ws18{word-spacing:-8.745000px;}
.ws8{word-spacing:-4.413960px;}
.wsa7{word-spacing:-2.580000px;}
.ws13{word-spacing:-2.520000px;}
.ws4a{word-spacing:-1.740000px;}
.ws11{word-spacing:-1.512000px;}
.wse{word-spacing:-1.458000px;}
.ws10{word-spacing:-1.404000px;}
.ws56{word-spacing:-1.080000px;}
.wsb{word-spacing:-0.972000px;}
.ws1a{word-spacing:-0.780000px;}
.ws9{word-spacing:-0.756000px;}
.ws4b{word-spacing:-0.720000px;}
.wsdf{word-spacing:-0.702000px;}
.ws43{word-spacing:-0.660000px;}
.wsd9{word-spacing:-0.648000px;}
.wsef{word-spacing:-0.540000px;}
.wsed{word-spacing:-0.432000px;}
.wsa6{word-spacing:-0.360000px;}
.ws2c{word-spacing:-0.300000px;}
.ws0{word-spacing:-0.054000px;}
.ws5{word-spacing:0.000000px;}
.wsb2{word-spacing:0.120000px;}
.ws8a{word-spacing:0.480000px;}
.ws60{word-spacing:0.540000px;}
.ws6c{word-spacing:0.600000px;}
.wse5{word-spacing:0.648000px;}
.wsc8{word-spacing:0.660000px;}
.ws15{word-spacing:0.720000px;}
.ws5f{word-spacing:0.780000px;}
.ws64{word-spacing:0.792000px;}
.ws6f{word-spacing:0.960000px;}
.ws9c{word-spacing:1.020000px;}
.ws46{word-spacing:1.200000px;}
.wsf8{word-spacing:1.242000px;}
.wsb5{word-spacing:1.260000px;}
.wsb3{word-spacing:1.320000px;}
.ws88{word-spacing:1.380000px;}
.wsee{word-spacing:1.404000px;}
.ws67{word-spacing:1.440000px;}
.wsa{word-spacing:1.458000px;}
.wsaa{word-spacing:1.560000px;}
.ws77{word-spacing:1.566000px;}
.ws23{word-spacing:1.620000px;}
.wse9{word-spacing:1.674000px;}
.ws4e{word-spacing:1.800000px;}
.ws5d{word-spacing:1.920000px;}
.wsfd{word-spacing:1.944000px;}
.ws4c{word-spacing:1.980000px;}
.ws41{word-spacing:2.040000px;}
.ws34{word-spacing:2.112000px;}
.ws3b{word-spacing:2.160000px;}
.ws35{word-spacing:2.220000px;}
.wse3{word-spacing:2.268000px;}
.ws1f{word-spacing:2.280000px;}
.wse4{word-spacing:2.322000px;}
.wsce{word-spacing:2.340000px;}
.wsb1{word-spacing:2.400000px;}
.ws12{word-spacing:2.538000px;}
.ws1d{word-spacing:2.580000px;}
.wsd{word-spacing:2.646000px;}
.ws3c{word-spacing:2.700000px;}
.ws7b{word-spacing:2.808000px;}
.ws30{word-spacing:2.820000px;}
.ws91{word-spacing:3.000000px;}
.wsfa{word-spacing:3.132000px;}
.wsa4{word-spacing:3.240000px;}
.ws68{word-spacing:3.300000px;}
.wsc3{word-spacing:3.360000px;}
.wscf{word-spacing:3.420000px;}
.wsc{word-spacing:3.456000px;}
.ws82{word-spacing:3.540000px;}
.wsf{word-spacing:3.564000px;}
.wsa5{word-spacing:3.600000px;}
.ws86{word-spacing:3.660000px;}
.wsd2{word-spacing:3.720000px;}
.wsd3{word-spacing:3.780000px;}
.wscb{word-spacing:3.840000px;}
.ws7{word-spacing:3.886920px;}
.wsa3{word-spacing:3.900000px;}
.ws2b{word-spacing:3.960000px;}
.wsb7{word-spacing:4.140000px;}
.ws6a{word-spacing:4.200000px;}
.wsda{word-spacing:4.212000px;}
.ws4f{word-spacing:4.260000px;}
.ws38{word-spacing:4.320000px;}
.ws7f{word-spacing:4.380000px;}
.ws98{word-spacing:4.500000px;}
.ws94{word-spacing:4.560000px;}
.wsa0{word-spacing:4.680000px;}
.ws85{word-spacing:4.740000px;}
.ws9e{word-spacing:4.800000px;}
.ws25{word-spacing:4.920000px;}
.ws22{word-spacing:4.980000px;}
.wsdd{word-spacing:5.022000px;}
.ws66{word-spacing:5.040000px;}
.wsfb{word-spacing:5.292000px;}
.ws28{word-spacing:5.340000px;}
.wsfe{word-spacing:5.562000px;}
.ws45{word-spacing:5.580000px;}
.wscc{word-spacing:5.640000px;}
.ws1b{word-spacing:5.700000px;}
.ws87{word-spacing:5.760000px;}
.ws6d{word-spacing:5.820000px;}
.ws97{word-spacing:5.880000px;}
.wsec{word-spacing:5.886000px;}
.ws78{word-spacing:5.940000px;}
.ws9f{word-spacing:6.180000px;}
.wsf9{word-spacing:6.210000px;}
.wsf5{word-spacing:6.318000px;}
.ws3d{word-spacing:6.360000px;}
.ws89{word-spacing:6.420000px;}
.wsf0{word-spacing:6.534000px;}
.ws63{word-spacing:6.540000px;}
.ws49{word-spacing:6.600000px;}
.ws2f{word-spacing:6.780000px;}
.wsf7{word-spacing:6.966000px;}
.ws6b{word-spacing:7.020000px;}
.wsf6{word-spacing:7.128000px;}
.ws26{word-spacing:7.140000px;}
.ws33{word-spacing:7.200000px;}
.wsc0{word-spacing:7.380000px;}
.ws55{word-spacing:7.416000px;}
.ws29{word-spacing:7.440000px;}
.ws24{word-spacing:7.500000px;}
.ws42{word-spacing:7.560000px;}
.ws62{word-spacing:7.680000px;}
.ws79{word-spacing:7.830000px;}
.ws40{word-spacing:8.040000px;}
.ws3e{word-spacing:8.100000px;}
.wsb9{word-spacing:8.460000px;}
.ws1e{word-spacing:8.520000px;}
.wsc7{word-spacing:8.580000px;}
.ws96{word-spacing:8.640000px;}
.wsaf{word-spacing:8.700000px;}
.ws3a{word-spacing:8.820000px;}
.wsfc{word-spacing:8.910000px;}
.wsab{word-spacing:8.940000px;}
.ws80{word-spacing:9.120000px;}
.ws90{word-spacing:9.180000px;}
.ws5e{word-spacing:9.240000px;}
.ws73{word-spacing:9.396000px;}
.wsc2{word-spacing:9.420000px;}
.wsd5{word-spacing:9.480000px;}
.ws2d{word-spacing:9.540000px;}
.wsf1{word-spacing:9.558000px;}
.ws83{word-spacing:9.600000px;}
.ws81{word-spacing:9.720000px;}
.ws84{word-spacing:10.080000px;}
.wsbc{word-spacing:10.320000px;}
.wsca{word-spacing:10.680000px;}
.wsde{word-spacing:10.692000px;}
.ws14{word-spacing:10.740000px;}
.ws16{word-spacing:10.920000px;}
.ws37{word-spacing:10.980000px;}
.wsa2{word-spacing:11.040000px;}
.wsf3{word-spacing:11.124000px;}
.wsb0{word-spacing:11.160000px;}
.wseb{word-spacing:11.178000px;}
.ws21{word-spacing:11.220000px;}
.ws4d{word-spacing:11.400000px;}
.ws8b{word-spacing:11.460000px;}
.ws95{word-spacing:11.940000px;}
.wsd7{word-spacing:12.000000px;}
.ws8d{word-spacing:12.060000px;}
.ws32{word-spacing:12.360000px;}
.ws3f{word-spacing:12.480000px;}
.ws69{word-spacing:12.600000px;}
.ws8c{word-spacing:12.720000px;}
.ws61{word-spacing:12.840000px;}
.wsa1{word-spacing:13.020000px;}
.ws99{word-spacing:13.200000px;}
.ws7a{word-spacing:13.536000px;}
.wsdb{word-spacing:13.878000px;}
.wsa9{word-spacing:14.040000px;}
.ws70{word-spacing:14.160000px;}
.ws2a{word-spacing:14.400000px;}
.ws1c{word-spacing:14.700000px;}
.wsb8{word-spacing:14.718000px;}
.ws27{word-spacing:14.880000px;}
.wsd8{word-spacing:15.000000px;}
.wsb4{word-spacing:15.120000px;}
.ws2e{word-spacing:15.180000px;}
.ws44{word-spacing:15.300000px;}
.wse1{word-spacing:15.336000px;}
.wsea{word-spacing:15.390000px;}
.wsc9{word-spacing:15.420000px;}
.wsb6{word-spacing:15.480000px;}
.wse7{word-spacing:15.768000px;}
.ws31{word-spacing:15.780000px;}
.wsf2{word-spacing:15.876000px;}
.ws9a{word-spacing:16.020000px;}
.wse0{word-spacing:16.740000px;}
.wsd6{word-spacing:16.800000px;}
.ws93{word-spacing:17.160000px;}
.ws48{word-spacing:17.400000px;}
.ws74{word-spacing:17.820000px;}
.wse2{word-spacing:18.198000px;}
.wsd1{word-spacing:18.300000px;}
.ws65{word-spacing:18.540000px;}
.wsbf{word-spacing:18.720000px;}
.wsae{word-spacing:18.780000px;}
.ws36{word-spacing:18.840000px;}
.ws76{word-spacing:19.008000px;}
.ws92{word-spacing:19.080000px;}
.wsa8{word-spacing:19.560000px;}
.ws9b{word-spacing:20.400000px;}
.wsd4{word-spacing:20.520000px;}
.ws71{word-spacing:20.700000px;}
.ws7e{word-spacing:20.760000px;}
.wsdc{word-spacing:20.898000px;}
.wsac{word-spacing:21.660000px;}
.ws17{word-spacing:21.780000px;}
.ws9d{word-spacing:22.860000px;}
.ws39{word-spacing:22.920000px;}
.wsc5{word-spacing:23.040000px;}
.ws20{word-spacing:23.280000px;}
.wscd{word-spacing:24.240000px;}
.ws6e{word-spacing:24.480000px;}
.ws7c{word-spacing:24.768000px;}
.ws75{word-spacing:24.894000px;}
.ws47{word-spacing:25.380000px;}
.ws72{word-spacing:26.040000px;}
.wsf4{word-spacing:26.460000px;}
.ws7d{word-spacing:26.940000px;}
.ws8e{word-spacing:27.720000px;}
.wsba{word-spacing:28.260000px;}
.wsc6{word-spacing:31.620000px;}
.wsd0{word-spacing:32.760000px;}
.wsc1{word-spacing:33.132000px;}
.ws8f{word-spacing:34.860000px;}
.wse8{word-spacing:34.938000px;}
.wsbd{word-spacing:34.980000px;}
.wsbb{word-spacing:37.380000px;}
.wsad{word-spacing:41.820000px;}
.wsc4{word-spacing:42.000000px;}
.wse6{word-spacing:48.816000px;}
.ws6{word-spacing:67.956000px;}
.ws52{word-spacing:78.300000px;}
.ws50{word-spacing:82.860000px;}
.ws53{word-spacing:102.840000px;}
.wsbe{word-spacing:160.800000px;}
.ws5b{word-spacing:205.800000px;}
.ws59{word-spacing:212.460000px;}
.ws57{word-spacing:235.800000px;}
.ws51{word-spacing:238.560000px;}
.ws5a{word-spacing:253.020000px;}
.ws58{word-spacing:354.000000px;}
.ws5c{word-spacing:356.220000px;}
.ws54{word-spacing:406.860000px;}
._0{margin-left:-1562.818800px;}
._3f{margin-left:-22.194000px;}
._d{margin-left:-17.340000px;}
._4{margin-left:-7.872000px;}
._b{margin-left:-6.624000px;}
._3{margin-left:-4.710840px;}
._8{margin-left:-3.608400px;}
._1{margin-left:-1.782000px;}
._16{width:1.080000px;}
._14{width:2.196000px;}
._c{width:3.348000px;}
._15{width:4.740000px;}
._12{width:6.149760px;}
._5{width:7.237560px;}
._31{width:8.554440px;}
._7{width:9.624000px;}
._6{width:10.716000px;}
._11{width:12.000000px;}
._10{width:13.080000px;}
._2d{width:15.354000px;}
._e{width:16.380000px;}
._13{width:17.460000px;}
._2e{width:18.912000px;}
._f{width:19.920000px;}
._40{width:21.330000px;}
._35{width:22.446720px;}
._34{width:23.670840px;}
._33{width:25.020000px;}
._37{width:26.220000px;}
._2c{width:27.420000px;}
._32{width:30.360000px;}
._38{width:33.780000px;}
._3d{width:35.100000px;}
._3a{width:37.962000px;}
._3b{width:46.818000px;}
._3e{width:49.518000px;}
._2f{width:50.862000px;}
._3c{width:53.406000px;}
._39{width:54.864000px;}
._17{width:61.200000px;}
._1b{width:64.080000px;}
._36{width:65.818320px;}
._29{width:66.990840px;}
._2b{width:86.220000px;}
._2a{width:93.300000px;}
._21{width:97.860000px;}
._1a{width:108.900000px;}
._9{width:112.211880px;}
._25{width:117.840000px;}
._18{width:123.300000px;}
._a{width:158.153040px;}
._23{width:162.180000px;}
._20{width:165.540000px;}
._1e{width:176.640000px;}
._28{width:193.320000px;}
._19{width:196.200000px;}
._22{width:201.180000px;}
._27{width:203.340000px;}
._24{width:267.420000px;}
._26{width:415.200000px;}
._1d{width:422.400000px;}
._1c{width:445.200000px;}
._30{width:484.044000px;}
._1f{width:534.420000px;}
._2{width:858.655200px;}
.fc5{color:rgb(34,31,31);}
.fc4{color:rgb(174,58,63);}
.fc6{color:rgb(35,31,32);}
.fc3{color:rgb(255,255,255);}
.fc2{color:rgb(172,43,49);}
.fc1{color:rgb(34,31,34);}
.fc0{color:rgb(151,0,0);}
.fs9{font-size:34.980000px;}
.fs5{font-size:38.407800px;}
.fs6{font-size:41.976000px;}
.fs7{font-size:47.880000px;}
.fs1{font-size:48.000000px;}
.fs0{font-size:54.000000px;}
.fs2{font-size:60.000000px;}
.fs4{font-size:65.880000px;}
.fsa{font-size:66.000000px;}
.fs8{font-size:72.000000px;}
.fs3{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:63.214050px;}
.y2{bottom:64.714050px;}
.y6e{bottom:102.041250px;}
.y30{bottom:103.009650px;}
.y99{bottom:103.425000px;}
.y34{bottom:104.799750px;}
.y1dc{bottom:107.639700px;}
.y10e{bottom:110.809500px;}
.y1a6{bottom:111.825450px;}
.y67{bottom:114.399600px;}
.y6d{bottom:118.241250px;}
.y2f{bottom:121.009650px;}
.y33{bottom:122.799750px;}
.y1db{bottom:125.639700px;}
.yb9{bottom:126.999600px;}
.y10d{bottom:128.809500px;}
.y1a5{bottom:129.825450px;}
.y11c{bottom:130.599600px;}
.y66{bottom:132.399600px;}
.y98{bottom:133.287300px;}
.y6c{bottom:134.441250px;}
.y32{bottom:140.799750px;}
.y1da{bottom:143.639700px;}
.yb8{bottom:144.999600px;}
.y10c{bottom:146.809500px;}
.y11b{bottom:148.599600px;}
.y65{bottom:150.399600px;}
.yc8{bottom:150.641250px;}
.y1a4{bottom:150.825450px;}
.y6b{bottom:152.441250px;}
.y97{bottom:156.912300px;}
.y2e{bottom:157.009650px;}
.y31{bottom:158.799750px;}
.yb7{bottom:162.999600px;}
.y1d9{bottom:164.639700px;}
.y10b{bottom:164.809500px;}
.y11a{bottom:166.599600px;}
.yc7{bottom:166.841250px;}
.y64{bottom:168.399600px;}
.y1a3{bottom:168.825450px;}
.y6a{bottom:170.441250px;}
.y96{bottom:180.537300px;}
.yb6{bottom:180.999600px;}
.y1d8{bottom:182.639700px;}
.y109{bottom:182.809500px;}
.yc6{bottom:183.041250px;}
.y119{bottom:184.599600px;}
.y63{bottom:186.399600px;}
.y1a2{bottom:186.825450px;}
.y10a{bottom:187.804500px;}
.y179{bottom:191.025450px;}
.yb5{bottom:198.999600px;}
.yc5{bottom:199.241250px;}
.y1d7{bottom:200.639700px;}
.y108{bottom:200.809500px;}
.y118{bottom:202.599600px;}
.y95{bottom:204.162300px;}
.y62{bottom:204.399600px;}
.y2d{bottom:207.082350px;}
.y1a1{bottom:207.825450px;}
.y178{bottom:209.025450px;}
.y147{bottom:213.409650px;}
.yc4{bottom:215.441250px;}
.yb4{bottom:216.999600px;}
.y1d6{bottom:218.639700px;}
.y107{bottom:218.809500px;}
.y117{bottom:220.599600px;}
.y61{bottom:222.399600px;}
.y1a0{bottom:225.825450px;}
.y2c{bottom:225.982500px;}
.y177{bottom:227.025450px;}
.y94{bottom:227.787300px;}
.y146{bottom:231.409650px;}
.yc3{bottom:231.641250px;}
.yb3{bottom:234.999600px;}
.y106{bottom:236.809500px;}
.y116{bottom:238.599600px;}
.y1d5{bottom:239.639700px;}
.y60{bottom:240.399600px;}
.y19f{bottom:243.825450px;}
.y2b{bottom:244.882350px;}
.y176{bottom:245.025450px;}
.yc2{bottom:247.841250px;}
.y145{bottom:249.409650px;}
.y93{bottom:251.412300px;}
.yb2{bottom:252.999600px;}
.y105{bottom:254.809500px;}
.y115{bottom:256.599600px;}
.y1d4{bottom:257.639700px;}
.y5f{bottom:258.399600px;}
.y175{bottom:263.025450px;}
.y2a{bottom:263.782350px;}
.yc1{bottom:264.041250px;}
.y19e{bottom:264.825450px;}
.y144{bottom:267.409650px;}
.yb1{bottom:270.999600px;}
.y104{bottom:272.809500px;}
.y114{bottom:274.599600px;}
.y92{bottom:275.037300px;}
.y1d3{bottom:275.639700px;}
.yc0{bottom:280.241250px;}
.y174{bottom:281.025450px;}
.y29{bottom:282.682500px;}
.y19d{bottom:282.825450px;}
.y143{bottom:285.409650px;}
.yb0{bottom:288.999600px;}
.y103{bottom:290.809500px;}
.y113{bottom:292.599600px;}
.y1d2{bottom:293.639700px;}
.ybf{bottom:296.441250px;}
.y91{bottom:298.662300px;}
.y173{bottom:299.025450px;}
.y28{bottom:301.582500px;}
.y5e{bottom:303.399600px;}
.y142{bottom:303.409650px;}
.yaf{bottom:306.999600px;}
.y102{bottom:308.809500px;}
.y112{bottom:310.599600px;}
.y1d1{bottom:311.639700px;}
.ybe{bottom:312.641250px;}
.y172{bottom:317.025450px;}
.y19c{bottom:318.825450px;}
.y27{bottom:320.482350px;}
.y141{bottom:321.409650px;}
.y90{bottom:322.287300px;}
.y5d{bottom:323.199600px;}
.yae{bottom:324.999600px;}
.y101{bottom:326.809500px;}
.y111{bottom:328.599600px;}
.ybd{bottom:328.841250px;}
.y1d0{bottom:329.639700px;}
.y171{bottom:335.025450px;}
.y26{bottom:339.382350px;}
.y140{bottom:339.409650px;}
.yad{bottom:342.999600px;}
.y100{bottom:344.809500px;}
.ybc{bottom:345.041250px;}
.y8f{bottom:345.912300px;}
.y110{bottom:346.599600px;}
.y1cf{bottom:350.639700px;}
.y170{bottom:353.025450px;}
.y13f{bottom:357.409500px;}
.y25{bottom:358.282350px;}
.y19b{bottom:358.425450px;}
.yac{bottom:360.999600px;}
.yff{bottom:362.809500px;}
.ybb{bottom:363.041250px;}
.y10f{bottom:364.599600px;}
.y1ce{bottom:368.639700px;}
.y8e{bottom:369.537300px;}
.y16f{bottom:371.025450px;}
.y13e{bottom:375.409500px;}
.y19a{bottom:376.425450px;}
.y24{bottom:377.182500px;}
.y5c{bottom:378.999600px;}
.yfe{bottom:380.809500px;}
.yba{bottom:381.041250px;}
.y69{bottom:382.599600px;}
.y1cd{bottom:386.639700px;}
.y16e{bottom:389.025450px;}
.y8d{bottom:393.162300px;}
.y13d{bottom:393.409500px;}
.y199{bottom:394.425450px;}
.y23{bottom:396.082500px;}
.yab{bottom:396.999600px;}
.yfd{bottom:398.809500px;}
.y68{bottom:400.599600px;}
.y16d{bottom:407.025450px;}
.y1cc{bottom:407.639700px;}
.y13c{bottom:411.409500px;}
.y198{bottom:412.425450px;}
.y22{bottom:414.982350px;}
.yaa{bottom:414.999600px;}
.y8c{bottom:416.787300px;}
.yfc{bottom:416.809500px;}
.y5b{bottom:418.599600px;}
.y16c{bottom:425.025450px;}
.y1cb{bottom:425.639700px;}
.y13b{bottom:429.409500px;}
.y197{bottom:430.425450px;}
.ya9{bottom:432.999600px;}
.y21{bottom:433.882350px;}
.yfb{bottom:434.809500px;}
.y5a{bottom:436.599600px;}
.y8b{bottom:440.412300px;}
.y16b{bottom:443.025450px;}
.y1ca{bottom:443.639700px;}
.y13a{bottom:447.409500px;}
.y196{bottom:448.425450px;}
.ya8{bottom:450.999600px;}
.y20{bottom:452.782350px;}
.yfa{bottom:452.809500px;}
.y59{bottom:454.599600px;}
.y16a{bottom:461.025450px;}
.y1c9{bottom:461.639700px;}
.y8a{bottom:464.037300px;}
.y139{bottom:465.409500px;}
.y195{bottom:466.425450px;}
.ya7{bottom:468.999600px;}
.yf9{bottom:470.809500px;}
.y1f{bottom:471.682500px;}
.y58{bottom:472.599600px;}
.y169{bottom:479.025450px;}
.y1c8{bottom:479.639700px;}
.y138{bottom:483.409500px;}
.y194{bottom:484.425450px;}
.y89{bottom:486.537300px;}
.ya6{bottom:486.999600px;}
.yf8{bottom:488.809500px;}
.y1e{bottom:490.582500px;}
.y57{bottom:490.599600px;}
.y168{bottom:497.025450px;}
.y1c7{bottom:497.639700px;}
.y137{bottom:501.409500px;}
.ya5{bottom:504.999600px;}
.yf7{bottom:506.809500px;}
.y56{bottom:508.599600px;}
.y88{bottom:509.037300px;}
.y1d{bottom:509.482350px;}
.y167{bottom:515.025450px;}
.y1c6{bottom:518.639700px;}
.y136{bottom:519.409500px;}
.y193{bottom:520.425450px;}
.yf6{bottom:524.809500px;}
.y55{bottom:526.599600px;}
.y1c{bottom:528.382350px;}
.y87{bottom:532.662300px;}
.y166{bottom:533.025450px;}
.y1c5{bottom:536.639700px;}
.y135{bottom:537.409500px;}
.yf5{bottom:542.809500px;}
.y54{bottom:544.599600px;}
.y1b{bottom:547.282350px;}
.ya4{bottom:549.999600px;}
.y165{bottom:551.025450px;}
.y1c4{bottom:554.639700px;}
.y134{bottom:555.409500px;}
.y86{bottom:556.287300px;}
.y192{bottom:560.025450px;}
.yf4{bottom:560.809500px;}
.y53{bottom:562.599600px;}
.y1f2{bottom:563.639700px;}
.y1a{bottom:566.182500px;}
.y164{bottom:569.025450px;}
.ya3{bottom:569.799600px;}
.y1c3{bottom:572.639700px;}
.y133{bottom:573.409500px;}
.y191{bottom:578.025450px;}
.yf3{bottom:578.809500px;}
.y85{bottom:579.912300px;}
.y52{bottom:580.599600px;}
.y1f1{bottom:581.639700px;}
.y19{bottom:585.082500px;}
.y163{bottom:587.025450px;}
.y1c2{bottom:590.639700px;}
.y132{bottom:591.409500px;}
.y190{bottom:596.025450px;}
.yf2{bottom:596.809500px;}
.y51{bottom:598.599600px;}
.y1f0{bottom:599.639700px;}
.y84{bottom:603.537300px;}
.y162{bottom:605.025450px;}
.ya2{bottom:607.599600px;}
.y131{bottom:609.409500px;}
.y1c1{bottom:611.639700px;}
.y18{bottom:612.982350px;}
.y18f{bottom:614.025450px;}
.yf1{bottom:614.809500px;}
.y50{bottom:616.599600px;}
.y1ef{bottom:617.639700px;}
.y161{bottom:623.025450px;}
.ya1{bottom:625.599600px;}
.y83{bottom:627.162300px;}
.y130{bottom:627.409500px;}
.y1c0{bottom:629.639700px;}
.y18e{bottom:632.025450px;}
.yf0{bottom:632.809500px;}
.y4f{bottom:634.599600px;}
.y1ee{bottom:635.639700px;}
.y17{bottom:639.082500px;}
.y160{bottom:641.025450px;}
.ya0{bottom:643.599600px;}
.y12f{bottom:645.409500px;}
.y1bf{bottom:647.639700px;}
.y18d{bottom:650.025450px;}
.y82{bottom:650.787300px;}
.yef{bottom:650.809500px;}
.y4e{bottom:652.599600px;}
.y16{bottom:653.446500px;}
.y1ed{bottom:653.639700px;}
.y15f{bottom:659.025450px;}
.y9f{bottom:661.599600px;}
.y12e{bottom:663.409500px;}
.y1be{bottom:668.639700px;}
.yee{bottom:668.809500px;}
.y4d{bottom:670.599600px;}
.y81{bottom:674.412300px;}
.y1ec{bottom:674.639700px;}
.y15e{bottom:677.025450px;}
.y15{bottom:678.310350px;}
.y9e{bottom:679.599600px;}
.y12d{bottom:681.409500px;}
.y1bd{bottom:686.639700px;}
.yed{bottom:686.809500px;}
.y4c{bottom:688.599600px;}
.y1eb{bottom:692.639700px;}
.y15d{bottom:695.025450px;}
.y9d{bottom:697.599600px;}
.y14{bottom:697.810350px;}
.y80{bottom:698.037300px;}
.y1bc{bottom:704.639700px;}
.yec{bottom:704.809500px;}
.y4b{bottom:706.599600px;}
.y1ea{bottom:710.639700px;}
.y15c{bottom:713.025450px;}
.y9c{bottom:715.599600px;}
.y13{bottom:717.310350px;}
.y7f{bottom:721.662300px;}
.yeb{bottom:722.809500px;}
.y4a{bottom:724.599600px;}
.y1bb{bottom:725.639700px;}
.y12c{bottom:726.409500px;}
.y1e9{bottom:728.639700px;}
.y15b{bottom:731.025450px;}
.y18c{bottom:732.825450px;}
.y9b{bottom:733.599600px;}
.y12{bottom:739.255350px;}
.yea{bottom:740.809500px;}
.y49{bottom:742.599600px;}
.y1ba{bottom:743.639700px;}
.y7e{bottom:745.287300px;}
.y12b{bottom:746.209650px;}
.y15a{bottom:749.025450px;}
.y1e8{bottom:749.639700px;}
.y18b{bottom:750.825450px;}
.y9a{bottom:751.599600px;}
.ye9{bottom:758.809500px;}
.y48{bottom:760.599600px;}
.y1b9{bottom:761.639700px;}
.y159{bottom:767.025450px;}
.y11{bottom:767.194350px;}
.y1e7{bottom:767.639700px;}
.y18a{bottom:768.825450px;}
.y7d{bottom:768.912300px;}
.ye8{bottom:776.809500px;}
.y47{bottom:778.599600px;}
.y1b8{bottom:782.639700px;}
.y12a{bottom:784.009500px;}
.y158{bottom:785.025450px;}
.y1e6{bottom:785.639700px;}
.y189{bottom:786.825450px;}
.y10{bottom:788.794350px;}
.y7c{bottom:792.537300px;}
.ye7{bottom:794.809500px;}
.y46{bottom:796.599600px;}
.yd6{bottom:800.559300px;}
.y1b7{bottom:800.639700px;}
.y129{bottom:802.009500px;}
.y157{bottom:803.025450px;}
.y1e5{bottom:803.639700px;}
.y188{bottom:804.825450px;}
.yf{bottom:810.394350px;}
.ye6{bottom:812.809500px;}
.y45{bottom:814.599600px;}
.y7b{bottom:816.162300px;}
.y128{bottom:820.009500px;}
.yd5{bottom:820.209300px;}
.y156{bottom:821.025450px;}
.y1b6{bottom:821.639700px;}
.y187{bottom:822.825450px;}
.y1e4{bottom:824.639700px;}
.ye{bottom:826.000350px;}
.ye5{bottom:830.809500px;}
.y44{bottom:832.599600px;}
.y127{bottom:838.009500px;}
.y155{bottom:839.025450px;}
.y1b5{bottom:839.639700px;}
.y7a{bottom:839.787300px;}
.yd4{bottom:839.859300px;}
.y186{bottom:840.825450px;}
.y1e3{bottom:842.639700px;}
.yd{bottom:846.394350px;}
.ye4{bottom:848.809500px;}
.y43{bottom:850.599600px;}
.y126{bottom:856.009500px;}
.y154{bottom:857.025450px;}
.y1b4{bottom:857.639700px;}
.y185{bottom:858.825450px;}
.yd3{bottom:859.509300px;}
.y1e2{bottom:860.639700px;}
.yc{bottom:862.000350px;}
.y79{bottom:863.412300px;}
.ye3{bottom:866.809500px;}
.y42{bottom:868.599600px;}
.y125{bottom:874.009500px;}
.y153{bottom:875.025450px;}
.y1b3{bottom:875.639700px;}
.y184{bottom:876.825450px;}
.y1e1{bottom:878.639700px;}
.yd2{bottom:879.159300px;}
.yb{bottom:882.394350px;}
.ye2{bottom:884.809500px;}
.y41{bottom:886.599600px;}
.y78{bottom:887.037300px;}
.y124{bottom:892.009500px;}
.y152{bottom:893.025450px;}
.y183{bottom:894.825450px;}
.y1b2{bottom:896.639700px;}
.yd1{bottom:898.809300px;}
.ye1{bottom:902.809500px;}
.ya{bottom:903.994350px;}
.y40{bottom:904.599600px;}
.y123{bottom:910.009500px;}
.y77{bottom:910.662300px;}
.y151{bottom:911.025450px;}
.y182{bottom:912.825450px;}
.y1b1{bottom:914.639700px;}
.y1e0{bottom:917.639700px;}
.yd0{bottom:918.459300px;}
.ye0{bottom:920.809500px;}
.y3f{bottom:922.599600px;}
.y9{bottom:925.594350px;}
.y122{bottom:928.009500px;}
.y150{bottom:929.025450px;}
.y181{bottom:930.825450px;}
.y76{bottom:934.287300px;}
.y1b0{bottom:935.639700px;}
.ycf{bottom:938.109300px;}
.ydf{bottom:938.809500px;}
.y3e{bottom:940.599600px;}
.y8{bottom:941.200350px;}
.y121{bottom:946.009500px;}
.y14f{bottom:947.025450px;}
.y180{bottom:948.825450px;}
.y1af{bottom:953.639700px;}
.yde{bottom:956.809500px;}
.yce{bottom:957.759300px;}
.y75{bottom:957.912300px;}
.y3d{bottom:958.599600px;}
.y7{bottom:960.964350px;}
.y120{bottom:964.009500px;}
.y14e{bottom:965.025450px;}
.y17f{bottom:966.825450px;}
.y1ae{bottom:971.639700px;}
.ydd{bottom:974.809500px;}
.y3c{bottom:976.599600px;}
.ycd{bottom:977.409300px;}
.y6{bottom:980.728350px;}
.y74{bottom:981.537300px;}
.y11f{bottom:982.009500px;}
.y14d{bottom:983.025450px;}
.y17e{bottom:984.825450px;}
.y1ad{bottom:989.639700px;}
.y1df{bottom:992.639700px;}
.ydc{bottom:992.809500px;}
.y3b{bottom:994.599600px;}
.ycc{bottom:997.217700px;}
.y11e{bottom:1000.009500px;}
.y14c{bottom:1001.025450px;}
.y17d{bottom:1002.825450px;}
.y73{bottom:1005.162300px;}
.y1ac{bottom:1007.639700px;}
.y1de{bottom:1010.639700px;}
.ydb{bottom:1010.809500px;}
.y3a{bottom:1012.599600px;}
.ycb{bottom:1015.217700px;}
.y5{bottom:1018.492350px;}
.y14b{bottom:1019.025450px;}
.y17c{bottom:1020.825450px;}
.y1ab{bottom:1025.639700px;}
.y1dd{bottom:1028.639700px;}
.y72{bottom:1028.787300px;}
.yda{bottom:1028.809500px;}
.y39{bottom:1030.599600px;}
.yca{bottom:1035.409500px;}
.y14a{bottom:1037.025450px;}
.y17b{bottom:1038.825450px;}
.y4{bottom:1043.692350px;}
.y11d{bottom:1045.009500px;}
.y1aa{bottom:1046.639700px;}
.yd9{bottom:1046.809500px;}
.y38{bottom:1048.599600px;}
.y71{bottom:1054.379550px;}
.y17a{bottom:1056.825450px;}
.yc9{bottom:1057.009500px;}
.y1a9{bottom:1064.639700px;}
.yd8{bottom:1064.809500px;}
.y37{bottom:1066.599600px;}
.y70{bottom:1078.609500px;}
.y149{bottom:1082.025450px;}
.y1a8{bottom:1082.639700px;}
.y36{bottom:1084.599600px;}
.y6f{bottom:1100.209500px;}
.yd7{bottom:1100.809500px;}
.y148{bottom:1101.825450px;}
.y35{bottom:1102.599600px;}
.y1a7{bottom:1103.639700px;}
.y3{bottom:1108.412250px;}
.h12{height:24.304951px;}
.h6{height:30.908109px;}
.ha{height:34.857949px;}
.h9{height:35.910000px;}
.h8{height:36.003516px;}
.h7{height:36.703125px;}
.h10{height:37.520508px;}
.hf{height:40.664062px;}
.h2{height:41.290706px;}
.h1{height:41.291016px;}
.hc{height:41.689453px;}
.hd{height:44.284951px;}
.he{height:44.730469px;}
.hb{height:48.796875px;}
.h4{height:51.306264px;}
.h5{height:51.306864px;}
.h3{height:64.230469px;}
.h11{height:76.664062px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x2{left:69.000000px;}
.x3{left:76.500000px;}
.x4{left:87.300000px;}
.xa{left:92.550000px;}
.x14{left:114.000000px;}
.x7{left:123.300000px;}
.x6{left:141.300150px;}
.x5{left:177.300150px;}
.xb{left:215.100000px;}
.x10{left:238.653600px;}
.x11{left:251.554800px;}
.x12{left:302.641650px;}
.x13{left:306.942000px;}
.xc{left:335.700000px;}
.x8{left:486.900000px;}
.xd{left:492.300000px;}
.x15{left:513.750000px;}
.x9{left:522.750000px;}
.xe{left:566.250000px;}
.xf{left:638.250000px;}
.x1{left:692.477100px;}
@media print{
.v3{vertical-align:-21.311467pt;}
.v1{vertical-align:-4.078400pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:17.760000pt;}
.v2{vertical-align:19.500267pt;}
.v5{vertical-align:32.000000pt;}
.ls5{letter-spacing:-1.973333pt;}
.ls1{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.000046pt;}
.ls7{letter-spacing:0.387789pt;}
.ls0{letter-spacing:2.240000pt;}
.ls2{letter-spacing:4.946144pt;}
.ls4{letter-spacing:147.146667pt;}
.ls3{letter-spacing:225.386667pt;}
.ls8{letter-spacing:225.920000pt;}
.ws2{word-spacing:-20.027520pt;}
.ws4{word-spacing:-18.240000pt;}
.ws19{word-spacing:-13.333333pt;}
.ws3{word-spacing:-11.916800pt;}
.ws1{word-spacing:-11.675971pt;}
.ws18{word-spacing:-7.773333pt;}
.ws8{word-spacing:-3.923520pt;}
.wsa7{word-spacing:-2.293333pt;}
.ws13{word-spacing:-2.240000pt;}
.ws4a{word-spacing:-1.546667pt;}
.ws11{word-spacing:-1.344000pt;}
.wse{word-spacing:-1.296000pt;}
.ws10{word-spacing:-1.248000pt;}
.ws56{word-spacing:-0.960000pt;}
.wsb{word-spacing:-0.864000pt;}
.ws1a{word-spacing:-0.693333pt;}
.ws9{word-spacing:-0.672000pt;}
.ws4b{word-spacing:-0.640000pt;}
.wsdf{word-spacing:-0.624000pt;}
.ws43{word-spacing:-0.586667pt;}
.wsd9{word-spacing:-0.576000pt;}
.wsef{word-spacing:-0.480000pt;}
.wsed{word-spacing:-0.384000pt;}
.wsa6{word-spacing:-0.320000pt;}
.ws2c{word-spacing:-0.266667pt;}
.ws0{word-spacing:-0.048000pt;}
.ws5{word-spacing:0.000000pt;}
.wsb2{word-spacing:0.106667pt;}
.ws8a{word-spacing:0.426667pt;}
.ws60{word-spacing:0.480000pt;}
.ws6c{word-spacing:0.533333pt;}
.wse5{word-spacing:0.576000pt;}
.wsc8{word-spacing:0.586667pt;}
.ws15{word-spacing:0.640000pt;}
.ws5f{word-spacing:0.693333pt;}
.ws64{word-spacing:0.704000pt;}
.ws6f{word-spacing:0.853333pt;}
.ws9c{word-spacing:0.906667pt;}
.ws46{word-spacing:1.066667pt;}
.wsf8{word-spacing:1.104000pt;}
.wsb5{word-spacing:1.120000pt;}
.wsb3{word-spacing:1.173333pt;}
.ws88{word-spacing:1.226667pt;}
.wsee{word-spacing:1.248000pt;}
.ws67{word-spacing:1.280000pt;}
.wsa{word-spacing:1.296000pt;}
.wsaa{word-spacing:1.386667pt;}
.ws77{word-spacing:1.392000pt;}
.ws23{word-spacing:1.440000pt;}
.wse9{word-spacing:1.488000pt;}
.ws4e{word-spacing:1.600000pt;}
.ws5d{word-spacing:1.706667pt;}
.wsfd{word-spacing:1.728000pt;}
.ws4c{word-spacing:1.760000pt;}
.ws41{word-spacing:1.813333pt;}
.ws34{word-spacing:1.877333pt;}
.ws3b{word-spacing:1.920000pt;}
.ws35{word-spacing:1.973333pt;}
.wse3{word-spacing:2.016000pt;}
.ws1f{word-spacing:2.026667pt;}
.wse4{word-spacing:2.064000pt;}
.wsce{word-spacing:2.080000pt;}
.wsb1{word-spacing:2.133333pt;}
.ws12{word-spacing:2.256000pt;}
.ws1d{word-spacing:2.293333pt;}
.wsd{word-spacing:2.352000pt;}
.ws3c{word-spacing:2.400000pt;}
.ws7b{word-spacing:2.496000pt;}
.ws30{word-spacing:2.506667pt;}
.ws91{word-spacing:2.666667pt;}
.wsfa{word-spacing:2.784000pt;}
.wsa4{word-spacing:2.880000pt;}
.ws68{word-spacing:2.933333pt;}
.wsc3{word-spacing:2.986667pt;}
.wscf{word-spacing:3.040000pt;}
.wsc{word-spacing:3.072000pt;}
.ws82{word-spacing:3.146667pt;}
.wsf{word-spacing:3.168000pt;}
.wsa5{word-spacing:3.200000pt;}
.ws86{word-spacing:3.253333pt;}
.wsd2{word-spacing:3.306667pt;}
.wsd3{word-spacing:3.360000pt;}
.wscb{word-spacing:3.413333pt;}
.ws7{word-spacing:3.455040pt;}
.wsa3{word-spacing:3.466667pt;}
.ws2b{word-spacing:3.520000pt;}
.wsb7{word-spacing:3.680000pt;}
.ws6a{word-spacing:3.733333pt;}
.wsda{word-spacing:3.744000pt;}
.ws4f{word-spacing:3.786667pt;}
.ws38{word-spacing:3.840000pt;}
.ws7f{word-spacing:3.893333pt;}
.ws98{word-spacing:4.000000pt;}
.ws94{word-spacing:4.053333pt;}
.wsa0{word-spacing:4.160000pt;}
.ws85{word-spacing:4.213333pt;}
.ws9e{word-spacing:4.266667pt;}
.ws25{word-spacing:4.373333pt;}
.ws22{word-spacing:4.426667pt;}
.wsdd{word-spacing:4.464000pt;}
.ws66{word-spacing:4.480000pt;}
.wsfb{word-spacing:4.704000pt;}
.ws28{word-spacing:4.746667pt;}
.wsfe{word-spacing:4.944000pt;}
.ws45{word-spacing:4.960000pt;}
.wscc{word-spacing:5.013333pt;}
.ws1b{word-spacing:5.066667pt;}
.ws87{word-spacing:5.120000pt;}
.ws6d{word-spacing:5.173333pt;}
.ws97{word-spacing:5.226667pt;}
.wsec{word-spacing:5.232000pt;}
.ws78{word-spacing:5.280000pt;}
.ws9f{word-spacing:5.493333pt;}
.wsf9{word-spacing:5.520000pt;}
.wsf5{word-spacing:5.616000pt;}
.ws3d{word-spacing:5.653333pt;}
.ws89{word-spacing:5.706667pt;}
.wsf0{word-spacing:5.808000pt;}
.ws63{word-spacing:5.813333pt;}
.ws49{word-spacing:5.866667pt;}
.ws2f{word-spacing:6.026667pt;}
.wsf7{word-spacing:6.192000pt;}
.ws6b{word-spacing:6.240000pt;}
.wsf6{word-spacing:6.336000pt;}
.ws26{word-spacing:6.346667pt;}
.ws33{word-spacing:6.400000pt;}
.wsc0{word-spacing:6.560000pt;}
.ws55{word-spacing:6.592000pt;}
.ws29{word-spacing:6.613333pt;}
.ws24{word-spacing:6.666667pt;}
.ws42{word-spacing:6.720000pt;}
.ws62{word-spacing:6.826667pt;}
.ws79{word-spacing:6.960000pt;}
.ws40{word-spacing:7.146667pt;}
.ws3e{word-spacing:7.200000pt;}
.wsb9{word-spacing:7.520000pt;}
.ws1e{word-spacing:7.573333pt;}
.wsc7{word-spacing:7.626667pt;}
.ws96{word-spacing:7.680000pt;}
.wsaf{word-spacing:7.733333pt;}
.ws3a{word-spacing:7.840000pt;}
.wsfc{word-spacing:7.920000pt;}
.wsab{word-spacing:7.946667pt;}
.ws80{word-spacing:8.106667pt;}
.ws90{word-spacing:8.160000pt;}
.ws5e{word-spacing:8.213333pt;}
.ws73{word-spacing:8.352000pt;}
.wsc2{word-spacing:8.373333pt;}
.wsd5{word-spacing:8.426667pt;}
.ws2d{word-spacing:8.480000pt;}
.wsf1{word-spacing:8.496000pt;}
.ws83{word-spacing:8.533333pt;}
.ws81{word-spacing:8.640000pt;}
.ws84{word-spacing:8.960000pt;}
.wsbc{word-spacing:9.173333pt;}
.wsca{word-spacing:9.493333pt;}
.wsde{word-spacing:9.504000pt;}
.ws14{word-spacing:9.546667pt;}
.ws16{word-spacing:9.706667pt;}
.ws37{word-spacing:9.760000pt;}
.wsa2{word-spacing:9.813333pt;}
.wsf3{word-spacing:9.888000pt;}
.wsb0{word-spacing:9.920000pt;}
.wseb{word-spacing:9.936000pt;}
.ws21{word-spacing:9.973333pt;}
.ws4d{word-spacing:10.133333pt;}
.ws8b{word-spacing:10.186667pt;}
.ws95{word-spacing:10.613333pt;}
.wsd7{word-spacing:10.666667pt;}
.ws8d{word-spacing:10.720000pt;}
.ws32{word-spacing:10.986667pt;}
.ws3f{word-spacing:11.093333pt;}
.ws69{word-spacing:11.200000pt;}
.ws8c{word-spacing:11.306667pt;}
.ws61{word-spacing:11.413333pt;}
.wsa1{word-spacing:11.573333pt;}
.ws99{word-spacing:11.733333pt;}
.ws7a{word-spacing:12.032000pt;}
.wsdb{word-spacing:12.336000pt;}
.wsa9{word-spacing:12.480000pt;}
.ws70{word-spacing:12.586667pt;}
.ws2a{word-spacing:12.800000pt;}
.ws1c{word-spacing:13.066667pt;}
.wsb8{word-spacing:13.082667pt;}
.ws27{word-spacing:13.226667pt;}
.wsd8{word-spacing:13.333333pt;}
.wsb4{word-spacing:13.440000pt;}
.ws2e{word-spacing:13.493333pt;}
.ws44{word-spacing:13.600000pt;}
.wse1{word-spacing:13.632000pt;}
.wsea{word-spacing:13.680000pt;}
.wsc9{word-spacing:13.706667pt;}
.wsb6{word-spacing:13.760000pt;}
.wse7{word-spacing:14.016000pt;}
.ws31{word-spacing:14.026667pt;}
.wsf2{word-spacing:14.112000pt;}
.ws9a{word-spacing:14.240000pt;}
.wse0{word-spacing:14.880000pt;}
.wsd6{word-spacing:14.933333pt;}
.ws93{word-spacing:15.253333pt;}
.ws48{word-spacing:15.466667pt;}
.ws74{word-spacing:15.840000pt;}
.wse2{word-spacing:16.176000pt;}
.wsd1{word-spacing:16.266667pt;}
.ws65{word-spacing:16.480000pt;}
.wsbf{word-spacing:16.640000pt;}
.wsae{word-spacing:16.693333pt;}
.ws36{word-spacing:16.746667pt;}
.ws76{word-spacing:16.896000pt;}
.ws92{word-spacing:16.960000pt;}
.wsa8{word-spacing:17.386667pt;}
.ws9b{word-spacing:18.133333pt;}
.wsd4{word-spacing:18.240000pt;}
.ws71{word-spacing:18.400000pt;}
.ws7e{word-spacing:18.453333pt;}
.wsdc{word-spacing:18.576000pt;}
.wsac{word-spacing:19.253333pt;}
.ws17{word-spacing:19.360000pt;}
.ws9d{word-spacing:20.320000pt;}
.ws39{word-spacing:20.373333pt;}
.wsc5{word-spacing:20.480000pt;}
.ws20{word-spacing:20.693333pt;}
.wscd{word-spacing:21.546667pt;}
.ws6e{word-spacing:21.760000pt;}
.ws7c{word-spacing:22.016000pt;}
.ws75{word-spacing:22.128000pt;}
.ws47{word-spacing:22.560000pt;}
.ws72{word-spacing:23.146667pt;}
.wsf4{word-spacing:23.520000pt;}
.ws7d{word-spacing:23.946667pt;}
.ws8e{word-spacing:24.640000pt;}
.wsba{word-spacing:25.120000pt;}
.wsc6{word-spacing:28.106667pt;}
.wsd0{word-spacing:29.120000pt;}
.wsc1{word-spacing:29.450667pt;}
.ws8f{word-spacing:30.986667pt;}
.wse8{word-spacing:31.056000pt;}
.wsbd{word-spacing:31.093333pt;}
.wsbb{word-spacing:33.226667pt;}
.wsad{word-spacing:37.173333pt;}
.wsc4{word-spacing:37.333333pt;}
.wse6{word-spacing:43.392000pt;}
.ws6{word-spacing:60.405333pt;}
.ws52{word-spacing:69.600000pt;}
.ws50{word-spacing:73.653333pt;}
.ws53{word-spacing:91.413333pt;}
.wsbe{word-spacing:142.933333pt;}
.ws5b{word-spacing:182.933333pt;}
.ws59{word-spacing:188.853333pt;}
.ws57{word-spacing:209.600000pt;}
.ws51{word-spacing:212.053333pt;}
.ws5a{word-spacing:224.906667pt;}
.ws58{word-spacing:314.666667pt;}
.ws5c{word-spacing:316.640000pt;}
.ws54{word-spacing:361.653333pt;}
._0{margin-left:-1389.172267pt;}
._3f{margin-left:-19.728000pt;}
._d{margin-left:-15.413333pt;}
._4{margin-left:-6.997333pt;}
._b{margin-left:-5.888000pt;}
._3{margin-left:-4.187413pt;}
._8{margin-left:-3.207467pt;}
._1{margin-left:-1.584000pt;}
._16{width:0.960000pt;}
._14{width:1.952000pt;}
._c{width:2.976000pt;}
._15{width:4.213333pt;}
._12{width:5.466453pt;}
._5{width:6.433387pt;}
._31{width:7.603947pt;}
._7{width:8.554667pt;}
._6{width:9.525333pt;}
._11{width:10.666667pt;}
._10{width:11.626667pt;}
._2d{width:13.648000pt;}
._e{width:14.560000pt;}
._13{width:15.520000pt;}
._2e{width:16.810667pt;}
._f{width:17.706667pt;}
._40{width:18.960000pt;}
._35{width:19.952640pt;}
._34{width:21.040747pt;}
._33{width:22.240000pt;}
._37{width:23.306667pt;}
._2c{width:24.373333pt;}
._32{width:26.986667pt;}
._38{width:30.026667pt;}
._3d{width:31.200000pt;}
._3a{width:33.744000pt;}
._3b{width:41.616000pt;}
._3e{width:44.016000pt;}
._2f{width:45.210667pt;}
._3c{width:47.472000pt;}
._39{width:48.768000pt;}
._17{width:54.400000pt;}
._1b{width:56.960000pt;}
._36{width:58.505173pt;}
._29{width:59.547413pt;}
._2b{width:76.640000pt;}
._2a{width:82.933333pt;}
._21{width:86.986667pt;}
._1a{width:96.800000pt;}
._9{width:99.743893pt;}
._25{width:104.746667pt;}
._18{width:109.600000pt;}
._a{width:140.580480pt;}
._23{width:144.160000pt;}
._20{width:147.146667pt;}
._1e{width:157.013333pt;}
._28{width:171.840000pt;}
._19{width:174.400000pt;}
._22{width:178.826667pt;}
._27{width:180.746667pt;}
._24{width:237.706667pt;}
._26{width:369.066667pt;}
._1d{width:375.466667pt;}
._1c{width:395.733333pt;}
._30{width:430.261333pt;}
._1f{width:475.040000pt;}
._2{width:763.249067pt;}
.fs9{font-size:31.093333pt;}
.fs5{font-size:34.140267pt;}
.fs6{font-size:37.312000pt;}
.fs7{font-size:42.560000pt;}
.fs1{font-size:42.666667pt;}
.fs0{font-size:48.000000pt;}
.fs2{font-size:53.333333pt;}
.fs4{font-size:58.560000pt;}
.fsa{font-size:58.666667pt;}
.fs8{font-size:64.000000pt;}
.fs3{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:56.190267pt;}
.y2{bottom:57.523600pt;}
.y6e{bottom:90.703333pt;}
.y30{bottom:91.564133pt;}
.y99{bottom:91.933333pt;}
.y34{bottom:93.155333pt;}
.y1dc{bottom:95.679733pt;}
.y10e{bottom:98.497333pt;}
.y1a6{bottom:99.400400pt;}
.y67{bottom:101.688533pt;}
.y6d{bottom:105.103333pt;}
.y2f{bottom:107.564133pt;}
.y33{bottom:109.155333pt;}
.y1db{bottom:111.679733pt;}
.yb9{bottom:112.888533pt;}
.y10d{bottom:114.497333pt;}
.y1a5{bottom:115.400400pt;}
.y11c{bottom:116.088533pt;}
.y66{bottom:117.688533pt;}
.y98{bottom:118.477600pt;}
.y6c{bottom:119.503333pt;}
.y32{bottom:125.155333pt;}
.y1da{bottom:127.679733pt;}
.yb8{bottom:128.888533pt;}
.y10c{bottom:130.497333pt;}
.y11b{bottom:132.088533pt;}
.y65{bottom:133.688533pt;}
.yc8{bottom:133.903333pt;}
.y1a4{bottom:134.067067pt;}
.y6b{bottom:135.503333pt;}
.y97{bottom:139.477600pt;}
.y2e{bottom:139.564133pt;}
.y31{bottom:141.155333pt;}
.yb7{bottom:144.888533pt;}
.y1d9{bottom:146.346400pt;}
.y10b{bottom:146.497333pt;}
.y11a{bottom:148.088533pt;}
.yc7{bottom:148.303333pt;}
.y64{bottom:149.688533pt;}
.y1a3{bottom:150.067067pt;}
.y6a{bottom:151.503333pt;}
.y96{bottom:160.477600pt;}
.yb6{bottom:160.888533pt;}
.y1d8{bottom:162.346400pt;}
.y109{bottom:162.497333pt;}
.yc6{bottom:162.703333pt;}
.y119{bottom:164.088533pt;}
.y63{bottom:165.688533pt;}
.y1a2{bottom:166.067067pt;}
.y10a{bottom:166.937333pt;}
.y179{bottom:169.800400pt;}
.yb5{bottom:176.888533pt;}
.yc5{bottom:177.103333pt;}
.y1d7{bottom:178.346400pt;}
.y108{bottom:178.497333pt;}
.y118{bottom:180.088533pt;}
.y95{bottom:181.477600pt;}
.y62{bottom:181.688533pt;}
.y2d{bottom:184.073200pt;}
.y1a1{bottom:184.733733pt;}
.y178{bottom:185.800400pt;}
.y147{bottom:189.697467pt;}
.yc4{bottom:191.503333pt;}
.yb4{bottom:192.888533pt;}
.y1d6{bottom:194.346400pt;}
.y107{bottom:194.497333pt;}
.y117{bottom:196.088533pt;}
.y61{bottom:197.688533pt;}
.y1a0{bottom:200.733733pt;}
.y2c{bottom:200.873333pt;}
.y177{bottom:201.800400pt;}
.y94{bottom:202.477600pt;}
.y146{bottom:205.697467pt;}
.yc3{bottom:205.903333pt;}
.yb3{bottom:208.888533pt;}
.y106{bottom:210.497333pt;}
.y116{bottom:212.088533pt;}
.y1d5{bottom:213.013067pt;}
.y60{bottom:213.688533pt;}
.y19f{bottom:216.733733pt;}
.y2b{bottom:217.673200pt;}
.y176{bottom:217.800400pt;}
.yc2{bottom:220.303333pt;}
.y145{bottom:221.697467pt;}
.y93{bottom:223.477600pt;}
.yb2{bottom:224.888533pt;}
.y105{bottom:226.497333pt;}
.y115{bottom:228.088533pt;}
.y1d4{bottom:229.013067pt;}
.y5f{bottom:229.688533pt;}
.y175{bottom:233.800400pt;}
.y2a{bottom:234.473200pt;}
.yc1{bottom:234.703333pt;}
.y19e{bottom:235.400400pt;}
.y144{bottom:237.697467pt;}
.yb1{bottom:240.888533pt;}
.y104{bottom:242.497333pt;}
.y114{bottom:244.088533pt;}
.y92{bottom:244.477600pt;}
.y1d3{bottom:245.013067pt;}
.yc0{bottom:249.103333pt;}
.y174{bottom:249.800400pt;}
.y29{bottom:251.273333pt;}
.y19d{bottom:251.400400pt;}
.y143{bottom:253.697467pt;}
.yb0{bottom:256.888533pt;}
.y103{bottom:258.497333pt;}
.y113{bottom:260.088533pt;}
.y1d2{bottom:261.013067pt;}
.ybf{bottom:263.503333pt;}
.y91{bottom:265.477600pt;}
.y173{bottom:265.800400pt;}
.y28{bottom:268.073333pt;}
.y5e{bottom:269.688533pt;}
.y142{bottom:269.697467pt;}
.yaf{bottom:272.888533pt;}
.y102{bottom:274.497333pt;}
.y112{bottom:276.088533pt;}
.y1d1{bottom:277.013067pt;}
.ybe{bottom:277.903333pt;}
.y172{bottom:281.800400pt;}
.y19c{bottom:283.400400pt;}
.y27{bottom:284.873200pt;}
.y141{bottom:285.697467pt;}
.y90{bottom:286.477600pt;}
.y5d{bottom:287.288533pt;}
.yae{bottom:288.888533pt;}
.y101{bottom:290.497333pt;}
.y111{bottom:292.088533pt;}
.ybd{bottom:292.303333pt;}
.y1d0{bottom:293.013067pt;}
.y171{bottom:297.800400pt;}
.y26{bottom:301.673200pt;}
.y140{bottom:301.697467pt;}
.yad{bottom:304.888533pt;}
.y100{bottom:306.497333pt;}
.ybc{bottom:306.703333pt;}
.y8f{bottom:307.477600pt;}
.y110{bottom:308.088533pt;}
.y1cf{bottom:311.679733pt;}
.y170{bottom:313.800400pt;}
.y13f{bottom:317.697333pt;}
.y25{bottom:318.473200pt;}
.y19b{bottom:318.600400pt;}
.yac{bottom:320.888533pt;}
.yff{bottom:322.497333pt;}
.ybb{bottom:322.703333pt;}
.y10f{bottom:324.088533pt;}
.y1ce{bottom:327.679733pt;}
.y8e{bottom:328.477600pt;}
.y16f{bottom:329.800400pt;}
.y13e{bottom:333.697333pt;}
.y19a{bottom:334.600400pt;}
.y24{bottom:335.273333pt;}
.y5c{bottom:336.888533pt;}
.yfe{bottom:338.497333pt;}
.yba{bottom:338.703333pt;}
.y69{bottom:340.088533pt;}
.y1cd{bottom:343.679733pt;}
.y16e{bottom:345.800400pt;}
.y8d{bottom:349.477600pt;}
.y13d{bottom:349.697333pt;}
.y199{bottom:350.600400pt;}
.y23{bottom:352.073333pt;}
.yab{bottom:352.888533pt;}
.yfd{bottom:354.497333pt;}
.y68{bottom:356.088533pt;}
.y16d{bottom:361.800400pt;}
.y1cc{bottom:362.346400pt;}
.y13c{bottom:365.697333pt;}
.y198{bottom:366.600400pt;}
.y22{bottom:368.873200pt;}
.yaa{bottom:368.888533pt;}
.y8c{bottom:370.477600pt;}
.yfc{bottom:370.497333pt;}
.y5b{bottom:372.088533pt;}
.y16c{bottom:377.800400pt;}
.y1cb{bottom:378.346400pt;}
.y13b{bottom:381.697333pt;}
.y197{bottom:382.600400pt;}
.ya9{bottom:384.888533pt;}
.y21{bottom:385.673200pt;}
.yfb{bottom:386.497333pt;}
.y5a{bottom:388.088533pt;}
.y8b{bottom:391.477600pt;}
.y16b{bottom:393.800400pt;}
.y1ca{bottom:394.346400pt;}
.y13a{bottom:397.697333pt;}
.y196{bottom:398.600400pt;}
.ya8{bottom:400.888533pt;}
.y20{bottom:402.473200pt;}
.yfa{bottom:402.497333pt;}
.y59{bottom:404.088533pt;}
.y16a{bottom:409.800400pt;}
.y1c9{bottom:410.346400pt;}
.y8a{bottom:412.477600pt;}
.y139{bottom:413.697333pt;}
.y195{bottom:414.600400pt;}
.ya7{bottom:416.888533pt;}
.yf9{bottom:418.497333pt;}
.y1f{bottom:419.273333pt;}
.y58{bottom:420.088533pt;}
.y169{bottom:425.800400pt;}
.y1c8{bottom:426.346400pt;}
.y138{bottom:429.697333pt;}
.y194{bottom:430.600400pt;}
.y89{bottom:432.477600pt;}
.ya6{bottom:432.888533pt;}
.yf8{bottom:434.497333pt;}
.y1e{bottom:436.073333pt;}
.y57{bottom:436.088533pt;}
.y168{bottom:441.800400pt;}
.y1c7{bottom:442.346400pt;}
.y137{bottom:445.697333pt;}
.ya5{bottom:448.888533pt;}
.yf7{bottom:450.497333pt;}
.y56{bottom:452.088533pt;}
.y88{bottom:452.477600pt;}
.y1d{bottom:452.873200pt;}
.y167{bottom:457.800400pt;}
.y1c6{bottom:461.013067pt;}
.y136{bottom:461.697333pt;}
.y193{bottom:462.600400pt;}
.yf6{bottom:466.497333pt;}
.y55{bottom:468.088533pt;}
.y1c{bottom:469.673200pt;}
.y87{bottom:473.477600pt;}
.y166{bottom:473.800400pt;}
.y1c5{bottom:477.013067pt;}
.y135{bottom:477.697333pt;}
.yf5{bottom:482.497333pt;}
.y54{bottom:484.088533pt;}
.y1b{bottom:486.473200pt;}
.ya4{bottom:488.888533pt;}
.y165{bottom:489.800400pt;}
.y1c4{bottom:493.013067pt;}
.y134{bottom:493.697333pt;}
.y86{bottom:494.477600pt;}
.y192{bottom:497.800400pt;}
.yf4{bottom:498.497333pt;}
.y53{bottom:500.088533pt;}
.y1f2{bottom:501.013067pt;}
.y1a{bottom:503.273333pt;}
.y164{bottom:505.800400pt;}
.ya3{bottom:506.488533pt;}
.y1c3{bottom:509.013067pt;}
.y133{bottom:509.697333pt;}
.y191{bottom:513.800400pt;}
.yf3{bottom:514.497333pt;}
.y85{bottom:515.477600pt;}
.y52{bottom:516.088533pt;}
.y1f1{bottom:517.013067pt;}
.y19{bottom:520.073333pt;}
.y163{bottom:521.800400pt;}
.y1c2{bottom:525.013067pt;}
.y132{bottom:525.697333pt;}
.y190{bottom:529.800400pt;}
.yf2{bottom:530.497333pt;}
.y51{bottom:532.088533pt;}
.y1f0{bottom:533.013067pt;}
.y84{bottom:536.477600pt;}
.y162{bottom:537.800400pt;}
.ya2{bottom:540.088533pt;}
.y131{bottom:541.697333pt;}
.y1c1{bottom:543.679733pt;}
.y18{bottom:544.873200pt;}
.y18f{bottom:545.800400pt;}
.yf1{bottom:546.497333pt;}
.y50{bottom:548.088533pt;}
.y1ef{bottom:549.013067pt;}
.y161{bottom:553.800400pt;}
.ya1{bottom:556.088533pt;}
.y83{bottom:557.477600pt;}
.y130{bottom:557.697333pt;}
.y1c0{bottom:559.679733pt;}
.y18e{bottom:561.800400pt;}
.yf0{bottom:562.497333pt;}
.y4f{bottom:564.088533pt;}
.y1ee{bottom:565.013067pt;}
.y17{bottom:568.073333pt;}
.y160{bottom:569.800400pt;}
.ya0{bottom:572.088533pt;}
.y12f{bottom:573.697333pt;}
.y1bf{bottom:575.679733pt;}
.y18d{bottom:577.800400pt;}
.y82{bottom:578.477600pt;}
.yef{bottom:578.497333pt;}
.y4e{bottom:580.088533pt;}
.y16{bottom:580.841333pt;}
.y1ed{bottom:581.013067pt;}
.y15f{bottom:585.800400pt;}
.y9f{bottom:588.088533pt;}
.y12e{bottom:589.697333pt;}
.y1be{bottom:594.346400pt;}
.yee{bottom:594.497333pt;}
.y4d{bottom:596.088533pt;}
.y81{bottom:599.477600pt;}
.y1ec{bottom:599.679733pt;}
.y15e{bottom:601.800400pt;}
.y15{bottom:602.942533pt;}
.y9e{bottom:604.088533pt;}
.y12d{bottom:605.697333pt;}
.y1bd{bottom:610.346400pt;}
.yed{bottom:610.497333pt;}
.y4c{bottom:612.088533pt;}
.y1eb{bottom:615.679733pt;}
.y15d{bottom:617.800400pt;}
.y9d{bottom:620.088533pt;}
.y14{bottom:620.275867pt;}
.y80{bottom:620.477600pt;}
.y1bc{bottom:626.346400pt;}
.yec{bottom:626.497333pt;}
.y4b{bottom:628.088533pt;}
.y1ea{bottom:631.679733pt;}
.y15c{bottom:633.800400pt;}
.y9c{bottom:636.088533pt;}
.y13{bottom:637.609200pt;}
.y7f{bottom:641.477600pt;}
.yeb{bottom:642.497333pt;}
.y4a{bottom:644.088533pt;}
.y1bb{bottom:645.013067pt;}
.y12c{bottom:645.697333pt;}
.y1e9{bottom:647.679733pt;}
.y15b{bottom:649.800400pt;}
.y18c{bottom:651.400400pt;}
.y9b{bottom:652.088533pt;}
.y12{bottom:657.115867pt;}
.yea{bottom:658.497333pt;}
.y49{bottom:660.088533pt;}
.y1ba{bottom:661.013067pt;}
.y7e{bottom:662.477600pt;}
.y12b{bottom:663.297467pt;}
.y15a{bottom:665.800400pt;}
.y1e8{bottom:666.346400pt;}
.y18b{bottom:667.400400pt;}
.y9a{bottom:668.088533pt;}
.ye9{bottom:674.497333pt;}
.y48{bottom:676.088533pt;}
.y1b9{bottom:677.013067pt;}
.y159{bottom:681.800400pt;}
.y11{bottom:681.950533pt;}
.y1e7{bottom:682.346400pt;}
.y18a{bottom:683.400400pt;}
.y7d{bottom:683.477600pt;}
.ye8{bottom:690.497333pt;}
.y47{bottom:692.088533pt;}
.y1b8{bottom:695.679733pt;}
.y12a{bottom:696.897333pt;}
.y158{bottom:697.800400pt;}
.y1e6{bottom:698.346400pt;}
.y189{bottom:699.400400pt;}
.y10{bottom:701.150533pt;}
.y7c{bottom:704.477600pt;}
.ye7{bottom:706.497333pt;}
.y46{bottom:708.088533pt;}
.yd6{bottom:711.608267pt;}
.y1b7{bottom:711.679733pt;}
.y129{bottom:712.897333pt;}
.y157{bottom:713.800400pt;}
.y1e5{bottom:714.346400pt;}
.y188{bottom:715.400400pt;}
.yf{bottom:720.350533pt;}
.ye6{bottom:722.497333pt;}
.y45{bottom:724.088533pt;}
.y7b{bottom:725.477600pt;}
.y128{bottom:728.897333pt;}
.yd5{bottom:729.074933pt;}
.y156{bottom:729.800400pt;}
.y1b6{bottom:730.346400pt;}
.y187{bottom:731.400400pt;}
.y1e4{bottom:733.013067pt;}
.ye{bottom:734.222533pt;}
.ye5{bottom:738.497333pt;}
.y44{bottom:740.088533pt;}
.y127{bottom:744.897333pt;}
.y155{bottom:745.800400pt;}
.y1b5{bottom:746.346400pt;}
.y7a{bottom:746.477600pt;}
.yd4{bottom:746.541600pt;}
.y186{bottom:747.400400pt;}
.y1e3{bottom:749.013067pt;}
.yd{bottom:752.350533pt;}
.ye4{bottom:754.497333pt;}
.y43{bottom:756.088533pt;}
.y126{bottom:760.897333pt;}
.y154{bottom:761.800400pt;}
.y1b4{bottom:762.346400pt;}
.y185{bottom:763.400400pt;}
.yd3{bottom:764.008267pt;}
.y1e2{bottom:765.013067pt;}
.yc{bottom:766.222533pt;}
.y79{bottom:767.477600pt;}
.ye3{bottom:770.497333pt;}
.y42{bottom:772.088533pt;}
.y125{bottom:776.897333pt;}
.y153{bottom:777.800400pt;}
.y1b3{bottom:778.346400pt;}
.y184{bottom:779.400400pt;}
.y1e1{bottom:781.013067pt;}
.yd2{bottom:781.474933pt;}
.yb{bottom:784.350533pt;}
.ye2{bottom:786.497333pt;}
.y41{bottom:788.088533pt;}
.y78{bottom:788.477600pt;}
.y124{bottom:792.897333pt;}
.y152{bottom:793.800400pt;}
.y183{bottom:795.400400pt;}
.y1b2{bottom:797.013067pt;}
.yd1{bottom:798.941600pt;}
.ye1{bottom:802.497333pt;}
.ya{bottom:803.550533pt;}
.y40{bottom:804.088533pt;}
.y123{bottom:808.897333pt;}
.y77{bottom:809.477600pt;}
.y151{bottom:809.800400pt;}
.y182{bottom:811.400400pt;}
.y1b1{bottom:813.013067pt;}
.y1e0{bottom:815.679733pt;}
.yd0{bottom:816.408267pt;}
.ye0{bottom:818.497333pt;}
.y3f{bottom:820.088533pt;}
.y9{bottom:822.750533pt;}
.y122{bottom:824.897333pt;}
.y150{bottom:825.800400pt;}
.y181{bottom:827.400400pt;}
.y76{bottom:830.477600pt;}
.y1b0{bottom:831.679733pt;}
.ycf{bottom:833.874933pt;}
.ydf{bottom:834.497333pt;}
.y3e{bottom:836.088533pt;}
.y8{bottom:836.622533pt;}
.y121{bottom:840.897333pt;}
.y14f{bottom:841.800400pt;}
.y180{bottom:843.400400pt;}
.y1af{bottom:847.679733pt;}
.yde{bottom:850.497333pt;}
.yce{bottom:851.341600pt;}
.y75{bottom:851.477600pt;}
.y3d{bottom:852.088533pt;}
.y7{bottom:854.190533pt;}
.y120{bottom:856.897333pt;}
.y14e{bottom:857.800400pt;}
.y17f{bottom:859.400400pt;}
.y1ae{bottom:863.679733pt;}
.ydd{bottom:866.497333pt;}
.y3c{bottom:868.088533pt;}
.ycd{bottom:868.808267pt;}
.y6{bottom:871.758533pt;}
.y74{bottom:872.477600pt;}
.y11f{bottom:872.897333pt;}
.y14d{bottom:873.800400pt;}
.y17e{bottom:875.400400pt;}
.y1ad{bottom:879.679733pt;}
.y1df{bottom:882.346400pt;}
.ydc{bottom:882.497333pt;}
.y3b{bottom:884.088533pt;}
.ycc{bottom:886.415733pt;}
.y11e{bottom:888.897333pt;}
.y14c{bottom:889.800400pt;}
.y17d{bottom:891.400400pt;}
.y73{bottom:893.477600pt;}
.y1ac{bottom:895.679733pt;}
.y1de{bottom:898.346400pt;}
.ydb{bottom:898.497333pt;}
.y3a{bottom:900.088533pt;}
.ycb{bottom:902.415733pt;}
.y5{bottom:905.326533pt;}
.y14b{bottom:905.800400pt;}
.y17c{bottom:907.400400pt;}
.y1ab{bottom:911.679733pt;}
.y1dd{bottom:914.346400pt;}
.y72{bottom:914.477600pt;}
.yda{bottom:914.497333pt;}
.y39{bottom:916.088533pt;}
.yca{bottom:920.364000pt;}
.y14a{bottom:921.800400pt;}
.y17b{bottom:923.400400pt;}
.y4{bottom:927.726533pt;}
.y11d{bottom:928.897333pt;}
.y1aa{bottom:930.346400pt;}
.yd9{bottom:930.497333pt;}
.y38{bottom:932.088533pt;}
.y71{bottom:937.226267pt;}
.y17a{bottom:939.400400pt;}
.yc9{bottom:939.564000pt;}
.y1a9{bottom:946.346400pt;}
.yd8{bottom:946.497333pt;}
.y37{bottom:948.088533pt;}
.y70{bottom:958.764000pt;}
.y149{bottom:961.800400pt;}
.y1a8{bottom:962.346400pt;}
.y36{bottom:964.088533pt;}
.y6f{bottom:977.964000pt;}
.yd7{bottom:978.497333pt;}
.y148{bottom:979.400400pt;}
.y35{bottom:980.088533pt;}
.y1a7{bottom:981.013067pt;}
.y3{bottom:985.255333pt;}
.h12{height:21.604401pt;}
.h6{height:27.473875pt;}
.ha{height:30.984844pt;}
.h9{height:31.920000pt;}
.h8{height:32.003125pt;}
.h7{height:32.625000pt;}
.h10{height:33.351562pt;}
.hf{height:36.145833pt;}
.h2{height:36.702850pt;}
.h1{height:36.703125pt;}
.hc{height:37.057292pt;}
.hd{height:39.364401pt;}
.he{height:39.760417pt;}
.hb{height:43.375000pt;}
.h4{height:45.605568pt;}
.h5{height:45.606102pt;}
.h3{height:57.093750pt;}
.h11{height:68.145833pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x2{left:61.333333pt;}
.x3{left:68.000000pt;}
.x4{left:77.600000pt;}
.xa{left:82.266667pt;}
.x14{left:101.333333pt;}
.x7{left:109.600000pt;}
.x6{left:125.600133pt;}
.x5{left:157.600133pt;}
.xb{left:191.200000pt;}
.x10{left:212.136533pt;}
.x11{left:223.604267pt;}
.x12{left:269.014800pt;}
.x13{left:272.837333pt;}
.xc{left:298.400000pt;}
.x8{left:432.800000pt;}
.xd{left:437.600000pt;}
.x15{left:456.666667pt;}
.x9{left:464.666667pt;}
.xe{left:503.333333pt;}
.xf{left:567.333333pt;}
.x1{left:615.535200pt;}
}




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