
    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_4fc34621650fca011f2260aa.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.106934;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_6c62f6b9bdacb2f5960ce1d4.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.106934;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_a2b476f06622e77ca61939b8.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.095703;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_e09ebb51a30d724a3372f956.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_9cc9f94eed489bf4dfc85ba2.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.740723;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_d7a549a50069bbf983ef4366.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.239258;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;}
.m11{transform:matrix(0.000000,-0.148478,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.148478,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.148478,0.250000,0.000000,0,0);}
.m10{transform:matrix(0.000000,-0.247625,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.247625,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.247625,0.250000,0.000000,0,0);}
.m41{transform:matrix(0.145083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145083,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.146858,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146858,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146858,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.147230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147230,0.000000,0.000000,0.250000,0,0);}
.m4e{transform:matrix(0.147725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147725,0.000000,0.000000,0.250000,0,0);}
.m3a{transform:matrix(0.148348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148348,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.149735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149735,0.000000,0.000000,0.250000,0,0);}
.m33{transform:matrix(0.149818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149818,0.000000,0.000000,0.250000,0,0);}
.m48{transform:matrix(0.149845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149845,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.149880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149880,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.152218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152218,0.000000,0.000000,0.250000,0,0);}
.m37{transform:matrix(0.152448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152448,0.000000,0.000000,0.250000,0,0);}
.m45{transform:matrix(0.152643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152643,0.000000,0.000000,0.250000,0,0);}
.m30{transform:matrix(0.202873,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202873,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202873,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.240208,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240208,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240208,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.240388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240388,0.000000,0.000000,0.250000,0,0);}
.m3c{transform:matrix(0.241012,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241012,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241012,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.241838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241838,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.242293,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242293,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242293,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.242423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242423,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.242440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242440,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.242890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242890,0.000000,0.000000,0.250000,0,0);}
.m4f{transform:matrix(0.243587,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243587,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243587,0.000000,0.000000,0.250000,0,0);}
.m3f{transform:matrix(0.243620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243620,0.000000,0.000000,0.250000,0,0);}
.m4a{transform:matrix(0.244117,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244117,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244117,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.244315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244315,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.244788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244788,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.245007,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245007,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245007,0.000000,0.000000,0.250000,0,0);}
.m52{transform:matrix(0.245158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245158,0.000000,0.000000,0.250000,0,0);}
.m3d{transform:matrix(0.245445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245445,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.245938,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245938,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245938,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m49{transform:matrix(0.246062,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246062,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246062,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.246587,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246587,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246587,0.000000,0.000000,0.250000,0,0);}
.m4b{transform:matrix(0.246597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246597,0.000000,0.000000,0.250000,0,0);}
.m38{transform:matrix(0.246688,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246688,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246688,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.246792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246792,0.000000,0.000000,0.250000,0,0);}
.m3b{transform:matrix(0.246802,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246802,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246802,0.000000,0.000000,0.250000,0,0);}
.m50{transform:matrix(0.246915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246915,0.000000,0.000000,0.250000,0,0);}
.m34{transform:matrix(0.246977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246977,0.000000,0.000000,0.250000,0,0);}
.m39{transform:matrix(0.247155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247155,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.247202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247202,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.247282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247282,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.247625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247625,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.247800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247800,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.247832,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247832,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247832,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.247842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247842,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.248077,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248077,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248077,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.248317,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248317,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248317,0.000000,0.000000,0.250000,0,0);}
.m4d{transform:matrix(0.248663,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248663,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248663,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.248938,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248938,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248938,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.249027,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249027,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249027,0.000000,0.000000,0.250000,0,0);}
.m47{transform:matrix(0.249152,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249152,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249152,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.249293,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249293,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249293,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.249498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249498,0.000000,0.000000,0.250000,0,0);}
.m3e{transform:matrix(0.249605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249605,0.000000,0.000000,0.250000,0,0);}
.m46{transform:matrix(0.249665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249665,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.249700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249700,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.249815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249815,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);}
.m40{transform:matrix(0.250167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250167,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.250227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250227,0.000000,0.000000,0.250000,0,0);}
.m43{transform:matrix(0.251325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251325,0.000000,0.000000,0.250000,0,0);}
.m51{transform:matrix(0.251690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251690,0.000000,0.000000,0.250000,0,0);}
.m44{transform:matrix(0.251790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251790,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.252715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252715,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.252827,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252827,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252827,0.000000,0.000000,0.250000,0,0);}
.m4c{transform:matrix(0.252977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252977,0.000000,0.000000,0.250000,0,0);}
.m31{transform:matrix(0.253477,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253477,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253477,0.000000,0.000000,0.250000,0,0);}
.m35{transform:matrix(0.253540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253540,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.253543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253543,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.253730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253730,0.000000,0.000000,0.250000,0,0);}
.m36{transform:matrix(0.254007,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254007,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254007,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.254065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254065,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.254397,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254397,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254397,0.000000,0.000000,0.250000,0,0);}
.m32{transform:matrix(0.255755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255755,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.257960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257960,0.000000,0.000000,0.250000,0,0);}
.m42{transform:matrix(0.258122,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258122,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258122,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.258130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258130,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.258927,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258927,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258927,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.288730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288730,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.289155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289155,0.000000,0.000000,0.250000,0,0);}
.v8{vertical-align:-22.800000px;}
.va{vertical-align:-18.000000px;}
.ve{vertical-align:-9.000000px;}
.vc{vertical-align:-7.200000px;}
.v2{vertical-align:-6.000000px;}
.v4{vertical-align:-4.200000px;}
.v5{vertical-align:-1.200000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:1.800000px;}
.v9{vertical-align:4.800000px;}
.v3{vertical-align:6.000000px;}
.vd{vertical-align:10.200000px;}
.vb{vertical-align:11.400000px;}
.v7{vertical-align:18.000000px;}
.vf{vertical-align:22.200000px;}
.v6{vertical-align:23.400000px;}
.ls2{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.060000px;}
.lsd{letter-spacing:0.074400px;}
.lsc{letter-spacing:0.120000px;}
.ls8{letter-spacing:0.180000px;}
.ls3{letter-spacing:0.240000px;}
.ls4{letter-spacing:0.451200px;}
.ls5{letter-spacing:0.480000px;}
.ls0{letter-spacing:81.505464px;}
.ls1{letter-spacing:106.359361px;}
.ls14{letter-spacing:152.058374px;}
.lsb{letter-spacing:152.220129px;}
.lse{letter-spacing:156.100801px;}
.lsa{letter-spacing:156.959937px;}
.ls19{letter-spacing:167.666815px;}
.ls1d{letter-spacing:173.192412px;}
.ls6{letter-spacing:201.475248px;}
.ls7{letter-spacing:210.995915px;}
.ls15{letter-spacing:230.696932px;}
.lsf{letter-spacing:235.111346px;}
.ls17{letter-spacing:373.424940px;}
.ls16{letter-spacing:436.192960px;}
.ls1c{letter-spacing:451.425813px;}
.ls10{letter-spacing:451.871661px;}
.ls11{letter-spacing:615.012300px;}
.ls1a{letter-spacing:673.633306px;}
.ls12{letter-spacing:882.360635px;}
.ls13{letter-spacing:906.745193px;}
.ls18{letter-spacing:1002.269435px;}
.ls1b{letter-spacing:1035.713904px;}
.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;}
}
.ws1{word-spacing:-21.000000px;}
.ws30{word-spacing:-19.944000px;}
.ws10{word-spacing:-17.617200px;}
.ws26{word-spacing:-15.450000px;}
.ws12{word-spacing:-15.300000px;}
.wse{word-spacing:-15.150000px;}
.ws0{word-spacing:-15.000000px;}
.ws13{word-spacing:-14.459400px;}
.ws20{word-spacing:-14.400000px;}
.ws15{word-spacing:-13.794600px;}
.ws6{word-spacing:-13.129800px;}
.ws17{word-spacing:-12.631200px;}
.ws5{word-spacing:-12.465000px;}
.ws29{word-spacing:-12.298800px;}
.ws1f{word-spacing:-12.000000px;}
.wsd{word-spacing:-10.470600px;}
.ws4{word-spacing:-9.972000px;}
.ws24{word-spacing:-9.307200px;}
.ws11{word-spacing:-9.000000px;}
.ws27{word-spacing:-8.974800px;}
.wsf{word-spacing:-8.850000px;}
.wsc{word-spacing:-8.700000px;}
.ws2f{word-spacing:-8.476200px;}
.ws21{word-spacing:-8.400000px;}
.ws2b{word-spacing:-8.310000px;}
.ws22{word-spacing:-6.900000px;}
.ws1c{word-spacing:-0.045600px;}
.wsa{word-spacing:-0.040200px;}
.ws7{word-spacing:0.000000px;}
.wsb{word-spacing:23.982531px;}
.ws2{word-spacing:50.363791px;}
.ws3{word-spacing:69.877476px;}
.ws2a{word-spacing:158.516953px;}
.ws2e{word-spacing:162.160132px;}
.ws14{word-spacing:167.404229px;}
.ws16{word-spacing:168.086180px;}
.ws25{word-spacing:191.090915px;}
.ws9{word-spacing:244.677395px;}
.ws8{word-spacing:279.908549px;}
.ws28{word-spacing:351.271203px;}
.ws1b{word-spacing:432.297583px;}
.ws2d{word-spacing:442.576647px;}
.ws1a{word-spacing:452.653841px;}
.ws2c{word-spacing:675.731344px;}
.ws1d{word-spacing:730.059943px;}
.ws1e{word-spacing:731.828828px;}
.ws18{word-spacing:761.493140px;}
.ws19{word-spacing:767.008128px;}
.ws23{word-spacing:1039.503490px;}
._14{margin-left:-431.625713px;}
._1b{margin-left:-424.947609px;}
._1c{margin-left:-423.727787px;}
._65{margin-left:-397.678618px;}
._58{margin-left:-385.133806px;}
._4b{margin-left:-380.046316px;}
._61{margin-left:-359.816941px;}
._32{margin-left:-312.776432px;}
._38{margin-left:-303.136749px;}
._5a{margin-left:-297.392387px;}
._2c{margin-left:-257.778143px;}
._2e{margin-left:-253.774941px;}
._2d{margin-left:-252.774140px;}
._2b{margin-left:-250.772539px;}
._1d{margin-left:-242.656050px;}
._1e{margin-left:-240.613254px;}
._12{margin-left:-236.013406px;}
._4a{margin-left:-232.867248px;}
._4c{margin-left:-231.866030px;}
._49{margin-left:-229.863593px;}
._5d{margin-left:-228.380815px;}
._4d{margin-left:-227.013462px;}
._62{margin-left:-224.665503px;}
._5f{margin-left:-219.675697px;}
._2f{margin-left:-215.803585px;}
._13{margin-left:-212.799935px;}
._30{margin-left:-208.444574px;}
._5c{margin-left:-202.819319px;}
._40{margin-left:-196.630547px;}
._3f{margin-left:-194.855242px;}
._64{margin-left:-190.934126px;}
._52{margin-left:-189.458317px;}
._39{margin-left:-188.129355px;}
._3a{margin-left:-185.357548px;}
._60{margin-left:-183.931624px;}
._53{margin-left:-181.944205px;}
._2a{margin-left:-175.880294px;}
._28{margin-left:-173.048018px;}
._29{margin-left:-171.245471px;}
._16{margin-left:-169.578015px;}
._21{margin-left:-167.913142px;}
._22{margin-left:-165.503770px;}
._5b{margin-left:-161.476874px;}
._3e{margin-left:-159.940900px;}
._3d{margin-left:-158.757363px;}
._1a{margin-left:-157.206301px;}
._45{margin-left:-152.072757px;}
._48{margin-left:-150.899760px;}
._44{margin-left:-149.726762px;}
._15{margin-left:-147.192086px;}
._46{margin-left:-145.621270px;}
._36{margin-left:-144.164699px;}
._31{margin-left:-142.894536px;}
._18{margin-left:-138.072420px;}
._27{margin-left:-133.325236px;}
._1f{margin-left:-132.128343px;}
._41{margin-left:-130.767551px;}
._35{margin-left:-129.639507px;}
._4f{margin-left:-125.277620px;}
._17{margin-left:-122.663771px;}
._37{margin-left:-118.708390px;}
._33{margin-left:-112.379479px;}
._26{margin-left:-110.679428px;}
._24{margin-left:-109.485860px;}
._25{margin-left:-107.673386px;}
._23{margin-left:-106.474144px;}
._42{margin-left:-104.395464px;}
._3c{margin-left:-96.702474px;}
._19{margin-left:-90.470110px;}
._59{margin-left:-79.390310px;}
._4e{margin-left:-77.576308px;}
._47{margin-left:-66.770000px;}
._51{margin-left:-45.816012px;}
._63{margin-left:-38.691698px;}
._5e{margin-left:-35.008266px;}
._34{margin-left:-29.730897px;}
._43{margin-left:-28.057328px;}
._10{margin-left:-8.004000px;}
._4{margin-left:-6.600000px;}
._5{margin-left:-5.568000px;}
._1{margin-left:-3.744000px;}
._9{margin-left:-2.472000px;}
._2{margin-left:-1.344000px;}
._3{width:1.344000px;}
._7{width:2.556000px;}
._6{width:4.116000px;}
._a{width:5.844000px;}
._8{width:7.668000px;}
._b{width:8.760000px;}
._c{width:9.948000px;}
._e{width:11.460000px;}
._d{width:12.660000px;}
._3b{width:13.884000px;}
._50{width:16.020000px;}
._54{width:19.824000px;}
._55{width:22.296000px;}
._56{width:25.368000px;}
._57{width:26.400000px;}
._67{width:30.360000px;}
._11{width:37.253670px;}
._f{width:43.824000px;}
._66{width:46.032000px;}
._0{width:448.224000px;}
._20{width:1801.152000px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:22.200000px;}
.fse{font-size:25.800000px;}
.fs1b{font-size:27.600000px;}
.fs5{font-size:29.400000px;}
.fsb{font-size:30.000000px;}
.fs24{font-size:30.600000px;}
.fs1c{font-size:31.800000px;}
.fs11{font-size:32.400000px;}
.fs1a{font-size:33.600000px;}
.fs10{font-size:34.800000px;}
.fs13{font-size:35.400000px;}
.fs6{font-size:36.000000px;}
.fsd{font-size:37.200000px;}
.fs9{font-size:37.800000px;}
.fsc{font-size:40.200000px;}
.fs20{font-size:44.400000px;}
.fs7{font-size:45.000000px;}
.fs19{font-size:45.600000px;}
.fs22{font-size:46.200000px;}
.fs8{font-size:47.400000px;}
.fs0{font-size:48.000000px;}
.fs1e{font-size:48.600000px;}
.fsf{font-size:49.800000px;}
.fs18{font-size:52.200000px;}
.fs1f{font-size:54.000000px;}
.fs15{font-size:55.200000px;}
.fs14{font-size:57.600000px;}
.fs3{font-size:60.000000px;}
.fs12{font-size:60.600000px;}
.fs17{font-size:61.200000px;}
.fs1d{font-size:61.800000px;}
.fs16{font-size:63.600000px;}
.fs21{font-size:71.400000px;}
.fs2{font-size:72.000000px;}
.fs23{font-size:73.800000px;}
.fs4{font-size:84.000000px;}
.fs1{font-size:120.000000px;}
.yc9{bottom:-13.050000px;}
.ya4{bottom:-6.300000px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.150000px;}
.y1a6{bottom:1.350000px;}
.y196{bottom:2.550000px;}
.y40{bottom:2.850000px;}
.ya5{bottom:3.300000px;}
.y1c8{bottom:3.450000px;}
.ye1{bottom:3.750000px;}
.yf9{bottom:3.900000px;}
.y9c{bottom:4.200000px;}
.ybf{bottom:4.650000px;}
.yba{bottom:4.800000px;}
.y13e{bottom:5.250000px;}
.y1d4{bottom:5.400000px;}
.y197{bottom:6.300000px;}
.y1de{bottom:6.450000px;}
.y14b{bottom:7.500000px;}
.yea{bottom:7.650000px;}
.yc2{bottom:8.400000px;}
.yb8{bottom:8.550000px;}
.y1db{bottom:8.700000px;}
.y137{bottom:9.000000px;}
.y1c4{bottom:11.550000px;}
.y214{bottom:14.400000px;}
.y1c5{bottom:15.300000px;}
.ye3{bottom:15.450000px;}
.yfb{bottom:15.600000px;}
.ybe{bottom:16.350000px;}
.yb9{bottom:16.500000px;}
.ya8{bottom:17.850000px;}
.ya9{bottom:18.000000px;}
.y14d{bottom:18.450000px;}
.y193{bottom:19.200000px;}
.yec{bottom:19.350000px;}
.y100{bottom:19.500000px;}
.y89{bottom:19.650000px;}
.yc1{bottom:20.250000px;}
.y8d{bottom:20.400000px;}
.y138{bottom:20.850000px;}
.y126{bottom:21.450000px;}
.y110{bottom:22.200000px;}
.y1c9{bottom:22.650000px;}
.y11b{bottom:22.800000px;}
.y115{bottom:23.250000px;}
.y151{bottom:23.700000px;}
.y215{bottom:24.150000px;}
.ye2{bottom:24.900000px;}
.yfa{bottom:25.050000px;}
.y116{bottom:25.350000px;}
.y5a{bottom:25.650000px;}
.y202{bottom:25.800000px;}
.y52{bottom:25.950000px;}
.ybb{bottom:26.100000px;}
.y95{bottom:26.250000px;}
.y5b{bottom:26.400000px;}
.y53{bottom:26.550000px;}
.y56{bottom:26.700000px;}
.y54{bottom:27.000000px;}
.y14c{bottom:27.300000px;}
.y98{bottom:27.450000px;}
.y57{bottom:27.600000px;}
.y55{bottom:27.750000px;}
.y97{bottom:27.900000px;}
.y5c{bottom:28.350000px;}
.y192{bottom:28.650000px;}
.yeb{bottom:28.800000px;}
.yff{bottom:28.950000px;}
.yc0{bottom:29.700000px;}
.ybc{bottom:29.850000px;}
.y143{bottom:30.300000px;}
.y1a9{bottom:30.450000px;}
.y8a{bottom:31.200000px;}
.y1a5{bottom:32.850000px;}
.y1b0{bottom:33.600000px;}
.y1e1{bottom:34.650000px;}
.y205{bottom:35.400000px;}
.y1ae{bottom:35.850000px;}
.y1dd{bottom:36.900000px;}
.y9a{bottom:37.500000px;}
.y50{bottom:38.550000px;}
.y51{bottom:39.150000px;}
.ycf{bottom:39.450000px;}
.ycd{bottom:41.400000px;}
.y122{bottom:42.150000px;}
.y213{bottom:42.600000px;}
.y124{bottom:43.200000px;}
.y1af{bottom:43.500000px;}
.y10c{bottom:43.800000px;}
.ycc{bottom:43.950000px;}
.y42{bottom:44.100000px;}
.yd0{bottom:44.250000px;}
.y10e{bottom:44.550000px;}
.y211{bottom:44.700000px;}
.yca{bottom:45.450000px;}
.y125{bottom:45.600000px;}
.y1ac{bottom:45.900000px;}
.y20a{bottom:46.500000px;}
.y10f{bottom:47.400000px;}
.y1e6{bottom:47.550000px;}
.ye4{bottom:48.300000px;}
.y152{bottom:48.750000px;}
.y1ff{bottom:48.900000px;}
.y4f{bottom:50.850000px;}
.y1a7{bottom:51.150000px;}
.y1d6{bottom:51.750000px;}
.yed{bottom:52.050000px;}
.y101{bottom:52.200000px;}
.y58{bottom:52.350000px;}
.y129{bottom:52.650000px;}
.y59{bottom:52.950000px;}
.y13f{bottom:53.250000px;}
.y1a3{bottom:53.400000px;}
.y1df{bottom:54.600000px;}
.y12d{bottom:54.750000px;}
.y1d8{bottom:54.900000px;}
.y1d5{bottom:56.100000px;}
.y139{bottom:57.150000px;}
.y1d2{bottom:57.900000px;}
.y92{bottom:58.050000px;}
.y119{bottom:58.650000px;}
.y117{bottom:59.400000px;}
.ye6{bottom:60.000000px;}
.yfc{bottom:60.150000px;}
.y12a{bottom:60.600000px;}
.y11c{bottom:61.200000px;}
.y118{bottom:61.950000px;}
.y49{bottom:62.250000px;}
.y203{bottom:62.400000px;}
.y120{bottom:62.700000px;}
.y12b{bottom:63.000000px;}
.y14f{bottom:63.450000px;}
.yef{bottom:63.750000px;}
.y102{bottom:63.900000px;}
.y4d{bottom:64.350000px;}
.y4c{bottom:64.500000px;}
.y106{bottom:64.800000px;}
.y1a2{bottom:65.100000px;}
.y1ad{bottom:65.250000px;}
.y90{bottom:65.400000px;}
.y1a8{bottom:66.750000px;}
.y1e5{bottom:67.200000px;}
.y153{bottom:68.700000px;}
.y46{bottom:68.850000px;}
.y1a4{bottom:69.150000px;}
.ye5{bottom:69.450000px;}
.y1e4{bottom:69.600000px;}
.y1e0{bottom:69.900000px;}
.y43{bottom:70.350000px;}
.y14e{bottom:72.300000px;}
.y1dc{bottom:72.450000px;}
.yee{bottom:73.350000px;}
.yf3{bottom:74.100000px;}
.y140{bottom:74.550000px;}
.y121{bottom:74.850000px;}
.y123{bottom:75.150000px;}
.y4e{bottom:75.750000px;}
.y206{bottom:76.500000px;}
.y10b{bottom:77.400000px;}
.y127{bottom:77.550000px;}
.y10d{bottom:77.850000px;}
.y13a{bottom:78.450000px;}
.y1fa{bottom:78.600000px;}
.y208{bottom:79.800000px;}
.y111{bottom:80.250000px;}
.y201{bottom:80.400000px;}
.y112{bottom:80.700000px;}
.y88{bottom:81.000000px;}
.yce{bottom:82.050000px;}
.y1fb{bottom:82.500000px;}
.y1f8{bottom:84.000000px;}
.ycb{bottom:85.200000px;}
.y91{bottom:88.800000px;}
.y212{bottom:90.000000px;}
.y154{bottom:91.650000px;}
.y210{bottom:92.400000px;}
.y11a{bottom:92.550000px;}
.yfd{bottom:92.700000px;}
.ye7{bottom:92.850000px;}
.y200{bottom:93.750000px;}
.y113{bottom:94.050000px;}
.y128{bottom:94.200000px;}
.yaa{bottom:95.250000px;}
.y11d{bottom:95.550000px;}
.y93{bottom:95.700000px;}
.y41{bottom:95.850000px;}
.y114{bottom:96.150000px;}
.y12c{bottom:96.300000px;}
.y103{bottom:96.450000px;}
.yf0{bottom:96.600000px;}
.yaf{bottom:96.900000px;}
.yf4{bottom:97.500000px;}
.y8b{bottom:98.250000px;}
.y141{bottom:99.150000px;}
.y1a1{bottom:99.750000px;}
.y1d7{bottom:101.250000px;}
.y1da{bottom:102.300000px;}
.y1d9{bottom:102.900000px;}
.y13b{bottom:103.050000px;}
.y1d1{bottom:103.650000px;}
.yfe{bottom:104.400000px;}
.ye9{bottom:104.550000px;}
.y1d3{bottom:104.850000px;}
.y45{bottom:105.150000px;}
.y96{bottom:105.300000px;}
.y4a{bottom:105.900000px;}
.y48{bottom:106.350000px;}
.y47{bottom:107.100000px;}
.y4b{bottom:107.700000px;}
.y105{bottom:108.150000px;}
.yf2{bottom:108.300000px;}
.y107{bottom:109.050000px;}
.y155{bottom:111.600000px;}
.ya6{bottom:113.250000px;}
.ye8{bottom:113.850000px;}
.y2e{bottom:114.600000px;}
.y13d{bottom:114.900000px;}
.y150{bottom:115.200000px;}
.y6e{bottom:115.650000px;}
.y104{bottom:117.600000px;}
.yf1{bottom:117.750000px;}
.yf5{bottom:118.650000px;}
.y142{bottom:120.450000px;}
.y94{bottom:120.600000px;}
.y204{bottom:120.900000px;}
.y44{bottom:121.650000px;}
.y207{bottom:122.550000px;}
.y1f9{bottom:123.000000px;}
.y1f6{bottom:123.150000px;}
.y209{bottom:123.300000px;}
.y20e{bottom:123.450000px;}
.y13c{bottom:124.350000px;}
.y1fc{bottom:124.650000px;}
.y20f{bottom:125.100000px;}
.y1fe{bottom:125.250000px;}
.y1fd{bottom:126.000000px;}
.y2d{bottom:132.150000px;}
.y190{bottom:132.300000px;}
.y149{bottom:132.450000px;}
.y1c0{bottom:132.750000px;}
.y177{bottom:133.050000px;}
.y6d{bottom:133.200000px;}
.y9b{bottom:133.350000px;}
.ya7{bottom:133.500000px;}
.y268{bottom:134.400000px;}
.y20d{bottom:135.000000px;}
.y8e{bottom:135.450000px;}
.y1f5{bottom:140.700000px;}
.y225{bottom:142.200000px;}
.ya2{bottom:142.350000px;}
.ydf{bottom:142.500000px;}
.y176{bottom:147.150000px;}
.y9d{bottom:147.600000px;}
.y18f{bottom:149.850000px;}
.y148{bottom:150.000000px;}
.y1bf{bottom:150.300000px;}
.y87{bottom:150.750000px;}
.yb0{bottom:152.850000px;}
.y2c{bottom:157.200000px;}
.y1f4{bottom:158.250000px;}
.y224{bottom:159.750000px;}
.ya1{bottom:159.900000px;}
.y6c{bottom:160.800000px;}
.yde{bottom:161.100000px;}
.y175{bottom:161.250000px;}
.yab{bottom:166.050000px;}
.y18e{bottom:167.400000px;}
.y8c{bottom:167.550000px;}
.y147{bottom:167.850000px;}
.y2b{bottom:174.750000px;}
.y99{bottom:175.350000px;}
.y1f3{bottom:175.800000px;}
.y223{bottom:177.300000px;}
.ydd{bottom:178.650000px;}
.y6b{bottom:185.400000px;}
.ya0{bottom:185.850000px;}
.y174{bottom:189.450000px;}
.y2a{bottom:192.300000px;}
.y1f2{bottom:193.350000px;}
.y18d{bottom:193.950000px;}
.y222{bottom:195.150000px;}
.y267{bottom:196.500000px;}
.yad{bottom:197.850000px;}
.y9f{bottom:199.950000px;}
.y1be{bottom:202.950000px;}
.y146{bottom:203.250000px;}
.y173{bottom:203.550000px;}
.ydc{bottom:205.200000px;}
.y8f{bottom:206.100000px;}
.y29{bottom:209.850000px;}
.y1f1{bottom:210.900000px;}
.y18c{bottom:211.500000px;}
.y221{bottom:212.700000px;}
.y9e{bottom:214.050000px;}
.yae{bottom:216.600000px;}
.y1bd{bottom:220.500000px;}
.y145{bottom:220.800000px;}
.ydb{bottom:222.750000px;}
.yac{bottom:225.300000px;}
.y28{bottom:227.400000px;}
.y1f0{bottom:228.450000px;}
.y18b{bottom:229.050000px;}
.y220{bottom:230.250000px;}
.y86{bottom:234.600000px;}
.y1bc{bottom:238.050000px;}
.y6a{bottom:238.950000px;}
.yda{bottom:240.300000px;}
.y27{bottom:244.950000px;}
.y1ef{bottom:246.000000px;}
.y18a{bottom:246.600000px;}
.y136{bottom:247.050000px;}
.y21f{bottom:247.800000px;}
.y1bb{bottom:255.600000px;}
.y69{bottom:256.500000px;}
.yd9{bottom:257.850000px;}
.y26{bottom:262.500000px;}
.y1ee{bottom:263.550000px;}
.y189{bottom:264.150000px;}
.y21e{bottom:265.350000px;}
.y68{bottom:274.050000px;}
.yd8{bottom:275.400000px;}
.y25{bottom:280.050000px;}
.y1ed{bottom:281.100000px;}
.y1ba{bottom:281.550000px;}
.y188{bottom:281.700000px;}
.y21d{bottom:282.900000px;}
.y67{bottom:291.600000px;}
.yd7{bottom:292.950000px;}
.y1b9{bottom:295.650000px;}
.y24{bottom:297.600000px;}
.y187{bottom:299.250000px;}
.y21c{bottom:300.450000px;}
.y66{bottom:309.150000px;}
.y1b8{bottom:309.750000px;}
.yd6{bottom:310.500000px;}
.y144{bottom:313.050000px;}
.y1ec{bottom:316.050000px;}
.y186{bottom:316.800000px;}
.y23{bottom:322.650000px;}
.y65{bottom:326.700000px;}
.yd5{bottom:328.050000px;}
.y1eb{bottom:330.150000px;}
.y185{bottom:334.350000px;}
.y22{bottom:340.200000px;}
.y1ea{bottom:344.250000px;}
.yd4{bottom:345.600000px;}
.y64{bottom:353.250000px;}
.y21{bottom:357.750000px;}
.y184{bottom:361.950000px;}
.yd3{bottom:363.150000px;}
.y63{bottom:370.800000px;}
.y20{bottom:375.300000px;}
.y21b{bottom:384.000000px;}
.y62{bottom:388.350000px;}
.yd2{bottom:390.150000px;}
.y1f{bottom:392.850000px;}
.y21a{bottom:398.100000px;}
.y135{bottom:402.300000px;}
.y61{bottom:405.900000px;}
.y1e{bottom:410.400000px;}
.y219{bottom:412.200000px;}
.y134{bottom:419.850000px;}
.y183{bottom:421.500000px;}
.y1d{bottom:427.950000px;}
.y60{bottom:431.850000px;}
.yd1{bottom:437.250000px;}
.y133{bottom:437.400000px;}
.y242{bottom:437.850000px;}
.y266{bottom:438.900000px;}
.y182{bottom:439.050000px;}
.y5f{bottom:445.950000px;}
.y241{bottom:451.950000px;}
.y132{bottom:454.950000px;}
.y1c{bottom:455.550000px;}
.y265{bottom:456.450000px;}
.y181{bottom:456.600000px;}
.yc8{bottom:457.800000px;}
.y5e{bottom:460.050000px;}
.y240{bottom:466.050000px;}
.y85{bottom:468.600000px;}
.y131{bottom:472.500000px;}
.y264{bottom:474.000000px;}
.y5d{bottom:474.150000px;}
.y172{bottom:477.900000px;}
.y84{bottom:486.150000px;}
.y23f{bottom:489.150000px;}
.y263{bottom:491.550000px;}
.y180{bottom:491.700000px;}
.y3f{bottom:494.700000px;}
.y171{bottom:495.450000px;}
.y130{bottom:498.450000px;}
.y23e{bottom:503.250000px;}
.y83{bottom:503.700000px;}
.y262{bottom:509.100000px;}
.y1b{bottom:510.600000px;}
.y12f{bottom:512.550000px;}
.y170{bottom:513.000000px;}
.y23d{bottom:517.350000px;}
.y17f{bottom:517.650000px;}
.y82{bottom:521.250000px;}
.y261{bottom:526.650000px;}
.y1a{bottom:528.150000px;}
.y16f{bottom:530.550000px;}
.y17e{bottom:531.750000px;}
.y12e{bottom:535.950000px;}
.y81{bottom:538.800000px;}
.y23c{bottom:540.450000px;}
.y260{bottom:544.200000px;}
.y19{bottom:545.700000px;}
.y17d{bottom:545.850000px;}
.y11f{bottom:547.200000px;}
.y16e{bottom:548.100000px;}
.y23b{bottom:554.550000px;}
.y80{bottom:556.350000px;}
.y17c{bottom:559.950000px;}
.y25f{bottom:561.750000px;}
.y16d{bottom:565.650000px;}
.y23a{bottom:568.650000px;}
.y18{bottom:573.300000px;}
.y7f{bottom:573.900000px;}
.y25e{bottom:579.300000px;}
.yc7{bottom:582.600000px;}
.y239{bottom:582.750000px;}
.y16c{bottom:583.200000px;}
.y1b7{bottom:594.750000px;}
.y25d{bottom:596.850000px;}
.yc6{bottom:600.150000px;}
.y16b{bottom:600.750000px;}
.y7e{bottom:605.850000px;}
.y1b6{bottom:612.300000px;}
.y25c{bottom:614.400000px;}
.yc5{bottom:618.000000px;}
.y16a{bottom:618.300000px;}
.y7d{bottom:619.950000px;}
.y17{bottom:628.350000px;}
.y1b5{bottom:629.850000px;}
.y25b{bottom:631.950000px;}
.yc4{bottom:635.550000px;}
.y169{bottom:635.850000px;}
.y1e9{bottom:637.350000px;}
.y3e{bottom:637.650000px;}
.y238{bottom:644.700000px;}
.y16{bottom:645.900000px;}
.y1b4{bottom:647.400000px;}
.y25a{bottom:649.500000px;}
.y1e8{bottom:651.450000px;}
.y168{bottom:653.400000px;}
.y3d{bottom:655.200000px;}
.y11e{bottom:656.250000px;}
.ybd{bottom:659.100000px;}
.y15{bottom:663.450000px;}
.y259{bottom:667.050000px;}
.y10a{bottom:667.650000px;}
.y167{bottom:670.950000px;}
.y3c{bottom:672.750000px;}
.y1b3{bottom:673.350000px;}
.y1e7{bottom:675.450000px;}
.yc3{bottom:677.700000px;}
.y14{bottom:681.000000px;}
.y258{bottom:684.600000px;}
.y1b2{bottom:687.450000px;}
.y166{bottom:688.500000px;}
.y1e3{bottom:689.550000px;}
.y3b{bottom:690.300000px;}
.y237{bottom:699.750000px;}
.y257{bottom:702.150000px;}
.y218{bottom:705.600000px;}
.y165{bottom:706.050000px;}
.yb7{bottom:706.950000px;}
.y13{bottom:707.550000px;}
.y3a{bottom:707.850000px;}
.y1b1{bottom:711.450000px;}
.y236{bottom:717.300000px;}
.y217{bottom:719.700000px;}
.y164{bottom:723.600000px;}
.y12{bottom:725.100000px;}
.y39{bottom:725.400000px;}
.y1ab{bottom:725.550000px;}
.y235{bottom:734.850000px;}
.y256{bottom:735.000000px;}
.y163{bottom:741.150000px;}
.y11{bottom:742.650000px;}
.y38{bottom:742.950000px;}
.y216{bottom:743.700000px;}
.y234{bottom:752.400000px;}
.y255{bottom:752.550000px;}
.y20c{bottom:757.800000px;}
.yb6{bottom:758.400000px;}
.y162{bottom:758.700000px;}
.y10{bottom:760.200000px;}
.y37{bottom:760.500000px;}
.y233{bottom:769.950000px;}
.y254{bottom:770.100000px;}
.yb5{bottom:775.950000px;}
.y161{bottom:776.250000px;}
.yf{bottom:777.750000px;}
.y36{bottom:778.050000px;}
.y232{bottom:787.500000px;}
.y253{bottom:787.650000px;}
.yb4{bottom:793.500000px;}
.y160{bottom:793.800000px;}
.ye{bottom:795.300000px;}
.y35{bottom:795.600000px;}
.y1e2{bottom:798.150000px;}
.y252{bottom:805.200000px;}
.yb3{bottom:811.050000px;}
.y15f{bottom:811.350000px;}
.y1d0{bottom:812.400000px;}
.yd{bottom:812.850000px;}
.y34{bottom:813.150000px;}
.y231{bottom:815.100000px;}
.y1aa{bottom:817.800000px;}
.y251{bottom:822.750000px;}
.y15e{bottom:828.900000px;}
.yc{bottom:830.400000px;}
.y33{bottom:830.700000px;}
.y109{bottom:831.450000px;}
.y1a0{bottom:831.900000px;}
.yb2{bottom:837.000000px;}
.y250{bottom:840.300000px;}
.y15d{bottom:846.450000px;}
.yb{bottom:847.950000px;}
.y32{bottom:848.250000px;}
.yb1{bottom:851.100000px;}
.y17b{bottom:852.000000px;}
.yf8{bottom:854.550000px;}
.y17a{bottom:861.600000px;}
.y15c{bottom:864.000000px;}
.ya{bottom:865.500000px;}
.y31{bottom:865.800000px;}
.y230{bottom:870.150000px;}
.ya3{bottom:871.650000px;}
.y179{bottom:875.700000px;}
.y24f{bottom:877.200000px;}
.y15b{bottom:881.550000px;}
.y9{bottom:883.050000px;}
.y30{bottom:883.350000px;}
.y22f{bottom:887.700000px;}
.y178{bottom:889.800000px;}
.y8{bottom:900.600000px;}
.y2f{bottom:900.900000px;}
.y22e{bottom:905.250000px;}
.y15a{bottom:908.100000px;}
.y7c{bottom:914.250000px;}
.y108{bottom:915.600000px;}
.y20b{bottom:918.900000px;}
.y22d{bottom:922.800000px;}
.y159{bottom:925.650000px;}
.y7b{bottom:931.800000px;}
.y1f7{bottom:933.000000px;}
.y1cf{bottom:939.450000px;}
.y22c{bottom:940.350000px;}
.y158{bottom:943.200000px;}
.y24e{bottom:945.150000px;}
.y7a{bottom:949.350000px;}
.y7{bottom:954.000000px;}
.y19f{bottom:954.150000px;}
.y1ce{bottom:957.000000px;}
.y22b{bottom:957.900000px;}
.y157{bottom:961.050000px;}
.y79{bottom:966.900000px;}
.y24d{bottom:968.250000px;}
.y19e{bottom:971.700000px;}
.y1cd{bottom:974.550000px;}
.y22a{bottom:975.450000px;}
.y24c{bottom:982.350000px;}
.y14a{bottom:984.300000px;}
.y78{bottom:984.450000px;}
.y19d{bottom:989.250000px;}
.y6{bottom:989.550000px;}
.y1cc{bottom:992.100000px;}
.y229{bottom:993.000000px;}
.yf7{bottom:999.600000px;}
.y77{bottom:1002.000000px;}
.y24b{bottom:1005.450000px;}
.y19c{bottom:1006.800000px;}
.y1cb{bottom:1009.650000px;}
.y228{bottom:1010.550000px;}
.y76{bottom:1019.550000px;}
.ye0{bottom:1023.900000px;}
.y19b{bottom:1024.350000px;}
.y5{bottom:1025.550000px;}
.y227{bottom:1028.100000px;}
.y24a{bottom:1028.550000px;}
.y1c7{bottom:1032.900000px;}
.y75{bottom:1037.100000px;}
.y19a{bottom:1041.900000px;}
.y156{bottom:1045.200000px;}
.y226{bottom:1045.650000px;}
.y1ca{bottom:1047.900000px;}
.y249{bottom:1051.650000px;}
.y74{bottom:1054.650000px;}
.y199{bottom:1059.450000px;}
.y248{bottom:1065.750000px;}
.y73{bottom:1072.200000px;}
.y4{bottom:1075.950000px;}
.y247{bottom:1079.850000px;}
.y1c3{bottom:1082.550000px;}
.y195{bottom:1082.700000px;}
.yf6{bottom:1084.800000px;}
.y198{bottom:1088.100000px;}
.y72{bottom:1089.750000px;}
.y1c6{bottom:1098.150000px;}
.y246{bottom:1102.950000px;}
.y71{bottom:1107.300000px;}
.y3{bottom:1110.450000px;}
.y191{bottom:1113.150000px;}
.y245{bottom:1117.050000px;}
.y70{bottom:1124.850000px;}
.y194{bottom:1129.500000px;}
.y244{bottom:1131.150000px;}
.y1c1{bottom:1133.550000px;}
.y1c2{bottom:1139.700000px;}
.y6f{bottom:1142.400000px;}
.y243{bottom:1145.250000px;}
.y2{bottom:1189.500000px;}
.hf{height:16.162207px;}
.h10{height:17.962207px;}
.h19{height:18.783105px;}
.h42{height:21.600000px;}
.h15{height:21.840820px;}
.h4b{height:23.100000px;}
.h40{height:24.234375px;}
.h1d{height:26.323242px;}
.h5f{height:26.894531px;}
.ha{height:26.956641px;}
.h18{height:27.082617px;}
.h69{height:27.432422px;}
.he{height:27.519434px;}
.h62{height:28.094531px;}
.h4a{height:28.508203px;}
.h61{height:28.694531px;}
.h1f{height:29.046094px;}
.h17{height:29.266699px;}
.h3c{height:29.482031px;}
.h11{height:29.919434px;}
.h46{height:30.121875px;}
.h16{height:30.466699px;}
.h47{height:30.721875px;}
.h54{height:30.846094px;}
.h23{height:31.061426px;}
.h35{height:31.197656px;}
.h2f{height:31.587891px;}
.hb{height:32.273438px;}
.h58{height:32.324414px;}
.h38{height:33.198047px;}
.h64{height:33.634863px;}
.h20{height:33.887109px;}
.h5d{height:34.124414px;}
.h37{height:34.398047px;}
.h34{height:34.508496px;}
.h52{height:35.382129px;}
.h44{height:36.255762px;}
.h49{height:36.908496px;}
.h56{height:39.313477px;}
.h59{height:39.803906px;}
.h2a{height:40.187109px;}
.hc{height:40.341797px;}
.h5b{height:40.403906px;}
.h4f{height:40.800000px;}
.h36{height:40.879687px;}
.h67{height:41.417578px;}
.h4e{height:42.000000px;}
.h13{height:42.117188px;}
.h3f{height:42.234375px;}
.hd{height:42.493359px;}
.h12{height:42.773438px;}
.h2{height:43.031250px;}
.h41{height:43.500000px;}
.h51{height:43.569141px;}
.h1a{height:43.905176px;}
.h1e{height:44.460938px;}
.h1b{height:44.644922px;}
.h5e{height:45.016699px;}
.h53{height:45.582129px;}
.h68{height:46.128223px;}
.h33{height:46.796484px;}
.h45{height:47.655762px;}
.h27{height:48.000000px;}
.h21{height:48.150000px;}
.h60{height:49.094531px;}
.h29{height:50.540625px;}
.h3e{height:50.681250px;}
.h6a{height:51.432422px;}
.h5a{height:51.981152px;}
.h5{height:52.646484px;}
.h7{height:52.792969px;}
.h24{height:53.172949px;}
.h26{height:53.320898px;}
.h3d{height:53.353125px;}
.h6{height:53.466797px;}
.h3a{height:53.699414px;}
.h65{height:53.728418px;}
.h30{height:53.848828px;}
.h3b{height:53.934961px;}
.h25{height:54.001465px;}
.h4c{height:54.376758px;}
.h5c{height:54.524414px;}
.h2d{height:55.576172px;}
.h22{height:56.131934px;}
.h31{height:56.687695px;}
.h2b{height:57.016406px;}
.h66{height:57.034863px;}
.h4d{height:57.243457px;}
.h4{height:63.351562px;}
.h2c{height:64.160156px;}
.h6b{height:64.546875px;}
.h8{height:74.853516px;}
.h48{height:75.450000px;}
.h55{height:96.300000px;}
.h28{height:103.500000px;}
.h32{height:106.350000px;}
.h3{height:106.933594px;}
.h43{height:109.950000px;}
.h50{height:114.750000px;}
.h9{height:130.650000px;}
.h2e{height:132.750000px;}
.h57{height:139.950000px;}
.h39{height:142.950000px;}
.h63{height:144.300000px;}
.h14{height:212.700000px;}
.h1c{height:231.900000px;}
.h1{height:1262.850000px;}
.h0{height:1263.000000px;}
.we{width:82.500000px;}
.wd{width:100.350000px;}
.w11{width:107.700000px;}
.w7{width:126.450000px;}
.w8{width:144.150000px;}
.w10{width:169.050000px;}
.w15{width:172.050000px;}
.w12{width:185.400000px;}
.w13{width:197.700000px;}
.w2{width:204.150000px;}
.w17{width:221.400000px;}
.w4{width:251.700000px;}
.w3{width:268.500000px;}
.wf{width:276.150000px;}
.w5{width:285.300000px;}
.wb{width:295.650000px;}
.wa{width:300.750000px;}
.w6{width:303.000000px;}
.wc{width:318.750000px;}
.w9{width:344.250000px;}
.w1{width:352.500000px;}
.w14{width:356.250000px;}
.w16{width:356.400000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.xd{left:1.050000px;}
.x49{left:2.700000px;}
.x34{left:4.650000px;}
.x59{left:5.700000px;}
.xc{left:7.500000px;}
.xb{left:9.450000px;}
.x60{left:10.950000px;}
.x6c{left:12.300000px;}
.x3a{left:13.500000px;}
.x5c{left:15.450000px;}
.xae{left:16.500000px;}
.x39{left:18.000000px;}
.x85{left:21.900000px;}
.x95{left:22.950000px;}
.x67{left:24.600000px;}
.xb1{left:27.000000px;}
.x2c{left:30.600000px;}
.x55{left:33.450000px;}
.x4f{left:34.500000px;}
.xa9{left:36.750000px;}
.x8c{left:38.400000px;}
.x29{left:41.700000px;}
.x2b{left:43.350000px;}
.x14{left:44.550000px;}
.x13{left:45.600000px;}
.x66{left:47.850000px;}
.x92{left:49.050000px;}
.x77{left:51.000000px;}
.x32{left:54.900000px;}
.xa7{left:56.100000px;}
.x96{left:57.750000px;}
.x65{left:58.800000px;}
.x70{left:60.150000px;}
.x2f{left:61.350000px;}
.x3b{left:62.850000px;}
.x93{left:64.950000px;}
.x5a{left:66.600000px;}
.x30{left:68.850000px;}
.x6b{left:69.900000px;}
.xa2{left:71.700000px;}
.x48{left:73.200000px;}
.x94{left:75.300000px;}
.x3d{left:76.350000px;}
.x5d{left:77.550000px;}
.x62{left:79.650000px;}
.x31{left:81.000000px;}
.x3c{left:82.200000px;}
.xa4{left:84.000000px;}
.x1{left:85.350000px;}
.x9f{left:86.700000px;}
.x45{left:87.750000px;}
.x2e{left:89.100000px;}
.x10{left:90.600000px;}
.x64{left:91.650000px;}
.x6d{left:92.700000px;}
.x54{left:95.700000px;}
.x2a{left:96.900000px;}
.x9c{left:99.300000px;}
.xac{left:101.700000px;}
.x61{left:103.350000px;}
.x9e{left:104.550000px;}
.x26{left:106.650000px;}
.x86{left:108.300000px;}
.x98{left:109.350000px;}
.x12{left:110.700000px;}
.x11{left:111.900000px;}
.x63{left:112.950000px;}
.x76{left:114.450000px;}
.x7{left:117.150000px;}
.x82{left:118.350000px;}
.x69{left:119.400000px;}
.x22{left:120.450000px;}
.x6a{left:121.950000px;}
.x7b{left:123.450000px;}
.xa{left:125.400000px;}
.x21{left:127.500000px;}
.x53{left:129.300000px;}
.x41{left:131.100000px;}
.x81{left:133.050000px;}
.x36{left:136.200000px;}
.x5{left:137.250000px;}
.x38{left:139.500000px;}
.x7a{left:142.050000px;}
.x80{left:143.100000px;}
.x4e{left:145.050000px;}
.x6f{left:146.250000px;}
.x4d{left:148.050000px;}
.x27{left:149.100000px;}
.x78{left:150.300000px;}
.x33{left:151.650000px;}
.x16{left:154.350000px;}
.x6e{left:156.450000px;}
.x9d{left:157.650000px;}
.x7f{left:159.600000px;}
.x15{left:161.550000px;}
.x28{left:162.750000px;}
.x2{left:164.700000px;}
.x17{left:168.600000px;}
.x89{left:172.650000px;}
.x47{left:175.050000px;}
.x4c{left:176.850000px;}
.x40{left:178.350000px;}
.xb2{left:180.900000px;}
.x2d{left:183.150000px;}
.x44{left:184.650000px;}
.x3e{left:190.050000px;}
.x8e{left:193.650000px;}
.x19{left:195.600000px;}
.x3f{left:197.700000px;}
.x43{left:199.650000px;}
.x18{left:202.500000px;}
.x37{left:205.350000px;}
.x91{left:207.150000px;}
.x1a{left:209.250000px;}
.x5b{left:214.200000px;}
.x46{left:216.450000px;}
.x56{left:217.950000px;}
.x52{left:220.650000px;}
.x5e{left:223.050000px;}
.x99{left:225.150000px;}
.x42{left:227.400000px;}
.x87{left:229.950000px;}
.x1c{left:232.200000px;}
.x7c{left:235.050000px;}
.x84{left:237.600000px;}
.x1b{left:239.100000px;}
.x4b{left:241.800000px;}
.x1d{left:245.400000px;}
.x7e{left:246.600000px;}
.x51{left:252.450000px;}
.x83{left:253.950000px;}
.xa3{left:256.950000px;}
.x50{left:258.750000px;}
.x79{left:259.800000px;}
.x75{left:261.300000px;}
.x7d{left:262.950000px;}
.x73{left:264.900000px;}
.xe{left:267.150000px;}
.x4a{left:270.600000px;}
.x71{left:272.850000px;}
.x1e{left:274.650000px;}
.xad{left:276.600000px;}
.x8f{left:278.850000px;}
.x88{left:282.300000px;}
.x20{left:283.800000px;}
.xa6{left:285.600000px;}
.xaa{left:287.850000px;}
.xa1{left:288.900000px;}
.x1f{left:290.850000px;}
.x90{left:292.500000px;}
.xaf{left:294.450000px;}
.x8d{left:298.950000px;}
.xa8{left:302.700000px;}
.x8b{left:309.000000px;}
.x3{left:317.700000px;}
.xf{left:319.350000px;}
.x6{left:322.350000px;}
.x74{left:326.100000px;}
.x72{left:333.750000px;}
.x4{left:338.550000px;}
.xab{left:340.800000px;}
.xa0{left:350.400000px;}
.xb5{left:368.700000px;}
.x68{left:426.900000px;}
.x8{left:469.950000px;}
.xa5{left:471.300000px;}
.x9{left:473.250000px;}
.x8a{left:480.450000px;}
.x23{left:491.250000px;}
.xb3{left:495.450000px;}
.x58{left:498.000000px;}
.x25{left:501.900000px;}
.x97{left:511.500000px;}
.x35{left:515.250000px;}
.x24{left:533.850000px;}
.xb0{left:538.800000px;}
.x9b{left:565.050000px;}
.xb4{left:574.950000px;}
.x5f{left:577.500000px;}
.x9a{left:643.800000px;}
.x57{left:811.650000px;}
@media print{
.v8{vertical-align:-20.266667pt;}
.va{vertical-align:-16.000000pt;}
.ve{vertical-align:-8.000000pt;}
.vc{vertical-align:-6.400000pt;}
.v2{vertical-align:-5.333333pt;}
.v4{vertical-align:-3.733333pt;}
.v5{vertical-align:-1.066667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:1.600000pt;}
.v9{vertical-align:4.266667pt;}
.v3{vertical-align:5.333333pt;}
.vd{vertical-align:9.066667pt;}
.vb{vertical-align:10.133333pt;}
.v7{vertical-align:16.000000pt;}
.vf{vertical-align:19.733333pt;}
.v6{vertical-align:20.800000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.053333pt;}
.lsd{letter-spacing:0.066133pt;}
.lsc{letter-spacing:0.106667pt;}
.ls8{letter-spacing:0.160000pt;}
.ls3{letter-spacing:0.213333pt;}
.ls4{letter-spacing:0.401067pt;}
.ls5{letter-spacing:0.426667pt;}
.ls0{letter-spacing:72.449302pt;}
.ls1{letter-spacing:94.541654pt;}
.ls14{letter-spacing:135.162999pt;}
.lsb{letter-spacing:135.306781pt;}
.lse{letter-spacing:138.756268pt;}
.lsa{letter-spacing:139.519944pt;}
.ls19{letter-spacing:149.037169pt;}
.ls1d{letter-spacing:153.948811pt;}
.ls6{letter-spacing:179.089110pt;}
.ls7{letter-spacing:187.551925pt;}
.ls15{letter-spacing:205.063939pt;}
.lsf{letter-spacing:208.987863pt;}
.ls17{letter-spacing:331.933280pt;}
.ls16{letter-spacing:387.727076pt;}
.ls1c{letter-spacing:401.267389pt;}
.ls10{letter-spacing:401.663699pt;}
.ls11{letter-spacing:546.677600pt;}
.ls1a{letter-spacing:598.785161pt;}
.ls12{letter-spacing:784.320564pt;}
.ls13{letter-spacing:805.995727pt;}
.ls18{letter-spacing:890.906165pt;}
.ls1b{letter-spacing:920.634581pt;}
.ws1{word-spacing:-18.666667pt;}
.ws30{word-spacing:-17.728000pt;}
.ws10{word-spacing:-15.659733pt;}
.ws26{word-spacing:-13.733333pt;}
.ws12{word-spacing:-13.600000pt;}
.wse{word-spacing:-13.466667pt;}
.ws0{word-spacing:-13.333333pt;}
.ws13{word-spacing:-12.852800pt;}
.ws20{word-spacing:-12.800000pt;}
.ws15{word-spacing:-12.261867pt;}
.ws6{word-spacing:-11.670933pt;}
.ws17{word-spacing:-11.227733pt;}
.ws5{word-spacing:-11.080000pt;}
.ws29{word-spacing:-10.932267pt;}
.ws1f{word-spacing:-10.666667pt;}
.wsd{word-spacing:-9.307200pt;}
.ws4{word-spacing:-8.864000pt;}
.ws24{word-spacing:-8.273067pt;}
.ws11{word-spacing:-8.000000pt;}
.ws27{word-spacing:-7.977600pt;}
.wsf{word-spacing:-7.866667pt;}
.wsc{word-spacing:-7.733333pt;}
.ws2f{word-spacing:-7.534400pt;}
.ws21{word-spacing:-7.466667pt;}
.ws2b{word-spacing:-7.386667pt;}
.ws22{word-spacing:-6.133333pt;}
.ws1c{word-spacing:-0.040533pt;}
.wsa{word-spacing:-0.035733pt;}
.ws7{word-spacing:0.000000pt;}
.wsb{word-spacing:21.317805pt;}
.ws2{word-spacing:44.767814pt;}
.ws3{word-spacing:62.113312pt;}
.ws2a{word-spacing:140.903959pt;}
.ws2e{word-spacing:144.142340pt;}
.ws14{word-spacing:148.803759pt;}
.ws16{word-spacing:149.409938pt;}
.ws25{word-spacing:169.858591pt;}
.ws9{word-spacing:217.491018pt;}
.ws8{word-spacing:248.807599pt;}
.ws28{word-spacing:312.241069pt;}
.ws1b{word-spacing:384.264518pt;}
.ws2d{word-spacing:393.401464pt;}
.ws1a{word-spacing:402.358970pt;}
.ws2c{word-spacing:600.650084pt;}
.ws1d{word-spacing:648.942171pt;}
.ws1e{word-spacing:650.514514pt;}
.ws18{word-spacing:676.882791pt;}
.ws19{word-spacing:681.785002pt;}
.ws23{word-spacing:924.003102pt;}
._14{margin-left:-383.667301pt;}
._1b{margin-left:-377.731208pt;}
._1c{margin-left:-376.646922pt;}
._65{margin-left:-353.492105pt;}
._58{margin-left:-342.341161pt;}
._4b{margin-left:-337.818947pt;}
._61{margin-left:-319.837280pt;}
._32{margin-left:-278.023495pt;}
._38{margin-left:-269.454888pt;}
._5a{margin-left:-264.348788pt;}
._2c{margin-left:-229.136128pt;}
._2e{margin-left:-225.577725pt;}
._2d{margin-left:-224.688125pt;}
._2b{margin-left:-222.908924pt;}
._1d{margin-left:-215.694267pt;}
._1e{margin-left:-213.878448pt;}
._12{margin-left:-209.789694pt;}
._4a{margin-left:-206.993109pt;}
._4c{margin-left:-206.103138pt;}
._49{margin-left:-204.323194pt;}
._5d{margin-left:-203.005169pt;}
._4d{margin-left:-201.789744pt;}
._62{margin-left:-199.702669pt;}
._5f{margin-left:-195.267286pt;}
._2f{margin-left:-191.825409pt;}
._13{margin-left:-189.155498pt;}
._30{margin-left:-185.284066pt;}
._5c{margin-left:-180.283839pt;}
._40{margin-left:-174.782708pt;}
._3f{margin-left:-173.204659pt;}
._64{margin-left:-169.719223pt;}
._52{margin-left:-168.407393pt;}
._39{margin-left:-167.226093pt;}
._3a{margin-left:-164.762265pt;}
._60{margin-left:-163.494777pt;}
._53{margin-left:-161.728183pt;}
._2a{margin-left:-156.338039pt;}
._28{margin-left:-153.820460pt;}
._29{margin-left:-152.218196pt;}
._16{margin-left:-150.736014pt;}
._21{margin-left:-149.256126pt;}
._22{margin-left:-147.114462pt;}
._5b{margin-left:-143.534999pt;}
._3e{margin-left:-142.169689pt;}
._3d{margin-left:-141.117656pt;}
._1a{margin-left:-139.738934pt;}
._45{margin-left:-135.175784pt;}
._48{margin-left:-134.133120pt;}
._44{margin-left:-133.090455pt;}
._15{margin-left:-130.837410pt;}
._46{margin-left:-129.441129pt;}
._36{margin-left:-128.146399pt;}
._31{margin-left:-127.017365pt;}
._18{margin-left:-122.731040pt;}
._27{margin-left:-118.511321pt;}
._1f{margin-left:-117.447416pt;}
._41{margin-left:-116.237823pt;}
._35{margin-left:-115.235118pt;}
._4f{margin-left:-111.357885pt;}
._17{margin-left:-109.034463pt;}
._37{margin-left:-105.518569pt;}
._33{margin-left:-99.892870pt;}
._26{margin-left:-98.381714pt;}
._24{margin-left:-97.320764pt;}
._25{margin-left:-95.709677pt;}
._23{margin-left:-94.643684pt;}
._42{margin-left:-92.795968pt;}
._3c{margin-left:-85.957754pt;}
._19{margin-left:-80.417876pt;}
._59{margin-left:-70.569165pt;}
._4e{margin-left:-68.956718pt;}
._47{margin-left:-59.351111pt;}
._51{margin-left:-40.725344pt;}
._63{margin-left:-34.392620pt;}
._5e{margin-left:-31.118459pt;}
._34{margin-left:-26.427464pt;}
._43{margin-left:-24.939847pt;}
._10{margin-left:-7.114667pt;}
._4{margin-left:-5.866667pt;}
._5{margin-left:-4.949333pt;}
._1{margin-left:-3.328000pt;}
._9{margin-left:-2.197333pt;}
._2{margin-left:-1.194667pt;}
._3{width:1.194667pt;}
._7{width:2.272000pt;}
._6{width:3.658667pt;}
._a{width:5.194667pt;}
._8{width:6.816000pt;}
._b{width:7.786667pt;}
._c{width:8.842667pt;}
._e{width:10.186667pt;}
._d{width:11.253333pt;}
._3b{width:12.341333pt;}
._50{width:14.240000pt;}
._54{width:17.621333pt;}
._55{width:19.818667pt;}
._56{width:22.549333pt;}
._57{width:23.466667pt;}
._67{width:26.986667pt;}
._11{width:33.114373pt;}
._f{width:38.954667pt;}
._66{width:40.917333pt;}
._0{width:398.421333pt;}
._20{width:1601.024000pt;}
.fsa{font-size:19.733333pt;}
.fse{font-size:22.933333pt;}
.fs1b{font-size:24.533333pt;}
.fs5{font-size:26.133333pt;}
.fsb{font-size:26.666667pt;}
.fs24{font-size:27.200000pt;}
.fs1c{font-size:28.266667pt;}
.fs11{font-size:28.800000pt;}
.fs1a{font-size:29.866667pt;}
.fs10{font-size:30.933333pt;}
.fs13{font-size:31.466667pt;}
.fs6{font-size:32.000000pt;}
.fsd{font-size:33.066667pt;}
.fs9{font-size:33.600000pt;}
.fsc{font-size:35.733333pt;}
.fs20{font-size:39.466667pt;}
.fs7{font-size:40.000000pt;}
.fs19{font-size:40.533333pt;}
.fs22{font-size:41.066667pt;}
.fs8{font-size:42.133333pt;}
.fs0{font-size:42.666667pt;}
.fs1e{font-size:43.200000pt;}
.fsf{font-size:44.266667pt;}
.fs18{font-size:46.400000pt;}
.fs1f{font-size:48.000000pt;}
.fs15{font-size:49.066667pt;}
.fs14{font-size:51.200000pt;}
.fs3{font-size:53.333333pt;}
.fs12{font-size:53.866667pt;}
.fs17{font-size:54.400000pt;}
.fs1d{font-size:54.933333pt;}
.fs16{font-size:56.533333pt;}
.fs21{font-size:63.466667pt;}
.fs2{font-size:64.000000pt;}
.fs23{font-size:65.600000pt;}
.fs4{font-size:74.666667pt;}
.fs1{font-size:106.666667pt;}
.yc9{bottom:-11.600000pt;}
.ya4{bottom:-5.600000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.133333pt;}
.y1a6{bottom:1.200000pt;}
.y196{bottom:2.266667pt;}
.y40{bottom:2.533333pt;}
.ya5{bottom:2.933333pt;}
.y1c8{bottom:3.066667pt;}
.ye1{bottom:3.333333pt;}
.yf9{bottom:3.466667pt;}
.y9c{bottom:3.733333pt;}
.ybf{bottom:4.133333pt;}
.yba{bottom:4.266667pt;}
.y13e{bottom:4.666667pt;}
.y1d4{bottom:4.800000pt;}
.y197{bottom:5.600000pt;}
.y1de{bottom:5.733333pt;}
.y14b{bottom:6.666667pt;}
.yea{bottom:6.800000pt;}
.yc2{bottom:7.466667pt;}
.yb8{bottom:7.600000pt;}
.y1db{bottom:7.733333pt;}
.y137{bottom:8.000000pt;}
.y1c4{bottom:10.266667pt;}
.y214{bottom:12.800000pt;}
.y1c5{bottom:13.600000pt;}
.ye3{bottom:13.733333pt;}
.yfb{bottom:13.866667pt;}
.ybe{bottom:14.533333pt;}
.yb9{bottom:14.666667pt;}
.ya8{bottom:15.866667pt;}
.ya9{bottom:16.000000pt;}
.y14d{bottom:16.400000pt;}
.y193{bottom:17.066667pt;}
.yec{bottom:17.200000pt;}
.y100{bottom:17.333333pt;}
.y89{bottom:17.466667pt;}
.yc1{bottom:18.000000pt;}
.y8d{bottom:18.133333pt;}
.y138{bottom:18.533333pt;}
.y126{bottom:19.066667pt;}
.y110{bottom:19.733333pt;}
.y1c9{bottom:20.133333pt;}
.y11b{bottom:20.266667pt;}
.y115{bottom:20.666667pt;}
.y151{bottom:21.066667pt;}
.y215{bottom:21.466667pt;}
.ye2{bottom:22.133333pt;}
.yfa{bottom:22.266667pt;}
.y116{bottom:22.533333pt;}
.y5a{bottom:22.800000pt;}
.y202{bottom:22.933333pt;}
.y52{bottom:23.066667pt;}
.ybb{bottom:23.200000pt;}
.y95{bottom:23.333333pt;}
.y5b{bottom:23.466667pt;}
.y53{bottom:23.600000pt;}
.y56{bottom:23.733333pt;}
.y54{bottom:24.000000pt;}
.y14c{bottom:24.266667pt;}
.y98{bottom:24.400000pt;}
.y57{bottom:24.533333pt;}
.y55{bottom:24.666667pt;}
.y97{bottom:24.800000pt;}
.y5c{bottom:25.200000pt;}
.y192{bottom:25.466667pt;}
.yeb{bottom:25.600000pt;}
.yff{bottom:25.733333pt;}
.yc0{bottom:26.400000pt;}
.ybc{bottom:26.533333pt;}
.y143{bottom:26.933333pt;}
.y1a9{bottom:27.066667pt;}
.y8a{bottom:27.733333pt;}
.y1a5{bottom:29.200000pt;}
.y1b0{bottom:29.866667pt;}
.y1e1{bottom:30.800000pt;}
.y205{bottom:31.466667pt;}
.y1ae{bottom:31.866667pt;}
.y1dd{bottom:32.800000pt;}
.y9a{bottom:33.333333pt;}
.y50{bottom:34.266667pt;}
.y51{bottom:34.800000pt;}
.ycf{bottom:35.066667pt;}
.ycd{bottom:36.800000pt;}
.y122{bottom:37.466667pt;}
.y213{bottom:37.866667pt;}
.y124{bottom:38.400000pt;}
.y1af{bottom:38.666667pt;}
.y10c{bottom:38.933333pt;}
.ycc{bottom:39.066667pt;}
.y42{bottom:39.200000pt;}
.yd0{bottom:39.333333pt;}
.y10e{bottom:39.600000pt;}
.y211{bottom:39.733333pt;}
.yca{bottom:40.400000pt;}
.y125{bottom:40.533333pt;}
.y1ac{bottom:40.800000pt;}
.y20a{bottom:41.333333pt;}
.y10f{bottom:42.133333pt;}
.y1e6{bottom:42.266667pt;}
.ye4{bottom:42.933333pt;}
.y152{bottom:43.333333pt;}
.y1ff{bottom:43.466667pt;}
.y4f{bottom:45.200000pt;}
.y1a7{bottom:45.466667pt;}
.y1d6{bottom:46.000000pt;}
.yed{bottom:46.266667pt;}
.y101{bottom:46.400000pt;}
.y58{bottom:46.533333pt;}
.y129{bottom:46.800000pt;}
.y59{bottom:47.066667pt;}
.y13f{bottom:47.333333pt;}
.y1a3{bottom:47.466667pt;}
.y1df{bottom:48.533333pt;}
.y12d{bottom:48.666667pt;}
.y1d8{bottom:48.800000pt;}
.y1d5{bottom:49.866667pt;}
.y139{bottom:50.800000pt;}
.y1d2{bottom:51.466667pt;}
.y92{bottom:51.600000pt;}
.y119{bottom:52.133333pt;}
.y117{bottom:52.800000pt;}
.ye6{bottom:53.333333pt;}
.yfc{bottom:53.466667pt;}
.y12a{bottom:53.866667pt;}
.y11c{bottom:54.400000pt;}
.y118{bottom:55.066667pt;}
.y49{bottom:55.333333pt;}
.y203{bottom:55.466667pt;}
.y120{bottom:55.733333pt;}
.y12b{bottom:56.000000pt;}
.y14f{bottom:56.400000pt;}
.yef{bottom:56.666667pt;}
.y102{bottom:56.800000pt;}
.y4d{bottom:57.200000pt;}
.y4c{bottom:57.333333pt;}
.y106{bottom:57.600000pt;}
.y1a2{bottom:57.866667pt;}
.y1ad{bottom:58.000000pt;}
.y90{bottom:58.133333pt;}
.y1a8{bottom:59.333333pt;}
.y1e5{bottom:59.733333pt;}
.y153{bottom:61.066667pt;}
.y46{bottom:61.200000pt;}
.y1a4{bottom:61.466667pt;}
.ye5{bottom:61.733333pt;}
.y1e4{bottom:61.866667pt;}
.y1e0{bottom:62.133333pt;}
.y43{bottom:62.533333pt;}
.y14e{bottom:64.266667pt;}
.y1dc{bottom:64.400000pt;}
.yee{bottom:65.200000pt;}
.yf3{bottom:65.866667pt;}
.y140{bottom:66.266667pt;}
.y121{bottom:66.533333pt;}
.y123{bottom:66.800000pt;}
.y4e{bottom:67.333333pt;}
.y206{bottom:68.000000pt;}
.y10b{bottom:68.800000pt;}
.y127{bottom:68.933333pt;}
.y10d{bottom:69.200000pt;}
.y13a{bottom:69.733333pt;}
.y1fa{bottom:69.866667pt;}
.y208{bottom:70.933333pt;}
.y111{bottom:71.333333pt;}
.y201{bottom:71.466667pt;}
.y112{bottom:71.733333pt;}
.y88{bottom:72.000000pt;}
.yce{bottom:72.933333pt;}
.y1fb{bottom:73.333333pt;}
.y1f8{bottom:74.666667pt;}
.ycb{bottom:75.733333pt;}
.y91{bottom:78.933333pt;}
.y212{bottom:80.000000pt;}
.y154{bottom:81.466667pt;}
.y210{bottom:82.133333pt;}
.y11a{bottom:82.266667pt;}
.yfd{bottom:82.400000pt;}
.ye7{bottom:82.533333pt;}
.y200{bottom:83.333333pt;}
.y113{bottom:83.600000pt;}
.y128{bottom:83.733333pt;}
.yaa{bottom:84.666667pt;}
.y11d{bottom:84.933333pt;}
.y93{bottom:85.066667pt;}
.y41{bottom:85.200000pt;}
.y114{bottom:85.466667pt;}
.y12c{bottom:85.600000pt;}
.y103{bottom:85.733333pt;}
.yf0{bottom:85.866667pt;}
.yaf{bottom:86.133333pt;}
.yf4{bottom:86.666667pt;}
.y8b{bottom:87.333333pt;}
.y141{bottom:88.133333pt;}
.y1a1{bottom:88.666667pt;}
.y1d7{bottom:90.000000pt;}
.y1da{bottom:90.933333pt;}
.y1d9{bottom:91.466667pt;}
.y13b{bottom:91.600000pt;}
.y1d1{bottom:92.133333pt;}
.yfe{bottom:92.800000pt;}
.ye9{bottom:92.933333pt;}
.y1d3{bottom:93.200000pt;}
.y45{bottom:93.466667pt;}
.y96{bottom:93.600000pt;}
.y4a{bottom:94.133333pt;}
.y48{bottom:94.533333pt;}
.y47{bottom:95.200000pt;}
.y4b{bottom:95.733333pt;}
.y105{bottom:96.133333pt;}
.yf2{bottom:96.266667pt;}
.y107{bottom:96.933333pt;}
.y155{bottom:99.200000pt;}
.ya6{bottom:100.666667pt;}
.ye8{bottom:101.200000pt;}
.y2e{bottom:101.866667pt;}
.y13d{bottom:102.133333pt;}
.y150{bottom:102.400000pt;}
.y6e{bottom:102.800000pt;}
.y104{bottom:104.533333pt;}
.yf1{bottom:104.666667pt;}
.yf5{bottom:105.466667pt;}
.y142{bottom:107.066667pt;}
.y94{bottom:107.200000pt;}
.y204{bottom:107.466667pt;}
.y44{bottom:108.133333pt;}
.y207{bottom:108.933333pt;}
.y1f9{bottom:109.333333pt;}
.y1f6{bottom:109.466667pt;}
.y209{bottom:109.600000pt;}
.y20e{bottom:109.733333pt;}
.y13c{bottom:110.533333pt;}
.y1fc{bottom:110.800000pt;}
.y20f{bottom:111.200000pt;}
.y1fe{bottom:111.333333pt;}
.y1fd{bottom:112.000000pt;}
.y2d{bottom:117.466667pt;}
.y190{bottom:117.600000pt;}
.y149{bottom:117.733333pt;}
.y1c0{bottom:118.000000pt;}
.y177{bottom:118.266667pt;}
.y6d{bottom:118.400000pt;}
.y9b{bottom:118.533333pt;}
.ya7{bottom:118.666667pt;}
.y268{bottom:119.466667pt;}
.y20d{bottom:120.000000pt;}
.y8e{bottom:120.400000pt;}
.y1f5{bottom:125.066667pt;}
.y225{bottom:126.400000pt;}
.ya2{bottom:126.533333pt;}
.ydf{bottom:126.666667pt;}
.y176{bottom:130.800000pt;}
.y9d{bottom:131.200000pt;}
.y18f{bottom:133.200000pt;}
.y148{bottom:133.333333pt;}
.y1bf{bottom:133.600000pt;}
.y87{bottom:134.000000pt;}
.yb0{bottom:135.866667pt;}
.y2c{bottom:139.733333pt;}
.y1f4{bottom:140.666667pt;}
.y224{bottom:142.000000pt;}
.ya1{bottom:142.133333pt;}
.y6c{bottom:142.933333pt;}
.yde{bottom:143.200000pt;}
.y175{bottom:143.333333pt;}
.yab{bottom:147.600000pt;}
.y18e{bottom:148.800000pt;}
.y8c{bottom:148.933333pt;}
.y147{bottom:149.200000pt;}
.y2b{bottom:155.333333pt;}
.y99{bottom:155.866667pt;}
.y1f3{bottom:156.266667pt;}
.y223{bottom:157.600000pt;}
.ydd{bottom:158.800000pt;}
.y6b{bottom:164.800000pt;}
.ya0{bottom:165.200000pt;}
.y174{bottom:168.400000pt;}
.y2a{bottom:170.933333pt;}
.y1f2{bottom:171.866667pt;}
.y18d{bottom:172.400000pt;}
.y222{bottom:173.466667pt;}
.y267{bottom:174.666667pt;}
.yad{bottom:175.866667pt;}
.y9f{bottom:177.733333pt;}
.y1be{bottom:180.400000pt;}
.y146{bottom:180.666667pt;}
.y173{bottom:180.933333pt;}
.ydc{bottom:182.400000pt;}
.y8f{bottom:183.200000pt;}
.y29{bottom:186.533333pt;}
.y1f1{bottom:187.466667pt;}
.y18c{bottom:188.000000pt;}
.y221{bottom:189.066667pt;}
.y9e{bottom:190.266667pt;}
.yae{bottom:192.533333pt;}
.y1bd{bottom:196.000000pt;}
.y145{bottom:196.266667pt;}
.ydb{bottom:198.000000pt;}
.yac{bottom:200.266667pt;}
.y28{bottom:202.133333pt;}
.y1f0{bottom:203.066667pt;}
.y18b{bottom:203.600000pt;}
.y220{bottom:204.666667pt;}
.y86{bottom:208.533333pt;}
.y1bc{bottom:211.600000pt;}
.y6a{bottom:212.400000pt;}
.yda{bottom:213.600000pt;}
.y27{bottom:217.733333pt;}
.y1ef{bottom:218.666667pt;}
.y18a{bottom:219.200000pt;}
.y136{bottom:219.600000pt;}
.y21f{bottom:220.266667pt;}
.y1bb{bottom:227.200000pt;}
.y69{bottom:228.000000pt;}
.yd9{bottom:229.200000pt;}
.y26{bottom:233.333333pt;}
.y1ee{bottom:234.266667pt;}
.y189{bottom:234.800000pt;}
.y21e{bottom:235.866667pt;}
.y68{bottom:243.600000pt;}
.yd8{bottom:244.800000pt;}
.y25{bottom:248.933333pt;}
.y1ed{bottom:249.866667pt;}
.y1ba{bottom:250.266667pt;}
.y188{bottom:250.400000pt;}
.y21d{bottom:251.466667pt;}
.y67{bottom:259.200000pt;}
.yd7{bottom:260.400000pt;}
.y1b9{bottom:262.800000pt;}
.y24{bottom:264.533333pt;}
.y187{bottom:266.000000pt;}
.y21c{bottom:267.066667pt;}
.y66{bottom:274.800000pt;}
.y1b8{bottom:275.333333pt;}
.yd6{bottom:276.000000pt;}
.y144{bottom:278.266667pt;}
.y1ec{bottom:280.933333pt;}
.y186{bottom:281.600000pt;}
.y23{bottom:286.800000pt;}
.y65{bottom:290.400000pt;}
.yd5{bottom:291.600000pt;}
.y1eb{bottom:293.466667pt;}
.y185{bottom:297.200000pt;}
.y22{bottom:302.400000pt;}
.y1ea{bottom:306.000000pt;}
.yd4{bottom:307.200000pt;}
.y64{bottom:314.000000pt;}
.y21{bottom:318.000000pt;}
.y184{bottom:321.733333pt;}
.yd3{bottom:322.800000pt;}
.y63{bottom:329.600000pt;}
.y20{bottom:333.600000pt;}
.y21b{bottom:341.333333pt;}
.y62{bottom:345.200000pt;}
.yd2{bottom:346.800000pt;}
.y1f{bottom:349.200000pt;}
.y21a{bottom:353.866667pt;}
.y135{bottom:357.600000pt;}
.y61{bottom:360.800000pt;}
.y1e{bottom:364.800000pt;}
.y219{bottom:366.400000pt;}
.y134{bottom:373.200000pt;}
.y183{bottom:374.666667pt;}
.y1d{bottom:380.400000pt;}
.y60{bottom:383.866667pt;}
.yd1{bottom:388.666667pt;}
.y133{bottom:388.800000pt;}
.y242{bottom:389.200000pt;}
.y266{bottom:390.133333pt;}
.y182{bottom:390.266667pt;}
.y5f{bottom:396.400000pt;}
.y241{bottom:401.733333pt;}
.y132{bottom:404.400000pt;}
.y1c{bottom:404.933333pt;}
.y265{bottom:405.733333pt;}
.y181{bottom:405.866667pt;}
.yc8{bottom:406.933333pt;}
.y5e{bottom:408.933333pt;}
.y240{bottom:414.266667pt;}
.y85{bottom:416.533333pt;}
.y131{bottom:420.000000pt;}
.y264{bottom:421.333333pt;}
.y5d{bottom:421.466667pt;}
.y172{bottom:424.800000pt;}
.y84{bottom:432.133333pt;}
.y23f{bottom:434.800000pt;}
.y263{bottom:436.933333pt;}
.y180{bottom:437.066667pt;}
.y3f{bottom:439.733333pt;}
.y171{bottom:440.400000pt;}
.y130{bottom:443.066667pt;}
.y23e{bottom:447.333333pt;}
.y83{bottom:447.733333pt;}
.y262{bottom:452.533333pt;}
.y1b{bottom:453.866667pt;}
.y12f{bottom:455.600000pt;}
.y170{bottom:456.000000pt;}
.y23d{bottom:459.866667pt;}
.y17f{bottom:460.133333pt;}
.y82{bottom:463.333333pt;}
.y261{bottom:468.133333pt;}
.y1a{bottom:469.466667pt;}
.y16f{bottom:471.600000pt;}
.y17e{bottom:472.666667pt;}
.y12e{bottom:476.400000pt;}
.y81{bottom:478.933333pt;}
.y23c{bottom:480.400000pt;}
.y260{bottom:483.733333pt;}
.y19{bottom:485.066667pt;}
.y17d{bottom:485.200000pt;}
.y11f{bottom:486.400000pt;}
.y16e{bottom:487.200000pt;}
.y23b{bottom:492.933333pt;}
.y80{bottom:494.533333pt;}
.y17c{bottom:497.733333pt;}
.y25f{bottom:499.333333pt;}
.y16d{bottom:502.800000pt;}
.y23a{bottom:505.466667pt;}
.y18{bottom:509.600000pt;}
.y7f{bottom:510.133333pt;}
.y25e{bottom:514.933333pt;}
.yc7{bottom:517.866667pt;}
.y239{bottom:518.000000pt;}
.y16c{bottom:518.400000pt;}
.y1b7{bottom:528.666667pt;}
.y25d{bottom:530.533333pt;}
.yc6{bottom:533.466667pt;}
.y16b{bottom:534.000000pt;}
.y7e{bottom:538.533333pt;}
.y1b6{bottom:544.266667pt;}
.y25c{bottom:546.133333pt;}
.yc5{bottom:549.333333pt;}
.y16a{bottom:549.600000pt;}
.y7d{bottom:551.066667pt;}
.y17{bottom:558.533333pt;}
.y1b5{bottom:559.866667pt;}
.y25b{bottom:561.733333pt;}
.yc4{bottom:564.933333pt;}
.y169{bottom:565.200000pt;}
.y1e9{bottom:566.533333pt;}
.y3e{bottom:566.800000pt;}
.y238{bottom:573.066667pt;}
.y16{bottom:574.133333pt;}
.y1b4{bottom:575.466667pt;}
.y25a{bottom:577.333333pt;}
.y1e8{bottom:579.066667pt;}
.y168{bottom:580.800000pt;}
.y3d{bottom:582.400000pt;}
.y11e{bottom:583.333333pt;}
.ybd{bottom:585.866667pt;}
.y15{bottom:589.733333pt;}
.y259{bottom:592.933333pt;}
.y10a{bottom:593.466667pt;}
.y167{bottom:596.400000pt;}
.y3c{bottom:598.000000pt;}
.y1b3{bottom:598.533333pt;}
.y1e7{bottom:600.400000pt;}
.yc3{bottom:602.400000pt;}
.y14{bottom:605.333333pt;}
.y258{bottom:608.533333pt;}
.y1b2{bottom:611.066667pt;}
.y166{bottom:612.000000pt;}
.y1e3{bottom:612.933333pt;}
.y3b{bottom:613.600000pt;}
.y237{bottom:622.000000pt;}
.y257{bottom:624.133333pt;}
.y218{bottom:627.200000pt;}
.y165{bottom:627.600000pt;}
.yb7{bottom:628.400000pt;}
.y13{bottom:628.933333pt;}
.y3a{bottom:629.200000pt;}
.y1b1{bottom:632.400000pt;}
.y236{bottom:637.600000pt;}
.y217{bottom:639.733333pt;}
.y164{bottom:643.200000pt;}
.y12{bottom:644.533333pt;}
.y39{bottom:644.800000pt;}
.y1ab{bottom:644.933333pt;}
.y235{bottom:653.200000pt;}
.y256{bottom:653.333333pt;}
.y163{bottom:658.800000pt;}
.y11{bottom:660.133333pt;}
.y38{bottom:660.400000pt;}
.y216{bottom:661.066667pt;}
.y234{bottom:668.800000pt;}
.y255{bottom:668.933333pt;}
.y20c{bottom:673.600000pt;}
.yb6{bottom:674.133333pt;}
.y162{bottom:674.400000pt;}
.y10{bottom:675.733333pt;}
.y37{bottom:676.000000pt;}
.y233{bottom:684.400000pt;}
.y254{bottom:684.533333pt;}
.yb5{bottom:689.733333pt;}
.y161{bottom:690.000000pt;}
.yf{bottom:691.333333pt;}
.y36{bottom:691.600000pt;}
.y232{bottom:700.000000pt;}
.y253{bottom:700.133333pt;}
.yb4{bottom:705.333333pt;}
.y160{bottom:705.600000pt;}
.ye{bottom:706.933333pt;}
.y35{bottom:707.200000pt;}
.y1e2{bottom:709.466667pt;}
.y252{bottom:715.733333pt;}
.yb3{bottom:720.933333pt;}
.y15f{bottom:721.200000pt;}
.y1d0{bottom:722.133333pt;}
.yd{bottom:722.533333pt;}
.y34{bottom:722.800000pt;}
.y231{bottom:724.533333pt;}
.y1aa{bottom:726.933333pt;}
.y251{bottom:731.333333pt;}
.y15e{bottom:736.800000pt;}
.yc{bottom:738.133333pt;}
.y33{bottom:738.400000pt;}
.y109{bottom:739.066667pt;}
.y1a0{bottom:739.466667pt;}
.yb2{bottom:744.000000pt;}
.y250{bottom:746.933333pt;}
.y15d{bottom:752.400000pt;}
.yb{bottom:753.733333pt;}
.y32{bottom:754.000000pt;}
.yb1{bottom:756.533333pt;}
.y17b{bottom:757.333333pt;}
.yf8{bottom:759.600000pt;}
.y17a{bottom:765.866667pt;}
.y15c{bottom:768.000000pt;}
.ya{bottom:769.333333pt;}
.y31{bottom:769.600000pt;}
.y230{bottom:773.466667pt;}
.ya3{bottom:774.800000pt;}
.y179{bottom:778.400000pt;}
.y24f{bottom:779.733333pt;}
.y15b{bottom:783.600000pt;}
.y9{bottom:784.933333pt;}
.y30{bottom:785.200000pt;}
.y22f{bottom:789.066667pt;}
.y178{bottom:790.933333pt;}
.y8{bottom:800.533333pt;}
.y2f{bottom:800.800000pt;}
.y22e{bottom:804.666667pt;}
.y15a{bottom:807.200000pt;}
.y7c{bottom:812.666667pt;}
.y108{bottom:813.866667pt;}
.y20b{bottom:816.800000pt;}
.y22d{bottom:820.266667pt;}
.y159{bottom:822.800000pt;}
.y7b{bottom:828.266667pt;}
.y1f7{bottom:829.333333pt;}
.y1cf{bottom:835.066667pt;}
.y22c{bottom:835.866667pt;}
.y158{bottom:838.400000pt;}
.y24e{bottom:840.133333pt;}
.y7a{bottom:843.866667pt;}
.y7{bottom:848.000000pt;}
.y19f{bottom:848.133333pt;}
.y1ce{bottom:850.666667pt;}
.y22b{bottom:851.466667pt;}
.y157{bottom:854.266667pt;}
.y79{bottom:859.466667pt;}
.y24d{bottom:860.666667pt;}
.y19e{bottom:863.733333pt;}
.y1cd{bottom:866.266667pt;}
.y22a{bottom:867.066667pt;}
.y24c{bottom:873.200000pt;}
.y14a{bottom:874.933333pt;}
.y78{bottom:875.066667pt;}
.y19d{bottom:879.333333pt;}
.y6{bottom:879.600000pt;}
.y1cc{bottom:881.866667pt;}
.y229{bottom:882.666667pt;}
.yf7{bottom:888.533333pt;}
.y77{bottom:890.666667pt;}
.y24b{bottom:893.733333pt;}
.y19c{bottom:894.933333pt;}
.y1cb{bottom:897.466667pt;}
.y228{bottom:898.266667pt;}
.y76{bottom:906.266667pt;}
.ye0{bottom:910.133333pt;}
.y19b{bottom:910.533333pt;}
.y5{bottom:911.600000pt;}
.y227{bottom:913.866667pt;}
.y24a{bottom:914.266667pt;}
.y1c7{bottom:918.133333pt;}
.y75{bottom:921.866667pt;}
.y19a{bottom:926.133333pt;}
.y156{bottom:929.066667pt;}
.y226{bottom:929.466667pt;}
.y1ca{bottom:931.466667pt;}
.y249{bottom:934.800000pt;}
.y74{bottom:937.466667pt;}
.y199{bottom:941.733333pt;}
.y248{bottom:947.333333pt;}
.y73{bottom:953.066667pt;}
.y4{bottom:956.400000pt;}
.y247{bottom:959.866667pt;}
.y1c3{bottom:962.266667pt;}
.y195{bottom:962.400000pt;}
.yf6{bottom:964.266667pt;}
.y198{bottom:967.200000pt;}
.y72{bottom:968.666667pt;}
.y1c6{bottom:976.133333pt;}
.y246{bottom:980.400000pt;}
.y71{bottom:984.266667pt;}
.y3{bottom:987.066667pt;}
.y191{bottom:989.466667pt;}
.y245{bottom:992.933333pt;}
.y70{bottom:999.866667pt;}
.y194{bottom:1004.000000pt;}
.y244{bottom:1005.466667pt;}
.y1c1{bottom:1007.600000pt;}
.y1c2{bottom:1013.066667pt;}
.y6f{bottom:1015.466667pt;}
.y243{bottom:1018.000000pt;}
.y2{bottom:1057.333333pt;}
.hf{height:14.366406pt;}
.h10{height:15.966406pt;}
.h19{height:16.696094pt;}
.h42{height:19.200000pt;}
.h15{height:19.414062pt;}
.h4b{height:20.533333pt;}
.h40{height:21.541667pt;}
.h1d{height:23.398438pt;}
.h5f{height:23.906250pt;}
.ha{height:23.961458pt;}
.h18{height:24.073438pt;}
.h69{height:24.384375pt;}
.he{height:24.461719pt;}
.h62{height:24.972917pt;}
.h4a{height:25.340625pt;}
.h61{height:25.506250pt;}
.h1f{height:25.818750pt;}
.h17{height:26.014844pt;}
.h3c{height:26.206250pt;}
.h11{height:26.595052pt;}
.h46{height:26.775000pt;}
.h16{height:27.081510pt;}
.h47{height:27.308333pt;}
.h54{height:27.418750pt;}
.h23{height:27.610156pt;}
.h35{height:27.731250pt;}
.h2f{height:28.078125pt;}
.hb{height:28.687500pt;}
.h58{height:28.732813pt;}
.h38{height:29.509375pt;}
.h64{height:29.897656pt;}
.h20{height:30.121875pt;}
.h5d{height:30.332813pt;}
.h37{height:30.576042pt;}
.h34{height:30.674219pt;}
.h52{height:31.450781pt;}
.h44{height:32.227344pt;}
.h49{height:32.807552pt;}
.h56{height:34.945312pt;}
.h59{height:35.381250pt;}
.h2a{height:35.721875pt;}
.hc{height:35.859375pt;}
.h5b{height:35.914583pt;}
.h4f{height:36.266667pt;}
.h36{height:36.337500pt;}
.h67{height:36.815625pt;}
.h4e{height:37.333333pt;}
.h13{height:37.437500pt;}
.h3f{height:37.541667pt;}
.hd{height:37.771875pt;}
.h12{height:38.020833pt;}
.h2{height:38.250000pt;}
.h41{height:38.666667pt;}
.h51{height:38.728125pt;}
.h1a{height:39.026823pt;}
.h1e{height:39.520833pt;}
.h1b{height:39.684375pt;}
.h5e{height:40.014844pt;}
.h53{height:40.517448pt;}
.h68{height:41.002865pt;}
.h33{height:41.596875pt;}
.h45{height:42.360677pt;}
.h27{height:42.666667pt;}
.h21{height:42.800000pt;}
.h60{height:43.639583pt;}
.h29{height:44.925000pt;}
.h3e{height:45.050000pt;}
.h6a{height:45.717708pt;}
.h5a{height:46.205469pt;}
.h5{height:46.796875pt;}
.h7{height:46.927083pt;}
.h24{height:47.264844pt;}
.h26{height:47.396354pt;}
.h3d{height:47.425000pt;}
.h6{height:47.526042pt;}
.h3a{height:47.732812pt;}
.h65{height:47.758594pt;}
.h30{height:47.865625pt;}
.h3b{height:47.942187pt;}
.h25{height:48.001302pt;}
.h4c{height:48.334896pt;}
.h5c{height:48.466146pt;}
.h2d{height:49.401042pt;}
.h22{height:49.895052pt;}
.h31{height:50.389062pt;}
.h2b{height:50.681250pt;}
.h66{height:50.697656pt;}
.h4d{height:50.883073pt;}
.h4{height:56.312500pt;}
.h2c{height:57.031250pt;}
.h6b{height:57.375000pt;}
.h8{height:66.536458pt;}
.h48{height:67.066667pt;}
.h55{height:85.600000pt;}
.h28{height:92.000000pt;}
.h32{height:94.533333pt;}
.h3{height:95.052083pt;}
.h43{height:97.733333pt;}
.h50{height:102.000000pt;}
.h9{height:116.133333pt;}
.h2e{height:118.000000pt;}
.h57{height:124.400000pt;}
.h39{height:127.066667pt;}
.h63{height:128.266667pt;}
.h14{height:189.066667pt;}
.h1c{height:206.133333pt;}
.h1{height:1122.533333pt;}
.h0{height:1122.666667pt;}
.we{width:73.333333pt;}
.wd{width:89.200000pt;}
.w11{width:95.733333pt;}
.w7{width:112.400000pt;}
.w8{width:128.133333pt;}
.w10{width:150.266667pt;}
.w15{width:152.933333pt;}
.w12{width:164.800000pt;}
.w13{width:175.733333pt;}
.w2{width:181.466667pt;}
.w17{width:196.800000pt;}
.w4{width:223.733333pt;}
.w3{width:238.666667pt;}
.wf{width:245.466667pt;}
.w5{width:253.600000pt;}
.wb{width:262.800000pt;}
.wa{width:267.333333pt;}
.w6{width:269.333333pt;}
.wc{width:283.333333pt;}
.w9{width:306.000000pt;}
.w1{width:313.333333pt;}
.w14{width:316.666667pt;}
.w16{width:316.800000pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.xd{left:0.933333pt;}
.x49{left:2.400000pt;}
.x34{left:4.133333pt;}
.x59{left:5.066667pt;}
.xc{left:6.666667pt;}
.xb{left:8.400000pt;}
.x60{left:9.733333pt;}
.x6c{left:10.933333pt;}
.x3a{left:12.000000pt;}
.x5c{left:13.733333pt;}
.xae{left:14.666667pt;}
.x39{left:16.000000pt;}
.x85{left:19.466667pt;}
.x95{left:20.400000pt;}
.x67{left:21.866667pt;}
.xb1{left:24.000000pt;}
.x2c{left:27.200000pt;}
.x55{left:29.733333pt;}
.x4f{left:30.666667pt;}
.xa9{left:32.666667pt;}
.x8c{left:34.133333pt;}
.x29{left:37.066667pt;}
.x2b{left:38.533333pt;}
.x14{left:39.600000pt;}
.x13{left:40.533333pt;}
.x66{left:42.533333pt;}
.x92{left:43.600000pt;}
.x77{left:45.333333pt;}
.x32{left:48.800000pt;}
.xa7{left:49.866667pt;}
.x96{left:51.333333pt;}
.x65{left:52.266667pt;}
.x70{left:53.466667pt;}
.x2f{left:54.533333pt;}
.x3b{left:55.866667pt;}
.x93{left:57.733333pt;}
.x5a{left:59.200000pt;}
.x30{left:61.200000pt;}
.x6b{left:62.133333pt;}
.xa2{left:63.733333pt;}
.x48{left:65.066667pt;}
.x94{left:66.933333pt;}
.x3d{left:67.866667pt;}
.x5d{left:68.933333pt;}
.x62{left:70.800000pt;}
.x31{left:72.000000pt;}
.x3c{left:73.066667pt;}
.xa4{left:74.666667pt;}
.x1{left:75.866667pt;}
.x9f{left:77.066667pt;}
.x45{left:78.000000pt;}
.x2e{left:79.200000pt;}
.x10{left:80.533333pt;}
.x64{left:81.466667pt;}
.x6d{left:82.400000pt;}
.x54{left:85.066667pt;}
.x2a{left:86.133333pt;}
.x9c{left:88.266667pt;}
.xac{left:90.400000pt;}
.x61{left:91.866667pt;}
.x9e{left:92.933333pt;}
.x26{left:94.800000pt;}
.x86{left:96.266667pt;}
.x98{left:97.200000pt;}
.x12{left:98.400000pt;}
.x11{left:99.466667pt;}
.x63{left:100.400000pt;}
.x76{left:101.733333pt;}
.x7{left:104.133333pt;}
.x82{left:105.200000pt;}
.x69{left:106.133333pt;}
.x22{left:107.066667pt;}
.x6a{left:108.400000pt;}
.x7b{left:109.733333pt;}
.xa{left:111.466667pt;}
.x21{left:113.333333pt;}
.x53{left:114.933333pt;}
.x41{left:116.533333pt;}
.x81{left:118.266667pt;}
.x36{left:121.066667pt;}
.x5{left:122.000000pt;}
.x38{left:124.000000pt;}
.x7a{left:126.266667pt;}
.x80{left:127.200000pt;}
.x4e{left:128.933333pt;}
.x6f{left:130.000000pt;}
.x4d{left:131.600000pt;}
.x27{left:132.533333pt;}
.x78{left:133.600000pt;}
.x33{left:134.800000pt;}
.x16{left:137.200000pt;}
.x6e{left:139.066667pt;}
.x9d{left:140.133333pt;}
.x7f{left:141.866667pt;}
.x15{left:143.600000pt;}
.x28{left:144.666667pt;}
.x2{left:146.400000pt;}
.x17{left:149.866667pt;}
.x89{left:153.466667pt;}
.x47{left:155.600000pt;}
.x4c{left:157.200000pt;}
.x40{left:158.533333pt;}
.xb2{left:160.800000pt;}
.x2d{left:162.800000pt;}
.x44{left:164.133333pt;}
.x3e{left:168.933333pt;}
.x8e{left:172.133333pt;}
.x19{left:173.866667pt;}
.x3f{left:175.733333pt;}
.x43{left:177.466667pt;}
.x18{left:180.000000pt;}
.x37{left:182.533333pt;}
.x91{left:184.133333pt;}
.x1a{left:186.000000pt;}
.x5b{left:190.400000pt;}
.x46{left:192.400000pt;}
.x56{left:193.733333pt;}
.x52{left:196.133333pt;}
.x5e{left:198.266667pt;}
.x99{left:200.133333pt;}
.x42{left:202.133333pt;}
.x87{left:204.400000pt;}
.x1c{left:206.400000pt;}
.x7c{left:208.933333pt;}
.x84{left:211.200000pt;}
.x1b{left:212.533333pt;}
.x4b{left:214.933333pt;}
.x1d{left:218.133333pt;}
.x7e{left:219.200000pt;}
.x51{left:224.400000pt;}
.x83{left:225.733333pt;}
.xa3{left:228.400000pt;}
.x50{left:230.000000pt;}
.x79{left:230.933333pt;}
.x75{left:232.266667pt;}
.x7d{left:233.733333pt;}
.x73{left:235.466667pt;}
.xe{left:237.466667pt;}
.x4a{left:240.533333pt;}
.x71{left:242.533333pt;}
.x1e{left:244.133333pt;}
.xad{left:245.866667pt;}
.x8f{left:247.866667pt;}
.x88{left:250.933333pt;}
.x20{left:252.266667pt;}
.xa6{left:253.866667pt;}
.xaa{left:255.866667pt;}
.xa1{left:256.800000pt;}
.x1f{left:258.533333pt;}
.x90{left:260.000000pt;}
.xaf{left:261.733333pt;}
.x8d{left:265.733333pt;}
.xa8{left:269.066667pt;}
.x8b{left:274.666667pt;}
.x3{left:282.400000pt;}
.xf{left:283.866667pt;}
.x6{left:286.533333pt;}
.x74{left:289.866667pt;}
.x72{left:296.666667pt;}
.x4{left:300.933333pt;}
.xab{left:302.933333pt;}
.xa0{left:311.466667pt;}
.xb5{left:327.733333pt;}
.x68{left:379.466667pt;}
.x8{left:417.733333pt;}
.xa5{left:418.933333pt;}
.x9{left:420.666667pt;}
.x8a{left:427.066667pt;}
.x23{left:436.666667pt;}
.xb3{left:440.400000pt;}
.x58{left:442.666667pt;}
.x25{left:446.133333pt;}
.x97{left:454.666667pt;}
.x35{left:458.000000pt;}
.x24{left:474.533333pt;}
.xb0{left:478.933333pt;}
.x9b{left:502.266667pt;}
.xb4{left:511.066667pt;}
.x5f{left:513.333333pt;}
.x9a{left:572.266667pt;}
.x57{left:721.466667pt;}
}




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