
    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_6a75acb88c6de6575032804f.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_8f78b81add9d7d3835ab551d.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_6b2e3f045acccc5d4ab2624b.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_21ffe40e1a25a8b963cd5ca1.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_332c202e88119389983bc1b0.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_b337886f6c75e14e8f8bbdab.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_641e8f6dce2c862634acb5ec.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_23ee0d16e5bb7a9c57cac7bb.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_a6795ddef63eab7a4c092b45.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_110f36e62d0b6a9e846a910e.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_be6f71c74e80f57670f07f7e.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_565ccdc8c64f0f14afb3ca80.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_0a37d71162134b044f1cc2c4.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_b23f64b5e8afa581f2e90429.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_fa2348722b0c4291df67889d.woff2')format("woff");}.fff{font-family:fff;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_3fd29800c27032610c893c8f.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_e86b6835cc75d4c02dc9d97f.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_5d5c0b5697f56617998b2172.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_b32ecabc9d7391a57306961b.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2c{transform:matrix(0.057500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.057500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.057500,0.000000,0.000000,0.250000,0,0);}
.m47{transform:matrix(0.065000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.065000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.065000,0.000000,0.000000,0.250000,0,0);}
.m55{transform:matrix(0.075000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.075000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.075000,0.000000,0.000000,0.250000,0,0);}
.m43{transform:matrix(0.077500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.077500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.077500,0.000000,0.000000,0.250000,0,0);}
.m58{transform:matrix(0.107500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107500,0.000000,0.000000,0.250000,0,0);}
.m54{transform:matrix(0.112500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112500,0.000000,0.000000,0.250000,0,0);}
.m45{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);}
.m50{transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);}
.m56{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.m4e{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m40{transform:matrix(0.152500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152500,0.000000,0.000000,0.250000,0,0);}
.m49{transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);}
.m4a{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.m44{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.m38{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.m31{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m5b{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m37{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m4b{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m33{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m30{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m21{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);}
.m3{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m41{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m3f{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m3b{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m35{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m36{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m3a{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m46{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m3e{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m53{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m3d{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m34{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.m52{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m42{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m32{transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m57{transform:matrix(0.410000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410000,0.000000,0.000000,0.250000,0,0);}
.m3c{transform:matrix(0.412500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412500,0.000000,0.000000,0.250000,0,0);}
.m51{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m59{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);}
.m4d{transform:matrix(0.717500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717500,0.000000,0.000000,0.250000,0,0);}
.m4f{transform:matrix(0.775000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.775000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.775000,0.000000,0.000000,0.250000,0,0);}
.m4c{transform:matrix(0.885000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.885000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.885000,0.000000,0.000000,0.250000,0,0);}
.m39{transform:matrix(0.895000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.895000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.895000,0.000000,0.000000,0.250000,0,0);}
.m5a{transform:matrix(0.960000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.960000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.960000,0.000000,0.000000,0.250000,0,0);}
.m48{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:0.000000px;}
._1{margin-left:-93.567901px;}
._0{margin-left:-34.557565px;}
.fc0{color:transparent;}
.fsa{font-size:30.000000px;}
.fs8{font-size:36.000000px;}
.fsc{font-size:42.000000px;}
.fs5{font-size:48.000000px;}
.fs7{font-size:54.000000px;}
.fs4{font-size:60.000000px;}
.fs3{font-size:66.000000px;}
.fs2{font-size:72.000000px;}
.fs9{font-size:78.000000px;}
.fsb{font-size:84.000000px;}
.fs0{font-size:96.000000px;}
.fs1{font-size:120.000000px;}
.fs6{font-size:138.000000px;}
.y0{bottom:0.000000px;}
.y1d9{bottom:43.500000px;}
.y1dc{bottom:49.273500px;}
.y25a{bottom:52.348500px;}
.y258{bottom:54.823500px;}
.y1da{bottom:57.223500px;}
.y259{bottom:62.098500px;}
.y1db{bottom:62.848500px;}
.y257{bottom:68.173500px;}
.y256{bottom:68.548500px;}
.y255{bottom:68.923500px;}
.y254{bottom:69.598500px;}
.y253{bottom:69.973500px;}
.y251{bottom:70.648500px;}
.y250{bottom:71.698500px;}
.y24f{bottom:71.773500px;}
.y24e{bottom:72.148500px;}
.y252{bottom:78.973500px;}
.y1d8{bottom:79.198500px;}
.y136{bottom:82.875000px;}
.y93{bottom:83.923500px;}
.y94{bottom:84.223500px;}
.y95{bottom:84.598500px;}
.y96{bottom:84.898500px;}
.y97{bottom:85.648500px;}
.yfe{bottom:88.125000px;}
.y193{bottom:90.973500px;}
.y24d{bottom:93.000000px;}
.y24c{bottom:93.375000px;}
.y24a{bottom:95.548500px;}
.y45{bottom:96.523500px;}
.y44{bottom:96.823500px;}
.y1d7{bottom:98.698500px;}
.y133{bottom:102.375000px;}
.y134{bottom:103.048500px;}
.y135{bottom:103.423500px;}
.y24b{bottom:104.023500px;}
.y210{bottom:105.000000px;}
.y90{bottom:105.073500px;}
.y91{bottom:105.900000px;}
.y92{bottom:106.198500px;}
.yfd{bottom:108.298500px;}
.y192{bottom:113.323500px;}
.y191{bottom:115.798500px;}
.y43{bottom:117.000000px;}
.y1d6{bottom:120.973500px;}
.y132{bottom:123.223500px;}
.y20f{bottom:123.673500px;}
.y8f{bottom:124.875000px;}
.yfc{bottom:127.423500px;}
.yfb{bottom:127.723500px;}
.yfa{bottom:128.848500px;}
.y243{bottom:130.423500px;}
.y190{bottom:130.948500px;}
.y18f{bottom:133.048500px;}
.y42{bottom:137.098500px;}
.y41{bottom:137.173500px;}
.y40{bottom:137.473500px;}
.y1d5{bottom:141.525000px;}
.y131{bottom:143.400000px;}
.y20e{bottom:143.848500px;}
.y8c{bottom:145.125000px;}
.y242{bottom:145.875000px;}
.y8d{bottom:146.173500px;}
.y8e{bottom:146.548500px;}
.yf9{bottom:149.025000px;}
.y3f{bottom:157.275000px;}
.y18e{bottom:157.500000px;}
.y3e{bottom:157.650000px;}
.y1d4{bottom:161.698500px;}
.y20d{bottom:163.275000px;}
.y130{bottom:163.500000px;}
.y88{bottom:164.848500px;}
.y89{bottom:165.298500px;}
.y8a{bottom:165.973500px;}
.y8b{bottom:166.650000px;}
.yf8{bottom:168.073500px;}
.yf7{bottom:168.823500px;}
.yf6{bottom:169.875000px;}
.y18d{bottom:175.198500px;}
.y18c{bottom:177.000000px;}
.y3b{bottom:177.150000px;}
.y3d{bottom:177.448500px;}
.y3c{bottom:177.525000px;}
.y18b{bottom:177.673500px;}
.y84{bottom:183.298500px;}
.y12e{bottom:183.673500px;}
.y85{bottom:183.973500px;}
.y12f{bottom:184.125000px;}
.y20c{bottom:184.198500px;}
.y86{bottom:184.275000px;}
.y87{bottom:185.025000px;}
.yf5{bottom:189.673500px;}
.y241{bottom:194.848500px;}
.y18a{bottom:195.000000px;}
.y189{bottom:197.173500px;}
.y3a{bottom:197.323500px;}
.y188{bottom:197.548500px;}
.y39{bottom:197.625000px;}
.y38{bottom:198.000000px;}
.y240{bottom:199.573500px;}
.y12b{bottom:203.473500px;}
.y81{bottom:203.775000px;}
.y12c{bottom:204.223500px;}
.y12d{bottom:204.298500px;}
.y82{bottom:204.448500px;}
.y20b{bottom:204.673500px;}
.y83{bottom:204.823500px;}
.y23f{bottom:211.423500px;}
.y23e{bottom:212.173500px;}
.y187{bottom:213.375000px;}
.y186{bottom:214.423500px;}
.y185{bottom:216.223500px;}
.y37{bottom:217.798500px;}
.y12a{bottom:223.348500px;}
.y20a{bottom:224.173500px;}
.y80{bottom:224.250000px;}
.y1d3{bottom:225.073500px;}
.yf4{bottom:227.098500px;}
.y184{bottom:233.923500px;}
.y23d{bottom:234.148500px;}
.y23c{bottom:234.825000px;}
.y183{bottom:234.973500px;}
.y182{bottom:235.650000px;}
.y181{bottom:236.775000px;}
.y36{bottom:237.598500px;}
.y35{bottom:237.900000px;}
.y34{bottom:237.973500px;}
.y33{bottom:238.275000px;}
.y209{bottom:243.973500px;}
.y129{bottom:244.198500px;}
.y1d1{bottom:244.500000px;}
.y7f{bottom:244.798500px;}
.y1d2{bottom:245.923500px;}
.yf3{bottom:246.150000px;}
.yf2{bottom:247.198500px;}
.yf1{bottom:247.573500px;}
.yf0{bottom:248.323500px;}
.y32{bottom:257.775000px;}
.y180{bottom:259.798500px;}
.y7e{bottom:263.098500px;}
.y128{bottom:264.298500px;}
.y208{bottom:264.448500px;}
.y1d0{bottom:266.098500px;}
.yef{bottom:267.073500px;}
.y236{bottom:268.948500px;}
.y17f{bottom:274.948500px;}
.y17e{bottom:277.798500px;}
.y31{bottom:278.250000px;}
.y7d{bottom:281.473500px;}
.y207{bottom:284.250000px;}
.y127{bottom:284.473500px;}
.yee{bottom:286.500000px;}
.y1cc{bottom:287.323500px;}
.yed{bottom:287.923500px;}
.yec{bottom:288.673500px;}
.y235{bottom:288.750000px;}
.y1ce{bottom:289.048500px;}
.y1cd{bottom:289.125000px;}
.y1cf{bottom:289.500000px;}
.y17d{bottom:297.898500px;}
.y30{bottom:298.048500px;}
.y2f{bottom:298.125000px;}
.y2e{bottom:298.423500px;}
.y2d{bottom:298.500000px;}
.y2c{bottom:298.723500px;}
.y2b{bottom:298.798500px;}
.y7a{bottom:300.973500px;}
.y7b{bottom:301.348500px;}
.y7c{bottom:302.023500px;}
.y126{bottom:304.348500px;}
.y206{bottom:304.423500px;}
.yeb{bottom:306.298500px;}
.yea{bottom:307.348500px;}
.y1cb{bottom:308.173500px;}
.y233{bottom:308.848500px;}
.y232{bottom:308.923500px;}
.y234{bottom:309.298500px;}
.y17c{bottom:316.648500px;}
.y17b{bottom:317.773500px;}
.y2a{bottom:318.598500px;}
.y17a{bottom:319.500000px;}
.y79{bottom:321.448500px;}
.y205{bottom:324.598500px;}
.y125{bottom:324.823500px;}
.y231{bottom:329.098500px;}
.y1ca{bottom:329.473500px;}
.ye9{bottom:331.125000px;}
.y179{bottom:335.773500px;}
.y178{bottom:337.198500px;}
.y177{bottom:337.948500px;}
.y176{bottom:338.323500px;}
.y29{bottom:338.398500px;}
.y175{bottom:338.698500px;}
.y28{bottom:338.773500px;}
.y174{bottom:340.048500px;}
.y78{bottom:341.625000px;}
.y124{bottom:343.948500px;}
.y204{bottom:344.398500px;}
.ye8{bottom:347.323500px;}
.ye7{bottom:348.000000px;}
.ye6{bottom:348.375000px;}
.ye5{bottom:348.750000px;}
.ye4{bottom:349.125000px;}
.y230{bottom:349.273500px;}
.ye3{bottom:349.875000px;}
.y1c9{bottom:349.948500px;}
.ye2{bottom:350.548500px;}
.ye1{bottom:351.298500px;}
.y173{bottom:358.423500px;}
.y27{bottom:358.500000px;}
.y25{bottom:358.875000px;}
.y26{bottom:358.948500px;}
.y76{bottom:361.423500px;}
.y77{bottom:362.473500px;}
.y123{bottom:364.500000px;}
.ye0{bottom:367.500000px;}
.ydf{bottom:367.875000px;}
.yde{bottom:368.548500px;}
.y1c6{bottom:369.073500px;}
.ydd{bottom:369.298500px;}
.y22f{bottom:369.375000px;}
.ydc{bottom:369.673500px;}
.y1c7{bottom:370.125000px;}
.ydb{bottom:370.423500px;}
.y1c8{bottom:371.548500px;}
.y172{bottom:376.125000px;}
.y171{bottom:377.173500px;}
.y170{bottom:377.473500px;}
.y24{bottom:378.673500px;}
.y16f{bottom:379.273500px;}
.y23{bottom:379.423500px;}
.y75{bottom:381.598500px;}
.y203{bottom:382.948500px;}
.y120{bottom:384.598500px;}
.y121{bottom:385.273500px;}
.y122{bottom:385.648500px;}
.y22e{bottom:389.548500px;}
.y1c5{bottom:390.298500px;}
.yda{bottom:392.023500px;}
.yd9{bottom:393.073500px;}
.y22{bottom:398.923500px;}
.y16e{bottom:400.948500px;}
.y74{bottom:401.773500px;}
.y202{bottom:402.750000px;}
.y11f{bottom:404.773500px;}
.y22d{bottom:409.723500px;}
.yd8{bottom:410.698500px;}
.y1c2{bottom:411.523500px;}
.yd7{bottom:412.500000px;}
.y1c3{bottom:412.948500px;}
.yd6{bottom:413.173500px;}
.y1c4{bottom:413.323500px;}
.y16d{bottom:418.198500px;}
.y21{bottom:418.648500px;}
.y20{bottom:419.098500px;}
.y16c{bottom:419.250000px;}
.y16b{bottom:421.125000px;}
.y70{bottom:421.875000px;}
.y71{bottom:422.173500px;}
.y72{bottom:422.250000px;}
.y73{bottom:422.323500px;}
.y201{bottom:422.848500px;}
.y16a{bottom:423.223500px;}
.y11e{bottom:425.250000px;}
.y22c{bottom:429.898500px;}
.yd5{bottom:430.875000px;}
.yd4{bottom:432.298500px;}
.y1c1{bottom:432.448500px;}
.yd3{bottom:432.598500px;}
.yd2{bottom:433.048500px;}
.y169{bottom:437.323500px;}
.y168{bottom:437.625000px;}
.y167{bottom:437.698500px;}
.y1f{bottom:438.898500px;}
.y166{bottom:440.848500px;}
.y6d{bottom:441.750000px;}
.y6e{bottom:442.048500px;}
.y6f{bottom:442.500000px;}
.y200{bottom:443.023500px;}
.y11d{bottom:445.125000px;}
.y22b{bottom:450.073500px;}
.yd1{bottom:451.348500px;}
.y1bd{bottom:451.500000px;}
.y1be{bottom:452.548500px;}
.y1bf{bottom:453.598500px;}
.y1c0{bottom:454.348500px;}
.y165{bottom:457.798500px;}
.y164{bottom:458.548500px;}
.y1e{bottom:459.000000px;}
.y163{bottom:459.223500px;}
.y162{bottom:459.973500px;}
.y6b{bottom:461.848500px;}
.y6a{bottom:461.923500px;}
.y161{bottom:462.073500px;}
.y6c{bottom:462.223500px;}
.y1fd{bottom:462.823500px;}
.y1fe{bottom:463.198500px;}
.y1ff{bottom:463.875000px;}
.y11c{bottom:465.223500px;}
.y22a{bottom:469.798500px;}
.yd0{bottom:470.098500px;}
.ycf{bottom:471.148500px;}
.yce{bottom:471.898500px;}
.y1ba{bottom:472.048500px;}
.ycd{bottom:473.323500px;}
.y1bb{bottom:473.473500px;}
.ycc{bottom:473.698500px;}
.y1bc{bottom:474.148500px;}
.y160{bottom:478.648500px;}
.y1c{bottom:478.798500px;}
.y1d{bottom:479.173500px;}
.y15f{bottom:479.698500px;}
.y1b{bottom:479.848500px;}
.y249{bottom:481.423500px;}
.y68{bottom:481.723500px;}
.y248{bottom:481.798500px;}
.y15e{bottom:481.875000px;}
.y67{bottom:482.023500px;}
.y69{bottom:482.398500px;}
.y1fc{bottom:483.000000px;}
.y11b{bottom:485.398500px;}
.y246{bottom:486.073500px;}
.y245{bottom:486.150000px;}
.y247{bottom:486.525000px;}
.ycb{bottom:489.148500px;}
.yca{bottom:489.523500px;}
.y229{bottom:489.973500px;}
.yc9{bottom:491.698500px;}
.y1b9{bottom:492.898500px;}
.y244{bottom:496.200000px;}
.y1a{bottom:498.973500px;}
.y15d{bottom:501.000000px;}
.y66{bottom:501.823500px;}
.y65{bottom:502.198500px;}
.y1f8{bottom:503.473500px;}
.y1f9{bottom:503.848500px;}
.y1fa{bottom:504.223500px;}
.y1fb{bottom:504.598500px;}
.y11a{bottom:505.500000px;}
.yc8{bottom:509.698500px;}
.y228{bottom:509.848500px;}
.yc7{bottom:510.750000px;}
.y1b7{bottom:510.898500px;}
.yc6{bottom:511.798500px;}
.y1b8{bottom:512.698500px;}
.yc5{bottom:512.923500px;}
.yc4{bottom:513.673500px;}
.y19{bottom:519.448500px;}
.y15c{bottom:520.798500px;}
.y64{bottom:522.375000px;}
.y1f7{bottom:523.348500px;}
.y119{bottom:525.673500px;}
.y227{bottom:529.948500px;}
.yc3{bottom:530.548500px;}
.y1b4{bottom:531.375000px;}
.yc2{bottom:532.348500px;}
.y1b5{bottom:532.500000px;}
.yc1{bottom:533.098500px;}
.yc0{bottom:533.473500px;}
.y1b6{bottom:533.548500px;}
.ybf{bottom:533.848500px;}
.y18{bottom:539.625000px;}
.y63{bottom:540.673500px;}
.y1f6{bottom:541.273500px;}
.y1f5{bottom:541.723500px;}
.y118{bottom:545.548500px;}
.y15b{bottom:545.625000px;}
.y238{bottom:548.400000px;}
.y226{bottom:550.125000px;}
.ybe{bottom:551.473500px;}
.y1b3{bottom:553.423500px;}
.y17{bottom:559.048500px;}
.y16{bottom:559.125000px;}
.y15{bottom:560.098500px;}
.y62{bottom:560.548500px;}
.y1f4{bottom:561.825000px;}
.y15a{bottom:562.573500px;}
.y117{bottom:565.723500px;}
.y225{bottom:570.298500px;}
.ybd{bottom:573.750000px;}
.y1b2{bottom:574.648500px;}
.y237{bottom:575.400000px;}
.y14{bottom:579.598500px;}
.y159{bottom:579.825000px;}
.y158{bottom:580.200000px;}
.y13{bottom:580.648500px;}
.y61{bottom:580.723500px;}
.y1f3{bottom:582.000000px;}
.y157{bottom:583.423500px;}
.y116{bottom:585.825000px;}
.y23b{bottom:588.000000px;}
.y224{bottom:590.473500px;}
.ybc{bottom:593.548500px;}
.y1af{bottom:594.375000px;}
.y1b0{bottom:595.500000px;}
.y1b1{bottom:595.875000px;}
.y239{bottom:595.950000px;}
.y11{bottom:599.773500px;}
.y10{bottom:600.075000px;}
.y12{bottom:600.148500px;}
.y5f{bottom:600.825000px;}
.y60{bottom:600.898500px;}
.y5e{bottom:601.500000px;}
.y1f2{bottom:601.798500px;}
.y156{bottom:602.848500px;}
.y113{bottom:605.325000px;}
.y114{bottom:605.625000px;}
.y115{bottom:606.298500px;}
.y23a{bottom:606.375000px;}
.y223{bottom:610.648500px;}
.ybb{bottom:611.548500px;}
.yba{bottom:613.348500px;}
.yb9{bottom:615.523500px;}
.y1ae{bottom:615.673500px;}
.yb8{bottom:615.898500px;}
.yf{bottom:620.250000px;}
.y155{bottom:620.473500px;}
.y5d{bottom:621.000000px;}
.y154{bottom:621.223500px;}
.y1f0{bottom:621.598500px;}
.y153{bottom:622.348500px;}
.y1f1{bottom:622.648500px;}
.y152{bottom:623.398500px;}
.y151{bottom:624.825000px;}
.y112{bottom:626.173500px;}
.y222{bottom:630.750000px;}
.yb7{bottom:631.723500px;}
.yb6{bottom:632.775000px;}
.yb5{bottom:634.573500px;}
.y1ab{bottom:635.473500px;}
.y1ac{bottom:635.848500px;}
.y1ad{bottom:636.525000px;}
.ye{bottom:640.798500px;}
.y5c{bottom:641.173500px;}
.y1ef{bottom:641.775000px;}
.y150{bottom:645.375000px;}
.y111{bottom:646.275000px;}
.y221{bottom:651.000000px;}
.yb4{bottom:651.150000px;}
.yb3{bottom:651.525000px;}
.yb2{bottom:652.948500px;}
.yb1{bottom:655.198500px;}
.y1aa{bottom:657.375000px;}
.yd{bottom:660.900000px;}
.y5b{bottom:661.275000px;}
.y1ee{bottom:661.948500px;}
.y14f{bottom:664.798500px;}
.y110{bottom:666.448500px;}
.y220{bottom:671.098500px;}
.y21f{bottom:672.150000px;}
.y1a5{bottom:677.250000px;}
.yb0{bottom:677.473500px;}
.y1a6{bottom:677.548500px;}
.y1a7{bottom:677.625000px;}
.yaf{bottom:678.150000px;}
.y1a8{bottom:678.673500px;}
.y1a9{bottom:679.348500px;}
.yc{bottom:681.073500px;}
.y1ec{bottom:681.375000px;}
.y58{bottom:681.448500px;}
.y59{bottom:681.525000px;}
.y1eb{bottom:681.750000px;}
.y5a{bottom:681.823500px;}
.y1ed{bottom:682.048500px;}
.y14e{bottom:684.598500px;}
.y10f{bottom:686.625000px;}
.y21e{bottom:691.573500px;}
.yae{bottom:695.098500px;}
.y1a4{bottom:698.098500px;}
.ya{bottom:700.573500px;}
.yb{bottom:700.948500px;}
.y9{bottom:701.250000px;}
.y57{bottom:701.625000px;}
.y1ea{bottom:701.848500px;}
.y8{bottom:702.000000px;}
.y10e{bottom:706.125000px;}
.y14d{bottom:708.000000px;}
.y21d{bottom:711.750000px;}
.yad{bottom:716.323500px;}
.yac{bottom:718.500000px;}
.y1a2{bottom:719.323500px;}
.y1a3{bottom:720.000000px;}
.y7{bottom:720.750000px;}
.y6{bottom:721.048500px;}
.y5{bottom:721.798500px;}
.y1e9{bottom:722.025000px;}
.y10d{bottom:726.598500px;}
.y14c{bottom:726.673500px;}
.y21c{bottom:731.548500px;}
.yab{bottom:735.000000px;}
.yaa{bottom:735.375000px;}
.ya9{bottom:736.875000px;}
.ya8{bottom:738.673500px;}
.ya7{bottom:739.723500px;}
.y56{bottom:741.598500px;}
.y1e8{bottom:741.823500px;}
.y1a1{bottom:742.723500px;}
.y14b{bottom:744.298500px;}
.y14a{bottom:745.423500px;}
.y10c{bottom:746.775000px;}
.y149{bottom:747.598500px;}
.y21b{bottom:752.775000px;}
.ya6{bottom:757.048500px;}
.y1e7{bottom:762.000000px;}
.y55{bottom:762.073500px;}
.y1a0{bottom:763.573500px;}
.y148{bottom:763.798500px;}
.y147{bottom:764.473500px;}
.y109{bottom:766.573500px;}
.y10b{bottom:766.875000px;}
.y10a{bottom:766.948500px;}
.y146{bottom:767.098500px;}
.y21a{bottom:771.900000px;}
.ya5{bottom:777.525000px;}
.y54{bottom:780.073500px;}
.y53{bottom:780.448500px;}
.y1e6{bottom:781.800000px;}
.y19e{bottom:783.448500px;}
.y19f{bottom:784.500000px;}
.y145{bottom:784.650000px;}
.y144{bottom:786.073500px;}
.y143{bottom:786.900000px;}
.y108{bottom:787.050000px;}
.y142{bottom:787.875000px;}
.y141{bottom:788.250000px;}
.y140{bottom:789.000000px;}
.y13f{bottom:789.375000px;}
.y219{bottom:792.073500px;}
.ya4{bottom:794.473500px;}
.ya3{bottom:795.525000px;}
.ya2{bottom:798.073500px;}
.y3{bottom:798.525000px;}
.y4{bottom:798.823500px;}
.y52{bottom:800.323500px;}
.y1e5{bottom:801.973500px;}
.y19d{bottom:804.300000px;}
.y13e{bottom:806.698500px;}
.y106{bottom:806.848500px;}
.y107{bottom:806.925000px;}
.y218{bottom:811.875000px;}
.y217{bottom:813.675000px;}
.y51{bottom:820.500000px;}
.ya1{bottom:821.098500px;}
.y1e4{bottom:822.073500px;}
.y19a{bottom:824.098500px;}
.y19b{bottom:824.400000px;}
.y19c{bottom:824.775000px;}
.y13d{bottom:826.800000px;}
.y105{bottom:827.025000px;}
.y216{bottom:832.050000px;}
.y2{bottom:832.650000px;}
.y1{bottom:833.025000px;}
.ya0{bottom:837.300000px;}
.y9f{bottom:838.723500px;}
.y1e3{bottom:840.448500px;}
.y50{bottom:840.598500px;}
.y4f{bottom:840.900000px;}
.y4e{bottom:840.973500px;}
.y199{bottom:842.775000px;}
.y13c{bottom:843.750000px;}
.y104{bottom:847.198500px;}
.y13b{bottom:847.275000px;}
.y215{bottom:852.150000px;}
.y9e{bottom:857.098500px;}
.y9d{bottom:859.275000px;}
.y1e2{bottom:860.250000px;}
.y1e1{bottom:860.625000px;}
.y4d{bottom:860.775000px;}
.y9c{bottom:861.375000px;}
.y198{bottom:865.875000px;}
.y13a{bottom:866.775000px;}
.y214{bottom:872.323500px;}
.y103{bottom:877.125000px;}
.y9b{bottom:879.750000px;}
.y1e0{bottom:880.425000px;}
.y4c{bottom:880.875000px;}
.y196{bottom:885.973500px;}
.y197{bottom:886.348500px;}
.y139{bottom:886.875000px;}
.y213{bottom:892.198500px;}
.y100{bottom:897.223500px;}
.y102{bottom:897.973500px;}
.y101{bottom:898.348500px;}
.y9a{bottom:899.175000px;}
.y1df{bottom:900.598500px;}
.y4b{bottom:900.675000px;}
.y4a{bottom:900.750000px;}
.y49{bottom:901.125000px;}
.y48{bottom:901.500000px;}
.y47{bottom:901.800000px;}
.y138{bottom:906.675000px;}
.y212{bottom:912.000000px;}
.y1de{bottom:920.400000px;}
.y195{bottom:924.900000px;}
.yff{bottom:935.025000px;}
.y99{bottom:936.300000px;}
.y98{bottom:936.675000px;}
.y46{bottom:938.473500px;}
.y137{bottom:943.800000px;}
.y211{bottom:949.348500px;}
.y1dd{bottom:957.900000px;}
.y194{bottom:1005.525000px;}
.h18{height:29.428711px;}
.h1a{height:29.443359px;}
.h1d{height:32.010000px;}
.hf{height:35.332031px;}
.h19{height:36.281250px;}
.h1c{height:41.200195px;}
.h9{height:47.109375px;}
.h13{height:50.062500px;}
.hc{height:52.998047px;}
.h1e{height:56.320312px;}
.h6{height:58.886719px;}
.h4{height:64.775391px;}
.h8{height:66.515625px;}
.hd{height:70.628906px;}
.h3{height:70.664062px;}
.h11{height:76.552734px;}
.h1b{height:82.441406px;}
.h1{height:94.218750px;}
.h2{height:117.773438px;}
.ha{height:135.439453px;}
.h14{height:675.000000px;}
.h12{height:684.000000px;}
.h17{height:687.000000px;}
.h16{height:1009.500000px;}
.h15{height:1014.000000px;}
.h7{height:1015.500000px;}
.h5{height:1017.000000px;}
.h10{height:1018.500000px;}
.hb{height:1020.000000px;}
.h0{height:1026.000000px;}
.he{height:1032.000000px;}
.w5{width:661.500000px;}
.w1{width:675.000000px;}
.w8{width:676.500000px;}
.w4{width:679.500000px;}
.w3{width:682.500000px;}
.w2{width:684.000000px;}
.w0{width:685.500000px;}
.w7{width:984.000000px;}
.w9{width:1018.500000px;}
.w6{width:1023.000000px;}
.x0{left:0.000000px;}
.xc2{left:56.550000px;}
.xb8{left:57.600000px;}
.xb0{left:58.650000px;}
.x9c{left:68.025000px;}
.x8c{left:70.200000px;}
.x7d{left:71.250000px;}
.x79{left:72.375000px;}
.x73{left:74.175000px;}
.xa5{left:75.975000px;}
.xa8{left:77.025000px;}
.x48{left:78.150000px;}
.x3e{left:79.200000px;}
.x61{left:80.250000px;}
.xb1{left:82.050000px;}
.x4b{left:83.550000px;}
.xbf{left:86.400000px;}
.x43{left:87.450000px;}
.xaf{left:89.250000px;}
.xe{left:90.750000px;}
.x8{left:91.800000px;}
.x2a{left:92.850000px;}
.xf8{left:93.975000px;}
.x8f{left:95.400000px;}
.x82{left:98.625000px;}
.x93{left:102.975000px;}
.x5e{left:104.025000px;}
.x1{left:105.823500px;}
.xe2{left:106.948500px;}
.xe4{left:108.000000px;}
.xa4{left:109.050000px;}
.x5d{left:110.175000px;}
.xaa{left:111.225000px;}
.x44{left:113.025000px;}
.x6a{left:114.150000px;}
.x49{left:115.950000px;}
.xca{left:117.375000px;}
.x38{left:118.800000px;}
.xd8{left:119.850000px;}
.x1b{left:120.975000px;}
.x5{left:124.950000px;}
.x29{left:126.000000px;}
.xdb{left:127.425000px;}
.x3f{left:132.825000px;}
.x90{left:135.375000px;}
.xcf{left:137.550000px;}
.x45{left:138.600000px;}
.x85{left:140.025000px;}
.xcd{left:141.150000px;}
.x2b{left:142.575000px;}
.x92{left:144.000000px;}
.x21{left:145.800000px;}
.x12{left:148.350000px;}
.xdc{left:150.450000px;}
.x6d{left:151.575000px;}
.x1a{left:155.550000px;}
.x9{left:156.975000px;}
.x22{left:158.400000px;}
.x83{left:163.425000px;}
.xef{left:165.600000px;}
.x9f{left:168.150000px;}
.x88{left:169.575000px;}
.x1c{left:174.225000px;}
.x15{left:175.650000px;}
.x6e{left:178.200000px;}
.x52{left:180.750000px;}
.x23{left:184.650000px;}
.xf2{left:189.750000px;}
.xf3{left:191.550000px;}
.x30{left:192.975000px;}
.xa7{left:194.773500px;}
.xb2{left:196.575000px;}
.x64{left:197.625000px;}
.x46{left:199.425000px;}
.x3a{left:203.023500px;}
.x39{left:204.148500px;}
.x40{left:207.375000px;}
.x56{left:208.425000px;}
.xf4{left:210.975000px;}
.xce{left:212.398500px;}
.xf5{left:213.450000px;}
.xb7{left:214.575000px;}
.xd2{left:215.625000px;}
.xde{left:217.050000px;}
.x86{left:218.550000px;}
.xd0{left:220.648500px;}
.xe7{left:221.773500px;}
.xc9{left:222.825000px;}
.x96{left:223.950000px;}
.xf1{left:225.375000px;}
.xd1{left:227.550000px;}
.x9e{left:229.648500px;}
.x24{left:230.775000px;}
.x2c{left:232.950000px;}
.xa{left:235.800000px;}
.x89{left:237.975000px;}
.x6f{left:241.950000px;}
.xc3{left:243.000000px;}
.x41{left:245.550000px;}
.x59{left:249.825000px;}
.xb3{left:251.625000px;}
.x91{left:256.350000px;}
.x55{left:257.775000px;}
.xa6{left:260.250000px;}
.xf0{left:262.425000px;}
.x1d{left:266.025000px;}
.x70{left:268.950000px;}
.x3b{left:270.375000px;}
.x37{left:271.800000px;}
.x6{left:274.650000px;}
.x31{left:278.250000px;}
.xae{left:284.400000px;}
.x7a{left:286.200000px;}
.x3{left:287.625000px;}
.x97{left:289.050000px;}
.x47{left:291.225000px;}
.xc4{left:292.650000px;}
.xac{left:295.575000px;}
.x87{left:296.625000px;}
.x32{left:298.050000px;}
.xa2{left:299.175000px;}
.xe1{left:300.975000px;}
.x3d{left:304.200000px;}
.x13{left:305.250000px;}
.x57{left:307.050000px;}
.x25{left:310.650000px;}
.x2d{left:313.200000px;}
.xea{left:315.000000px;}
.x74{left:316.050000px;}
.x1f{left:317.175000px;}
.xff{left:318.225000px;}
.xd5{left:321.450000px;}
.xe5{left:322.575000px;}
.x5f{left:324.000000px;}
.x75{left:325.800000px;}
.xdf{left:328.350000px;}
.x4{left:329.400000px;}
.x1e{left:332.250000px;}
.x7{left:333.750000px;}
.x54{left:338.400000px;}
.x71{left:339.450000px;}
.xad{left:347.400000px;}
.x7c{left:348.450000px;}
.x53{left:349.950000px;}
.x5a{left:352.050000px;}
.xc5{left:355.650000px;}
.x72{left:358.200000px;}
.xe3{left:360.750000px;}
.x26{left:366.825000px;}
.x58{left:368.625000px;}
.x14{left:371.550000px;}
.xf9{left:374.400000px;}
.xcb{left:376.200000px;}
.xcc{left:377.625000px;}
.xc6{left:379.800000px;}
.x20{left:381.225000px;}
.x98{left:383.400000px;}
.x8a{left:385.575000px;}
.x50{left:387.000000px;}
.xc1{left:388.423500px;}
.xc7{left:389.850000px;}
.x27{left:393.150000px;}
.x62{left:395.250000px;}
.xb9{left:397.798500px;}
.xd7{left:399.975000px;}
.x99{left:401.025000px;}
.xd6{left:405.750000px;}
.x9a{left:406.798500px;}
.x18{left:409.650000px;}
.x80{left:410.775000px;}
.x76{left:413.250000px;}
.xf{left:419.775000px;}
.x4e{left:422.250000px;}
.x60{left:423.375000px;}
.x4c{left:424.798500px;}
.x5b{left:428.400000px;}
.x35{left:429.450000px;}
.x2{left:431.625000px;}
.x65{left:432.750000px;}
.x10{left:435.600000px;}
.xba{left:438.150000px;}
.x51{left:439.950000px;}
.xfa{left:441.375000px;}
.x28{left:446.400000px;}
.x3c{left:449.250000px;}
.x9b{left:450.750000px;}
.xd3{left:452.548500px;}
.x81{left:455.400000px;}
.x68{left:456.450000px;}
.xb6{left:459.750000px;}
.xc{left:460.800000px;}
.x94{left:462.600000px;}
.xab{left:464.775000px;}
.xbb{left:465.825000px;}
.xd9{left:469.800000px;}
.x8b{left:471.600000px;}
.x77{left:474.150000px;}
.x7b{left:475.950000px;}
.xb4{left:477.000000px;}
.x33{left:479.550000px;}
.x5c{left:481.650000px;}
.xc0{left:482.775000px;}
.x63{left:486.375000px;}
.x6b{left:488.850000px;}
.x19{left:492.450000px;}
.x36{left:496.050000px;}
.xd{left:497.175000px;}
.xda{left:498.600000px;}
.x66{left:500.025000px;}
.x9d{left:505.050000px;}
.x78{left:507.225000px;}
.xb5{left:508.650000px;}
.x16{left:510.150000px;}
.x8d{left:514.425000px;}
.x4d{left:515.850000px;}
.xe8{left:516.975000px;}
.x84{left:518.775000px;}
.xa0{left:520.200000px;}
.xa3{left:521.250000px;}
.x4a{left:522.375000px;}
.x69{left:524.850000px;}
.x42{left:526.350000px;}
.x2e{left:532.800000px;}
.xe9{left:536.025000px;}
.x4f{left:537.825000px;}
.xbc{left:539.250000px;}
.xbd{left:543.225000px;}
.xa1{left:548.250000px;}
.xd4{left:549.375000px;}
.xbe{left:551.850000px;}
.x7e{left:555.825000px;}
.xc8{left:557.250000px;}
.xa9{left:558.750000px;}
.xb{left:559.800000px;}
.x6c{left:561.975000px;}
.xe6{left:572.400000px;}
.xdd{left:576.000000px;}
.x95{left:577.425000px;}
.x17{left:578.850000px;}
.x34{left:579.975000px;}
.x8e{left:585.375000px;}
.x7f{left:587.175000px;}
.x11{left:592.950000px;}
.x67{left:596.550000px;}
.xed{left:598.350000px;}
.x2f{left:600.150000px;}
.xeb{left:604.425000px;}
.xee{left:605.550000px;}
.xfb{left:626.775000px;}
.xf6{left:653.025000px;}
.x100{left:656.625000px;}
.xe0{left:659.175000px;}
.xfc{left:684.750000px;}
.xec{left:688.650000px;}
.xf7{left:730.425000px;}
.x101{left:735.825000px;}
.xfd{left:772.200000px;}
.xfe{left:825.825000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws0{word-spacing:0.000000pt;}
._1{margin-left:-83.171468pt;}
._0{margin-left:-30.717836pt;}
.fsa{font-size:26.666667pt;}
.fs8{font-size:32.000000pt;}
.fsc{font-size:37.333333pt;}
.fs5{font-size:42.666667pt;}
.fs7{font-size:48.000000pt;}
.fs4{font-size:53.333333pt;}
.fs3{font-size:58.666667pt;}
.fs2{font-size:64.000000pt;}
.fs9{font-size:69.333333pt;}
.fsb{font-size:74.666667pt;}
.fs0{font-size:85.333333pt;}
.fs1{font-size:106.666667pt;}
.fs6{font-size:122.666667pt;}
.y0{bottom:0.000000pt;}
.y1d9{bottom:38.666667pt;}
.y1dc{bottom:43.798667pt;}
.y25a{bottom:46.532000pt;}
.y258{bottom:48.732000pt;}
.y1da{bottom:50.865333pt;}
.y259{bottom:55.198667pt;}
.y1db{bottom:55.865333pt;}
.y257{bottom:60.598667pt;}
.y256{bottom:60.932000pt;}
.y255{bottom:61.265333pt;}
.y254{bottom:61.865333pt;}
.y253{bottom:62.198667pt;}
.y251{bottom:62.798667pt;}
.y250{bottom:63.732000pt;}
.y24f{bottom:63.798667pt;}
.y24e{bottom:64.132000pt;}
.y252{bottom:70.198667pt;}
.y1d8{bottom:70.398667pt;}
.y136{bottom:73.666667pt;}
.y93{bottom:74.598667pt;}
.y94{bottom:74.865333pt;}
.y95{bottom:75.198667pt;}
.y96{bottom:75.465333pt;}
.y97{bottom:76.132000pt;}
.yfe{bottom:78.333333pt;}
.y193{bottom:80.865333pt;}
.y24d{bottom:82.666667pt;}
.y24c{bottom:83.000000pt;}
.y24a{bottom:84.932000pt;}
.y45{bottom:85.798667pt;}
.y44{bottom:86.065333pt;}
.y1d7{bottom:87.732000pt;}
.y133{bottom:91.000000pt;}
.y134{bottom:91.598667pt;}
.y135{bottom:91.932000pt;}
.y24b{bottom:92.465333pt;}
.y210{bottom:93.333333pt;}
.y90{bottom:93.398667pt;}
.y91{bottom:94.133333pt;}
.y92{bottom:94.398667pt;}
.yfd{bottom:96.265333pt;}
.y192{bottom:100.732000pt;}
.y191{bottom:102.932000pt;}
.y43{bottom:104.000000pt;}
.y1d6{bottom:107.532000pt;}
.y132{bottom:109.532000pt;}
.y20f{bottom:109.932000pt;}
.y8f{bottom:111.000000pt;}
.yfc{bottom:113.265333pt;}
.yfb{bottom:113.532000pt;}
.yfa{bottom:114.532000pt;}
.y243{bottom:115.932000pt;}
.y190{bottom:116.398667pt;}
.y18f{bottom:118.265333pt;}
.y42{bottom:121.865333pt;}
.y41{bottom:121.932000pt;}
.y40{bottom:122.198667pt;}
.y1d5{bottom:125.800000pt;}
.y131{bottom:127.466667pt;}
.y20e{bottom:127.865333pt;}
.y8c{bottom:129.000000pt;}
.y242{bottom:129.666667pt;}
.y8d{bottom:129.932000pt;}
.y8e{bottom:130.265333pt;}
.yf9{bottom:132.466667pt;}
.y3f{bottom:139.800000pt;}
.y18e{bottom:140.000000pt;}
.y3e{bottom:140.133333pt;}
.y1d4{bottom:143.732000pt;}
.y20d{bottom:145.133333pt;}
.y130{bottom:145.333333pt;}
.y88{bottom:146.532000pt;}
.y89{bottom:146.932000pt;}
.y8a{bottom:147.532000pt;}
.y8b{bottom:148.133333pt;}
.yf8{bottom:149.398667pt;}
.yf7{bottom:150.065333pt;}
.yf6{bottom:151.000000pt;}
.y18d{bottom:155.732000pt;}
.y18c{bottom:157.333333pt;}
.y3b{bottom:157.466667pt;}
.y3d{bottom:157.732000pt;}
.y3c{bottom:157.800000pt;}
.y18b{bottom:157.932000pt;}
.y84{bottom:162.932000pt;}
.y12e{bottom:163.265333pt;}
.y85{bottom:163.532000pt;}
.y12f{bottom:163.666667pt;}
.y20c{bottom:163.732000pt;}
.y86{bottom:163.800000pt;}
.y87{bottom:164.466667pt;}
.yf5{bottom:168.598667pt;}
.y241{bottom:173.198667pt;}
.y18a{bottom:173.333333pt;}
.y189{bottom:175.265333pt;}
.y3a{bottom:175.398667pt;}
.y188{bottom:175.598667pt;}
.y39{bottom:175.666667pt;}
.y38{bottom:176.000000pt;}
.y240{bottom:177.398667pt;}
.y12b{bottom:180.865333pt;}
.y81{bottom:181.133333pt;}
.y12c{bottom:181.532000pt;}
.y12d{bottom:181.598667pt;}
.y82{bottom:181.732000pt;}
.y20b{bottom:181.932000pt;}
.y83{bottom:182.065333pt;}
.y23f{bottom:187.932000pt;}
.y23e{bottom:188.598667pt;}
.y187{bottom:189.666667pt;}
.y186{bottom:190.598667pt;}
.y185{bottom:192.198667pt;}
.y37{bottom:193.598667pt;}
.y12a{bottom:198.532000pt;}
.y20a{bottom:199.265333pt;}
.y80{bottom:199.333333pt;}
.y1d3{bottom:200.065333pt;}
.yf4{bottom:201.865333pt;}
.y184{bottom:207.932000pt;}
.y23d{bottom:208.132000pt;}
.y23c{bottom:208.733333pt;}
.y183{bottom:208.865333pt;}
.y182{bottom:209.466667pt;}
.y181{bottom:210.466667pt;}
.y36{bottom:211.198667pt;}
.y35{bottom:211.466667pt;}
.y34{bottom:211.532000pt;}
.y33{bottom:211.800000pt;}
.y209{bottom:216.865333pt;}
.y129{bottom:217.065333pt;}
.y1d1{bottom:217.333333pt;}
.y7f{bottom:217.598667pt;}
.y1d2{bottom:218.598667pt;}
.yf3{bottom:218.800000pt;}
.yf2{bottom:219.732000pt;}
.yf1{bottom:220.065333pt;}
.yf0{bottom:220.732000pt;}
.y32{bottom:229.133333pt;}
.y180{bottom:230.932000pt;}
.y7e{bottom:233.865333pt;}
.y128{bottom:234.932000pt;}
.y208{bottom:235.065333pt;}
.y1d0{bottom:236.532000pt;}
.yef{bottom:237.398667pt;}
.y236{bottom:239.065333pt;}
.y17f{bottom:244.398667pt;}
.y17e{bottom:246.932000pt;}
.y31{bottom:247.333333pt;}
.y7d{bottom:250.198667pt;}
.y207{bottom:252.666667pt;}
.y127{bottom:252.865333pt;}
.yee{bottom:254.666667pt;}
.y1cc{bottom:255.398667pt;}
.yed{bottom:255.932000pt;}
.yec{bottom:256.598667pt;}
.y235{bottom:256.666667pt;}
.y1ce{bottom:256.932000pt;}
.y1cd{bottom:257.000000pt;}
.y1cf{bottom:257.333333pt;}
.y17d{bottom:264.798667pt;}
.y30{bottom:264.932000pt;}
.y2f{bottom:265.000000pt;}
.y2e{bottom:265.265333pt;}
.y2d{bottom:265.333333pt;}
.y2c{bottom:265.532000pt;}
.y2b{bottom:265.598667pt;}
.y7a{bottom:267.532000pt;}
.y7b{bottom:267.865333pt;}
.y7c{bottom:268.465333pt;}
.y126{bottom:270.532000pt;}
.y206{bottom:270.598667pt;}
.yeb{bottom:272.265333pt;}
.yea{bottom:273.198667pt;}
.y1cb{bottom:273.932000pt;}
.y233{bottom:274.532000pt;}
.y232{bottom:274.598667pt;}
.y234{bottom:274.932000pt;}
.y17c{bottom:281.465333pt;}
.y17b{bottom:282.465333pt;}
.y2a{bottom:283.198667pt;}
.y17a{bottom:284.000000pt;}
.y79{bottom:285.732000pt;}
.y205{bottom:288.532000pt;}
.y125{bottom:288.732000pt;}
.y231{bottom:292.532000pt;}
.y1ca{bottom:292.865333pt;}
.ye9{bottom:294.333333pt;}
.y179{bottom:298.465333pt;}
.y178{bottom:299.732000pt;}
.y177{bottom:300.398667pt;}
.y176{bottom:300.732000pt;}
.y29{bottom:300.798667pt;}
.y175{bottom:301.065333pt;}
.y28{bottom:301.132000pt;}
.y174{bottom:302.265333pt;}
.y78{bottom:303.666667pt;}
.y124{bottom:305.732000pt;}
.y204{bottom:306.132000pt;}
.ye8{bottom:308.732000pt;}
.ye7{bottom:309.333333pt;}
.ye6{bottom:309.666667pt;}
.ye5{bottom:310.000000pt;}
.ye4{bottom:310.333333pt;}
.y230{bottom:310.465333pt;}
.ye3{bottom:311.000000pt;}
.y1c9{bottom:311.065333pt;}
.ye2{bottom:311.598667pt;}
.ye1{bottom:312.265333pt;}
.y173{bottom:318.598667pt;}
.y27{bottom:318.666667pt;}
.y25{bottom:319.000000pt;}
.y26{bottom:319.065333pt;}
.y76{bottom:321.265333pt;}
.y77{bottom:322.198667pt;}
.y123{bottom:324.000000pt;}
.ye0{bottom:326.666667pt;}
.ydf{bottom:327.000000pt;}
.yde{bottom:327.598667pt;}
.y1c6{bottom:328.065333pt;}
.ydd{bottom:328.265333pt;}
.y22f{bottom:328.333333pt;}
.ydc{bottom:328.598667pt;}
.y1c7{bottom:329.000000pt;}
.ydb{bottom:329.265333pt;}
.y1c8{bottom:330.265333pt;}
.y172{bottom:334.333333pt;}
.y171{bottom:335.265333pt;}
.y170{bottom:335.532000pt;}
.y24{bottom:336.598667pt;}
.y16f{bottom:337.132000pt;}
.y23{bottom:337.265333pt;}
.y75{bottom:339.198667pt;}
.y203{bottom:340.398667pt;}
.y120{bottom:341.865333pt;}
.y121{bottom:342.465333pt;}
.y122{bottom:342.798667pt;}
.y22e{bottom:346.265333pt;}
.y1c5{bottom:346.932000pt;}
.yda{bottom:348.465333pt;}
.yd9{bottom:349.398667pt;}
.y22{bottom:354.598667pt;}
.y16e{bottom:356.398667pt;}
.y74{bottom:357.132000pt;}
.y202{bottom:358.000000pt;}
.y11f{bottom:359.798667pt;}
.y22d{bottom:364.198667pt;}
.yd8{bottom:365.065333pt;}
.y1c2{bottom:365.798667pt;}
.yd7{bottom:366.666667pt;}
.y1c3{bottom:367.065333pt;}
.yd6{bottom:367.265333pt;}
.y1c4{bottom:367.398667pt;}
.y16d{bottom:371.732000pt;}
.y21{bottom:372.132000pt;}
.y20{bottom:372.532000pt;}
.y16c{bottom:372.666667pt;}
.y16b{bottom:374.333333pt;}
.y70{bottom:375.000000pt;}
.y71{bottom:375.265333pt;}
.y72{bottom:375.333333pt;}
.y73{bottom:375.398667pt;}
.y201{bottom:375.865333pt;}
.y16a{bottom:376.198667pt;}
.y11e{bottom:378.000000pt;}
.y22c{bottom:382.132000pt;}
.yd5{bottom:383.000000pt;}
.yd4{bottom:384.265333pt;}
.y1c1{bottom:384.398667pt;}
.yd3{bottom:384.532000pt;}
.yd2{bottom:384.932000pt;}
.y169{bottom:388.732000pt;}
.y168{bottom:389.000000pt;}
.y167{bottom:389.065333pt;}
.y1f{bottom:390.132000pt;}
.y166{bottom:391.865333pt;}
.y6d{bottom:392.666667pt;}
.y6e{bottom:392.932000pt;}
.y6f{bottom:393.333333pt;}
.y200{bottom:393.798667pt;}
.y11d{bottom:395.666667pt;}
.y22b{bottom:400.065333pt;}
.yd1{bottom:401.198667pt;}
.y1bd{bottom:401.333333pt;}
.y1be{bottom:402.265333pt;}
.y1bf{bottom:403.198667pt;}
.y1c0{bottom:403.865333pt;}
.y165{bottom:406.932000pt;}
.y164{bottom:407.598667pt;}
.y1e{bottom:408.000000pt;}
.y163{bottom:408.198667pt;}
.y162{bottom:408.865333pt;}
.y6b{bottom:410.532000pt;}
.y6a{bottom:410.598667pt;}
.y161{bottom:410.732000pt;}
.y6c{bottom:410.865333pt;}
.y1fd{bottom:411.398667pt;}
.y1fe{bottom:411.732000pt;}
.y1ff{bottom:412.333333pt;}
.y11c{bottom:413.532000pt;}
.y22a{bottom:417.598667pt;}
.yd0{bottom:417.865333pt;}
.ycf{bottom:418.798667pt;}
.yce{bottom:419.465333pt;}
.y1ba{bottom:419.598667pt;}
.ycd{bottom:420.732000pt;}
.y1bb{bottom:420.865333pt;}
.ycc{bottom:421.065333pt;}
.y1bc{bottom:421.465333pt;}
.y160{bottom:425.465333pt;}
.y1c{bottom:425.598667pt;}
.y1d{bottom:425.932000pt;}
.y15f{bottom:426.398667pt;}
.y1b{bottom:426.532000pt;}
.y249{bottom:427.932000pt;}
.y68{bottom:428.198667pt;}
.y248{bottom:428.265333pt;}
.y15e{bottom:428.333333pt;}
.y67{bottom:428.465333pt;}
.y69{bottom:428.798667pt;}
.y1fc{bottom:429.333333pt;}
.y11b{bottom:431.465333pt;}
.y246{bottom:432.065333pt;}
.y245{bottom:432.133333pt;}
.y247{bottom:432.466667pt;}
.ycb{bottom:434.798667pt;}
.yca{bottom:435.132000pt;}
.y229{bottom:435.532000pt;}
.yc9{bottom:437.065333pt;}
.y1b9{bottom:438.132000pt;}
.y244{bottom:441.066667pt;}
.y1a{bottom:443.532000pt;}
.y15d{bottom:445.333333pt;}
.y66{bottom:446.065333pt;}
.y65{bottom:446.398667pt;}
.y1f8{bottom:447.532000pt;}
.y1f9{bottom:447.865333pt;}
.y1fa{bottom:448.198667pt;}
.y1fb{bottom:448.532000pt;}
.y11a{bottom:449.333333pt;}
.yc8{bottom:453.065333pt;}
.y228{bottom:453.198667pt;}
.yc7{bottom:454.000000pt;}
.y1b7{bottom:454.132000pt;}
.yc6{bottom:454.932000pt;}
.y1b8{bottom:455.732000pt;}
.yc5{bottom:455.932000pt;}
.yc4{bottom:456.598667pt;}
.y19{bottom:461.732000pt;}
.y15c{bottom:462.932000pt;}
.y64{bottom:464.333333pt;}
.y1f7{bottom:465.198667pt;}
.y119{bottom:467.265333pt;}
.y227{bottom:471.065333pt;}
.yc3{bottom:471.598667pt;}
.y1b4{bottom:472.333333pt;}
.yc2{bottom:473.198667pt;}
.y1b5{bottom:473.333333pt;}
.yc1{bottom:473.865333pt;}
.yc0{bottom:474.198667pt;}
.y1b6{bottom:474.265333pt;}
.ybf{bottom:474.532000pt;}
.y18{bottom:479.666667pt;}
.y63{bottom:480.598667pt;}
.y1f6{bottom:481.132000pt;}
.y1f5{bottom:481.532000pt;}
.y118{bottom:484.932000pt;}
.y15b{bottom:485.000000pt;}
.y238{bottom:487.466667pt;}
.y226{bottom:489.000000pt;}
.ybe{bottom:490.198667pt;}
.y1b3{bottom:491.932000pt;}
.y17{bottom:496.932000pt;}
.y16{bottom:497.000000pt;}
.y15{bottom:497.865333pt;}
.y62{bottom:498.265333pt;}
.y1f4{bottom:499.400000pt;}
.y15a{bottom:500.065333pt;}
.y117{bottom:502.865333pt;}
.y225{bottom:506.932000pt;}
.ybd{bottom:510.000000pt;}
.y1b2{bottom:510.798667pt;}
.y237{bottom:511.466667pt;}
.y14{bottom:515.198667pt;}
.y159{bottom:515.400000pt;}
.y158{bottom:515.733333pt;}
.y13{bottom:516.132000pt;}
.y61{bottom:516.198667pt;}
.y1f3{bottom:517.333333pt;}
.y157{bottom:518.598667pt;}
.y116{bottom:520.733333pt;}
.y23b{bottom:522.666667pt;}
.y224{bottom:524.865333pt;}
.ybc{bottom:527.598667pt;}
.y1af{bottom:528.333333pt;}
.y1b0{bottom:529.333333pt;}
.y1b1{bottom:529.666667pt;}
.y239{bottom:529.733333pt;}
.y11{bottom:533.132000pt;}
.y10{bottom:533.400000pt;}
.y12{bottom:533.465333pt;}
.y5f{bottom:534.066667pt;}
.y60{bottom:534.132000pt;}
.y5e{bottom:534.666667pt;}
.y1f2{bottom:534.932000pt;}
.y156{bottom:535.865333pt;}
.y113{bottom:538.066667pt;}
.y114{bottom:538.333333pt;}
.y115{bottom:538.932000pt;}
.y23a{bottom:539.000000pt;}
.y223{bottom:542.798667pt;}
.ybb{bottom:543.598667pt;}
.yba{bottom:545.198667pt;}
.yb9{bottom:547.132000pt;}
.y1ae{bottom:547.265333pt;}
.yb8{bottom:547.465333pt;}
.yf{bottom:551.333333pt;}
.y155{bottom:551.532000pt;}
.y5d{bottom:552.000000pt;}
.y154{bottom:552.198667pt;}
.y1f0{bottom:552.532000pt;}
.y153{bottom:553.198667pt;}
.y1f1{bottom:553.465333pt;}
.y152{bottom:554.132000pt;}
.y151{bottom:555.400000pt;}
.y112{bottom:556.598667pt;}
.y222{bottom:560.666667pt;}
.yb7{bottom:561.532000pt;}
.yb6{bottom:562.466667pt;}
.yb5{bottom:564.065333pt;}
.y1ab{bottom:564.865333pt;}
.y1ac{bottom:565.198667pt;}
.y1ad{bottom:565.800000pt;}
.ye{bottom:569.598667pt;}
.y5c{bottom:569.932000pt;}
.y1ef{bottom:570.466667pt;}
.y150{bottom:573.666667pt;}
.y111{bottom:574.466667pt;}
.y221{bottom:578.666667pt;}
.yb4{bottom:578.800000pt;}
.yb3{bottom:579.133333pt;}
.yb2{bottom:580.398667pt;}
.yb1{bottom:582.398667pt;}
.y1aa{bottom:584.333333pt;}
.yd{bottom:587.466667pt;}
.y5b{bottom:587.800000pt;}
.y1ee{bottom:588.398667pt;}
.y14f{bottom:590.932000pt;}
.y110{bottom:592.398667pt;}
.y220{bottom:596.532000pt;}
.y21f{bottom:597.466667pt;}
.y1a5{bottom:602.000000pt;}
.yb0{bottom:602.198667pt;}
.y1a6{bottom:602.265333pt;}
.y1a7{bottom:602.333333pt;}
.yaf{bottom:602.800000pt;}
.y1a8{bottom:603.265333pt;}
.y1a9{bottom:603.865333pt;}
.yc{bottom:605.398667pt;}
.y1ec{bottom:605.666667pt;}
.y58{bottom:605.732000pt;}
.y59{bottom:605.800000pt;}
.y1eb{bottom:606.000000pt;}
.y5a{bottom:606.065333pt;}
.y1ed{bottom:606.265333pt;}
.y14e{bottom:608.532000pt;}
.y10f{bottom:610.333333pt;}
.y21e{bottom:614.732000pt;}
.yae{bottom:617.865333pt;}
.y1a4{bottom:620.532000pt;}
.ya{bottom:622.732000pt;}
.yb{bottom:623.065333pt;}
.y9{bottom:623.333333pt;}
.y57{bottom:623.666667pt;}
.y1ea{bottom:623.865333pt;}
.y8{bottom:624.000000pt;}
.y10e{bottom:627.666667pt;}
.y14d{bottom:629.333333pt;}
.y21d{bottom:632.666667pt;}
.yad{bottom:636.732000pt;}
.yac{bottom:638.666667pt;}
.y1a2{bottom:639.398667pt;}
.y1a3{bottom:640.000000pt;}
.y7{bottom:640.666667pt;}
.y6{bottom:640.932000pt;}
.y5{bottom:641.598667pt;}
.y1e9{bottom:641.800000pt;}
.y10d{bottom:645.865333pt;}
.y14c{bottom:645.932000pt;}
.y21c{bottom:650.265333pt;}
.yab{bottom:653.333333pt;}
.yaa{bottom:653.666667pt;}
.ya9{bottom:655.000000pt;}
.ya8{bottom:656.598667pt;}
.ya7{bottom:657.532000pt;}
.y56{bottom:659.198667pt;}
.y1e8{bottom:659.398667pt;}
.y1a1{bottom:660.198667pt;}
.y14b{bottom:661.598667pt;}
.y14a{bottom:662.598667pt;}
.y10c{bottom:663.800000pt;}
.y149{bottom:664.532000pt;}
.y21b{bottom:669.133333pt;}
.ya6{bottom:672.932000pt;}
.y1e7{bottom:677.333333pt;}
.y55{bottom:677.398667pt;}
.y1a0{bottom:678.732000pt;}
.y148{bottom:678.932000pt;}
.y147{bottom:679.532000pt;}
.y109{bottom:681.398667pt;}
.y10b{bottom:681.666667pt;}
.y10a{bottom:681.732000pt;}
.y146{bottom:681.865333pt;}
.y21a{bottom:686.133333pt;}
.ya5{bottom:691.133333pt;}
.y54{bottom:693.398667pt;}
.y53{bottom:693.732000pt;}
.y1e6{bottom:694.933333pt;}
.y19e{bottom:696.398667pt;}
.y19f{bottom:697.333333pt;}
.y145{bottom:697.466667pt;}
.y144{bottom:698.732000pt;}
.y143{bottom:699.466667pt;}
.y108{bottom:699.600000pt;}
.y142{bottom:700.333333pt;}
.y141{bottom:700.666667pt;}
.y140{bottom:701.333333pt;}
.y13f{bottom:701.666667pt;}
.y219{bottom:704.065333pt;}
.ya4{bottom:706.198667pt;}
.ya3{bottom:707.133333pt;}
.ya2{bottom:709.398667pt;}
.y3{bottom:709.800000pt;}
.y4{bottom:710.065333pt;}
.y52{bottom:711.398667pt;}
.y1e5{bottom:712.865333pt;}
.y19d{bottom:714.933333pt;}
.y13e{bottom:717.065333pt;}
.y106{bottom:717.198667pt;}
.y107{bottom:717.266667pt;}
.y218{bottom:721.666667pt;}
.y217{bottom:723.266667pt;}
.y51{bottom:729.333333pt;}
.ya1{bottom:729.865333pt;}
.y1e4{bottom:730.732000pt;}
.y19a{bottom:732.532000pt;}
.y19b{bottom:732.800000pt;}
.y19c{bottom:733.133333pt;}
.y13d{bottom:734.933333pt;}
.y105{bottom:735.133333pt;}
.y216{bottom:739.600000pt;}
.y2{bottom:740.133333pt;}
.y1{bottom:740.466667pt;}
.ya0{bottom:744.266667pt;}
.y9f{bottom:745.532000pt;}
.y1e3{bottom:747.065333pt;}
.y50{bottom:747.198667pt;}
.y4f{bottom:747.466667pt;}
.y4e{bottom:747.532000pt;}
.y199{bottom:749.133333pt;}
.y13c{bottom:750.000000pt;}
.y104{bottom:753.065333pt;}
.y13b{bottom:753.133333pt;}
.y215{bottom:757.466667pt;}
.y9e{bottom:761.865333pt;}
.y9d{bottom:763.800000pt;}
.y1e2{bottom:764.666667pt;}
.y1e1{bottom:765.000000pt;}
.y4d{bottom:765.133333pt;}
.y9c{bottom:765.666667pt;}
.y198{bottom:769.666667pt;}
.y13a{bottom:770.466667pt;}
.y214{bottom:775.398667pt;}
.y103{bottom:779.666667pt;}
.y9b{bottom:782.000000pt;}
.y1e0{bottom:782.600000pt;}
.y4c{bottom:783.000000pt;}
.y196{bottom:787.532000pt;}
.y197{bottom:787.865333pt;}
.y139{bottom:788.333333pt;}
.y213{bottom:793.065333pt;}
.y100{bottom:797.532000pt;}
.y102{bottom:798.198667pt;}
.y101{bottom:798.532000pt;}
.y9a{bottom:799.266667pt;}
.y1df{bottom:800.532000pt;}
.y4b{bottom:800.600000pt;}
.y4a{bottom:800.666667pt;}
.y49{bottom:801.000000pt;}
.y48{bottom:801.333333pt;}
.y47{bottom:801.600000pt;}
.y138{bottom:805.933333pt;}
.y212{bottom:810.666667pt;}
.y1de{bottom:818.133333pt;}
.y195{bottom:822.133333pt;}
.yff{bottom:831.133333pt;}
.y99{bottom:832.266667pt;}
.y98{bottom:832.600000pt;}
.y46{bottom:834.198667pt;}
.y137{bottom:838.933333pt;}
.y211{bottom:843.865333pt;}
.y1dd{bottom:851.466667pt;}
.y194{bottom:893.800000pt;}
.h18{height:26.158854pt;}
.h1a{height:26.171875pt;}
.h1d{height:28.453333pt;}
.hf{height:31.406250pt;}
.h19{height:32.250000pt;}
.h1c{height:36.622396pt;}
.h9{height:41.875000pt;}
.h13{height:44.500000pt;}
.hc{height:47.109375pt;}
.h1e{height:50.062500pt;}
.h6{height:52.343750pt;}
.h4{height:57.578125pt;}
.h8{height:59.125000pt;}
.hd{height:62.781250pt;}
.h3{height:62.812500pt;}
.h11{height:68.046875pt;}
.h1b{height:73.281250pt;}
.h1{height:83.750000pt;}
.h2{height:104.687500pt;}
.ha{height:120.390625pt;}
.h14{height:600.000000pt;}
.h12{height:608.000000pt;}
.h17{height:610.666667pt;}
.h16{height:897.333333pt;}
.h15{height:901.333333pt;}
.h7{height:902.666667pt;}
.h5{height:904.000000pt;}
.h10{height:905.333333pt;}
.hb{height:906.666667pt;}
.h0{height:912.000000pt;}
.he{height:917.333333pt;}
.w5{width:588.000000pt;}
.w1{width:600.000000pt;}
.w8{width:601.333333pt;}
.w4{width:604.000000pt;}
.w3{width:606.666667pt;}
.w2{width:608.000000pt;}
.w0{width:609.333333pt;}
.w7{width:874.666667pt;}
.w9{width:905.333333pt;}
.w6{width:909.333333pt;}
.x0{left:0.000000pt;}
.xc2{left:50.266667pt;}
.xb8{left:51.200000pt;}
.xb0{left:52.133333pt;}
.x9c{left:60.466667pt;}
.x8c{left:62.400000pt;}
.x7d{left:63.333333pt;}
.x79{left:64.333333pt;}
.x73{left:65.933333pt;}
.xa5{left:67.533333pt;}
.xa8{left:68.466667pt;}
.x48{left:69.466667pt;}
.x3e{left:70.400000pt;}
.x61{left:71.333333pt;}
.xb1{left:72.933333pt;}
.x4b{left:74.266667pt;}
.xbf{left:76.800000pt;}
.x43{left:77.733333pt;}
.xaf{left:79.333333pt;}
.xe{left:80.666667pt;}
.x8{left:81.600000pt;}
.x2a{left:82.533333pt;}
.xf8{left:83.533333pt;}
.x8f{left:84.800000pt;}
.x82{left:87.666667pt;}
.x93{left:91.533333pt;}
.x5e{left:92.466667pt;}
.x1{left:94.065333pt;}
.xe2{left:95.065333pt;}
.xe4{left:96.000000pt;}
.xa4{left:96.933333pt;}
.x5d{left:97.933333pt;}
.xaa{left:98.866667pt;}
.x44{left:100.466667pt;}
.x6a{left:101.466667pt;}
.x49{left:103.066667pt;}
.xca{left:104.333333pt;}
.x38{left:105.600000pt;}
.xd8{left:106.533333pt;}
.x1b{left:107.533333pt;}
.x5{left:111.066667pt;}
.x29{left:112.000000pt;}
.xdb{left:113.266667pt;}
.x3f{left:118.066667pt;}
.x90{left:120.333333pt;}
.xcf{left:122.266667pt;}
.x45{left:123.200000pt;}
.x85{left:124.466667pt;}
.xcd{left:125.466667pt;}
.x2b{left:126.733333pt;}
.x92{left:128.000000pt;}
.x21{left:129.600000pt;}
.x12{left:131.866667pt;}
.xdc{left:133.733333pt;}
.x6d{left:134.733333pt;}
.x1a{left:138.266667pt;}
.x9{left:139.533333pt;}
.x22{left:140.800000pt;}
.x83{left:145.266667pt;}
.xef{left:147.200000pt;}
.x9f{left:149.466667pt;}
.x88{left:150.733333pt;}
.x1c{left:154.866667pt;}
.x15{left:156.133333pt;}
.x6e{left:158.400000pt;}
.x52{left:160.666667pt;}
.x23{left:164.133333pt;}
.xf2{left:168.666667pt;}
.xf3{left:170.266667pt;}
.x30{left:171.533333pt;}
.xa7{left:173.132000pt;}
.xb2{left:174.733333pt;}
.x64{left:175.666667pt;}
.x46{left:177.266667pt;}
.x3a{left:180.465333pt;}
.x39{left:181.465333pt;}
.x40{left:184.333333pt;}
.x56{left:185.266667pt;}
.xf4{left:187.533333pt;}
.xce{left:188.798667pt;}
.xf5{left:189.733333pt;}
.xb7{left:190.733333pt;}
.xd2{left:191.666667pt;}
.xde{left:192.933333pt;}
.x86{left:194.266667pt;}
.xd0{left:196.132000pt;}
.xe7{left:197.132000pt;}
.xc9{left:198.066667pt;}
.x96{left:199.066667pt;}
.xf1{left:200.333333pt;}
.xd1{left:202.266667pt;}
.x9e{left:204.132000pt;}
.x24{left:205.133333pt;}
.x2c{left:207.066667pt;}
.xa{left:209.600000pt;}
.x89{left:211.533333pt;}
.x6f{left:215.066667pt;}
.xc3{left:216.000000pt;}
.x41{left:218.266667pt;}
.x59{left:222.066667pt;}
.xb3{left:223.666667pt;}
.x91{left:227.866667pt;}
.x55{left:229.133333pt;}
.xa6{left:231.333333pt;}
.xf0{left:233.266667pt;}
.x1d{left:236.466667pt;}
.x70{left:239.066667pt;}
.x3b{left:240.333333pt;}
.x37{left:241.600000pt;}
.x6{left:244.133333pt;}
.x31{left:247.333333pt;}
.xae{left:252.800000pt;}
.x7a{left:254.400000pt;}
.x3{left:255.666667pt;}
.x97{left:256.933333pt;}
.x47{left:258.866667pt;}
.xc4{left:260.133333pt;}
.xac{left:262.733333pt;}
.x87{left:263.666667pt;}
.x32{left:264.933333pt;}
.xa2{left:265.933333pt;}
.xe1{left:267.533333pt;}
.x3d{left:270.400000pt;}
.x13{left:271.333333pt;}
.x57{left:272.933333pt;}
.x25{left:276.133333pt;}
.x2d{left:278.400000pt;}
.xea{left:280.000000pt;}
.x74{left:280.933333pt;}
.x1f{left:281.933333pt;}
.xff{left:282.866667pt;}
.xd5{left:285.733333pt;}
.xe5{left:286.733333pt;}
.x5f{left:288.000000pt;}
.x75{left:289.600000pt;}
.xdf{left:291.866667pt;}
.x4{left:292.800000pt;}
.x1e{left:295.333333pt;}
.x7{left:296.666667pt;}
.x54{left:300.800000pt;}
.x71{left:301.733333pt;}
.xad{left:308.800000pt;}
.x7c{left:309.733333pt;}
.x53{left:311.066667pt;}
.x5a{left:312.933333pt;}
.xc5{left:316.133333pt;}
.x72{left:318.400000pt;}
.xe3{left:320.666667pt;}
.x26{left:326.066667pt;}
.x58{left:327.666667pt;}
.x14{left:330.266667pt;}
.xf9{left:332.800000pt;}
.xcb{left:334.400000pt;}
.xcc{left:335.666667pt;}
.xc6{left:337.600000pt;}
.x20{left:338.866667pt;}
.x98{left:340.800000pt;}
.x8a{left:342.733333pt;}
.x50{left:344.000000pt;}
.xc1{left:345.265333pt;}
.xc7{left:346.533333pt;}
.x27{left:349.466667pt;}
.x62{left:351.333333pt;}
.xb9{left:353.598667pt;}
.xd7{left:355.533333pt;}
.x99{left:356.466667pt;}
.xd6{left:360.666667pt;}
.x9a{left:361.598667pt;}
.x18{left:364.133333pt;}
.x80{left:365.133333pt;}
.x76{left:367.333333pt;}
.xf{left:373.133333pt;}
.x4e{left:375.333333pt;}
.x60{left:376.333333pt;}
.x4c{left:377.598667pt;}
.x5b{left:380.800000pt;}
.x35{left:381.733333pt;}
.x2{left:383.666667pt;}
.x65{left:384.666667pt;}
.x10{left:387.200000pt;}
.xba{left:389.466667pt;}
.x51{left:391.066667pt;}
.xfa{left:392.333333pt;}
.x28{left:396.800000pt;}
.x3c{left:399.333333pt;}
.x9b{left:400.666667pt;}
.xd3{left:402.265333pt;}
.x81{left:404.800000pt;}
.x68{left:405.733333pt;}
.xb6{left:408.666667pt;}
.xc{left:409.600000pt;}
.x94{left:411.200000pt;}
.xab{left:413.133333pt;}
.xbb{left:414.066667pt;}
.xd9{left:417.600000pt;}
.x8b{left:419.200000pt;}
.x77{left:421.466667pt;}
.x7b{left:423.066667pt;}
.xb4{left:424.000000pt;}
.x33{left:426.266667pt;}
.x5c{left:428.133333pt;}
.xc0{left:429.133333pt;}
.x63{left:432.333333pt;}
.x6b{left:434.533333pt;}
.x19{left:437.733333pt;}
.x36{left:440.933333pt;}
.xd{left:441.933333pt;}
.xda{left:443.200000pt;}
.x66{left:444.466667pt;}
.x9d{left:448.933333pt;}
.x78{left:450.866667pt;}
.xb5{left:452.133333pt;}
.x16{left:453.466667pt;}
.x8d{left:457.266667pt;}
.x4d{left:458.533333pt;}
.xe8{left:459.533333pt;}
.x84{left:461.133333pt;}
.xa0{left:462.400000pt;}
.xa3{left:463.333333pt;}
.x4a{left:464.333333pt;}
.x69{left:466.533333pt;}
.x42{left:467.866667pt;}
.x2e{left:473.600000pt;}
.xe9{left:476.466667pt;}
.x4f{left:478.066667pt;}
.xbc{left:479.333333pt;}
.xbd{left:482.866667pt;}
.xa1{left:487.333333pt;}
.xd4{left:488.333333pt;}
.xbe{left:490.533333pt;}
.x7e{left:494.066667pt;}
.xc8{left:495.333333pt;}
.xa9{left:496.666667pt;}
.xb{left:497.600000pt;}
.x6c{left:499.533333pt;}
.xe6{left:508.800000pt;}
.xdd{left:512.000000pt;}
.x95{left:513.266667pt;}
.x17{left:514.533333pt;}
.x34{left:515.533333pt;}
.x8e{left:520.333333pt;}
.x7f{left:521.933333pt;}
.x11{left:527.066667pt;}
.x67{left:530.266667pt;}
.xed{left:531.866667pt;}
.x2f{left:533.466667pt;}
.xeb{left:537.266667pt;}
.xee{left:538.266667pt;}
.xfb{left:557.133333pt;}
.xf6{left:580.466667pt;}
.x100{left:583.666667pt;}
.xe0{left:585.933333pt;}
.xfc{left:608.666667pt;}
.xec{left:612.133333pt;}
.xf7{left:649.266667pt;}
.x101{left:654.066667pt;}
.xfd{left:686.400000pt;}
.xfe{left:734.066667pt;}
}




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