
    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_ca6370452657b2de9db57934.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.894000;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_6a57c81ef18804645e5f561b.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.009000;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_0313107a5134ba687183586d.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.986000;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_b5711b08949e4d5e1a898b50.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.736000;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_8f17da48a451cb7c4f4aae88.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.660000;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_37e018c9111f89f364364fc6.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.885000;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_732a43d0a9b5c994d191781a.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.011000;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_4fe93f46ce9ed1eca55a4c31.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.933000;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_59b309de5f9f8c54345b246e.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.900000;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_80c736553a49a770b4b688f3.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.666000;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_d50ebd3b0f7f07c8f5b0c998.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.014160;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_058ee92b795dd6c336b797b9.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.006348;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_8194a6554a4270802ca5d82e.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.216309;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_703c8d7ba2db647df3eb7ed1.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.014160;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_5596fd181c16805648b8b7d9.woff2')format("woff");}.fff{font-family:fff;line-height:1.216309;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_e4225eb5ecf027def1bd7d8c.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.014160;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_286e6a09644fbd5f99140dfd.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.006348;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_a65b7a0c924b2ca66a44d75b.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.216309;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_4fbbcb5c418b8fd4b016361d.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.216309;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_1a9147c6b7ac8ee02e671978.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.909180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_b0333042568d125f42352498.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.014160;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_9da3b11dd5d7c10fbaa843a8.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_93bd468ed8254f528a41df22.woff2')format("woff");}.ff17{font-family:ff17;line-height:1.216309;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url('chunks/assets/font_7b1b981d31413efbfc5c8394.woff2')format("woff");}.ff18{font-family:ff18;line-height:1.216309;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19;src:url('chunks/assets/font_1a9147c6b7ac8ee02e671978.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.909180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a;src:url('chunks/assets/font_a121c8416f955fc9d4b757a9.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.493000;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;}
.m1{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);}
.m18{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m20{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);}
.m25{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m1e{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);}
.m12{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,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);}
.m17{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.m4{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);}
.m3{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m2{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(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v4{vertical-align:-7.596000px;}
.v2{vertical-align:-5.298000px;}
.v7{vertical-align:-1.890000px;}
.v0{vertical-align:0.000000px;}
.v8{vertical-align:1.890000px;}
.v9{vertical-align:15.120000px;}
.v6{vertical-align:19.530000px;}
.v1{vertical-align:21.702000px;}
.v3{vertical-align:40.146000px;}
.v5{vertical-align:49.110000px;}
.ls30{letter-spacing:-0.270000px;}
.ls35{letter-spacing:-0.220200px;}
.ls32{letter-spacing:-0.180000px;}
.ls2c{letter-spacing:-0.090000px;}
.ls2e{letter-spacing:-0.053280px;}
.lsb{letter-spacing:0.000000px;}
.ls39{letter-spacing:0.000017px;}
.ls4d{letter-spacing:0.000335px;}
.ls2{letter-spacing:0.000600px;}
.ls2a{letter-spacing:0.000608px;}
.ls50{letter-spacing:0.000676px;}
.ls7{letter-spacing:0.000964px;}
.ls53{letter-spacing:0.001123px;}
.ls4b{letter-spacing:0.001155px;}
.ls52{letter-spacing:0.001544px;}
.ls4f{letter-spacing:0.001701px;}
.ls38{letter-spacing:0.002520px;}
.ls4e{letter-spacing:0.002744px;}
.ls44{letter-spacing:0.002780px;}
.ls3{letter-spacing:0.003116px;}
.ls4a{letter-spacing:0.003668px;}
.ls54{letter-spacing:0.003965px;}
.ls3a{letter-spacing:0.004200px;}
.ls48{letter-spacing:0.004749px;}
.ls4c{letter-spacing:0.004800px;}
.ls34{letter-spacing:0.018000px;}
.ls2f{letter-spacing:0.020160px;}
.ls33{letter-spacing:0.043200px;}
.ls2d{letter-spacing:0.053280px;}
.ls22{letter-spacing:0.120000px;}
.ls21{letter-spacing:0.140040px;}
.ls31{letter-spacing:0.145200px;}
.ls20{letter-spacing:0.180000px;}
.ls25{letter-spacing:0.503764px;}
.ls27{letter-spacing:0.542815px;}
.ls1e{letter-spacing:0.548815px;}
.lsc{letter-spacing:1.275394px;}
.ls0{letter-spacing:1.861130px;}
.ls24{letter-spacing:4.050000px;}
.ls23{letter-spacing:6.570000px;}
.ls1{letter-spacing:10.461300px;}
.ls6{letter-spacing:11.947739px;}
.lsa{letter-spacing:11.954850px;}
.ls19{letter-spacing:11.957700px;}
.ls4{letter-spacing:12.200055px;}
.ls3c{letter-spacing:13.159139px;}
.ls55{letter-spacing:13.236791px;}
.ls18{letter-spacing:13.246306px;}
.ls46{letter-spacing:13.331032px;}
.ls43{letter-spacing:13.342890px;}
.ls41{letter-spacing:13.371474px;}
.ls8{letter-spacing:13.429457px;}
.ls3f{letter-spacing:13.448400px;}
.ls26{letter-spacing:13.449600px;}
.ls40{letter-spacing:13.454400px;}
.ls3d{letter-spacing:13.505265px;}
.ls42{letter-spacing:13.544364px;}
.ls47{letter-spacing:13.587135px;}
.ls14{letter-spacing:14.094088px;}
.ls12{letter-spacing:14.100088px;}
.ls9{letter-spacing:14.206682px;}
.lse{letter-spacing:14.644094px;}
.lsf{letter-spacing:14.645022px;}
.ls1d{letter-spacing:14.649982px;}
.ls10{letter-spacing:14.664263px;}
.ls45{letter-spacing:14.750400px;}
.ls36{letter-spacing:14.884124px;}
.ls3e{letter-spacing:14.909224px;}
.ls1c{letter-spacing:15.118082px;}
.ls1f{letter-spacing:15.123227px;}
.ls1b{letter-spacing:15.123965px;}
.ls1a{letter-spacing:15.154796px;}
.ls3b{letter-spacing:15.231223px;}
.ls51{letter-spacing:15.462165px;}
.ls56{letter-spacing:16.050400px;}
.ls2b{letter-spacing:16.347494px;}
.ls29{letter-spacing:16.547494px;}
.ls49{letter-spacing:16.597459px;}
.ls28{letter-spacing:16.796944px;}
.ls11{letter-spacing:20.288671px;}
.ls5{letter-spacing:28.453654px;}
.lsd{letter-spacing:76.489200px;}
.ls15{letter-spacing:461.528932px;}
.ls17{letter-spacing:488.426932px;}
.ls16{letter-spacing:488.430600px;}
.ls13{letter-spacing:489.540600px;}
.ls37{letter-spacing:849.090000px;}
.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;}
}
.ws5f{word-spacing:-60.120000px;}
.ws0{word-spacing:-38.216790px;}
.ws83{word-spacing:-15.210000px;}
.ws63{word-spacing:-15.175200px;}
.ws5e{word-spacing:-15.083280px;}
.ws84{word-spacing:-15.032520px;}
.ws60{word-spacing:-15.030000px;}
.ws61{word-spacing:-14.976720px;}
.ws55{word-spacing:-14.943900px;}
.ws65{word-spacing:-14.850000px;}
.ws70{word-spacing:-14.809800px;}
.ws85{word-spacing:-13.500000px;}
.ws86{word-spacing:-13.449600px;}
.ws2a{word-spacing:-11.955150px;}
.ws24{word-spacing:-11.357400px;}
.ws6{word-spacing:-10.460700px;}
.ws62{word-spacing:-9.000000px;}
.ws64{word-spacing:-8.280000px;}
.ws8f{word-spacing:-5.798233px;}
.ws52{word-spacing:-3.227882px;}
.ws8b{word-spacing:-2.988780px;}
.ws7b{word-spacing:-2.391024px;}
.ws40{word-spacing:-2.151936px;}
.ws97{word-spacing:-2.044339px;}
.ws68{word-spacing:-2.032370px;}
.ws71{word-spacing:-1.990541px;}
.ws6f{word-spacing:-1.972595px;}
.ws41{word-spacing:-1.936742px;}
.ws3{word-spacing:-1.908367px;}
.ws76{word-spacing:-1.793268px;}
.ws72{word-spacing:-1.775347px;}
.ws17{word-spacing:-1.506355px;}
.ws79{word-spacing:-1.434614px;}
.ws2{word-spacing:-1.322630px;}
.ws6b{word-spacing:-1.315063px;}
.ws7d{word-spacing:-1.135736px;}
.wsad{word-spacing:-1.075968px;}
.ws74{word-spacing:-1.075961px;}
.ws3d{word-spacing:-1.016185px;}
.ws58{word-spacing:-0.896634px;}
.ws3c{word-spacing:-0.836858px;}
.wsaa{word-spacing:-0.806976px;}
.ws7c{word-spacing:-0.777083px;}
.wsab{word-spacing:-0.753178px;}
.ws35{word-spacing:-0.597756px;}
.wsac{word-spacing:-0.591782px;}
.ws5a{word-spacing:-0.537980px;}
.ws5b{word-spacing:-0.478205px;}
.ws2f{word-spacing:-0.418429px;}
.ws59{word-spacing:-0.358654px;}
.ws1f{word-spacing:-0.298878px;}
.wsb1{word-spacing:-0.268992px;}
.ws22{word-spacing:-0.239102px;}
.wsa1{word-spacing:-0.215194px;}
.ws23{word-spacing:-0.179327px;}
.ws14{word-spacing:-0.161395px;}
.ws26{word-spacing:-0.119551px;}
.ws15{word-spacing:-0.107597px;}
.ws1d{word-spacing:-0.059776px;}
.ws66{word-spacing:-0.053798px;}
.ws7{word-spacing:-0.041843px;}
.wsb3{word-spacing:-0.024278px;}
.wsa9{word-spacing:-0.005155px;}
.ws46{word-spacing:-0.004800px;}
.ws29{word-spacing:-0.002177px;}
.ws1{word-spacing:0.000000px;}
.ws5{word-spacing:0.000802px;}
.ws48{word-spacing:0.001200px;}
.ws67{word-spacing:0.053798px;}
.ws21{word-spacing:0.059776px;}
.ws94{word-spacing:0.107597px;}
.ws2d{word-spacing:0.119551px;}
.ws1a{word-spacing:0.161395px;}
.ws25{word-spacing:0.179327px;}
.ws8{word-spacing:0.209214px;}
.ws42{word-spacing:0.215194px;}
.ws12{word-spacing:0.239103px;}
.wsa3{word-spacing:0.263871px;}
.ws18{word-spacing:0.268992px;}
.wsa{word-spacing:0.292900px;}
.ws5d{word-spacing:0.298878px;}
.ws30{word-spacing:0.358654px;}
.ws8a{word-spacing:0.418429px;}
.ws82{word-spacing:0.537980px;}
.ws20{word-spacing:0.657532px;}
.ws4a{word-spacing:0.672000px;}
.ws47{word-spacing:0.673200px;}
.ws4b{word-spacing:0.677405px;}
.ws45{word-spacing:0.678240px;}
.ws6d{word-spacing:0.717307px;}
.ws19{word-spacing:0.753178px;}
.ws93{word-spacing:0.836858px;}
.ws57{word-spacing:0.896634px;}
.ws95{word-spacing:0.914573px;}
.ws33{word-spacing:0.956410px;}
.wsa0{word-spacing:0.968371px;}
.ws34{word-spacing:1.016185px;}
.ws9a{word-spacing:1.075968px;}
.ws99{word-spacing:1.129766px;}
.ws78{word-spacing:1.195512px;}
.ws89{word-spacing:1.255288px;}
.ws4f{word-spacing:1.291156px;}
.ws3b{word-spacing:1.374839px;}
.ws6c{word-spacing:1.434614px;}
.ws9b{word-spacing:1.452557px;}
.ws54{word-spacing:1.554166px;}
.wsaf{word-spacing:1.560154px;}
.ws51{word-spacing:1.613941px;}
.ws3a{word-spacing:1.673717px;}
.ws8e{word-spacing:1.733492px;}
.ws6a{word-spacing:1.853044px;}
.ws77{word-spacing:1.972595px;}
.wsb0{word-spacing:1.990541px;}
.ws9{word-spacing:2.008454px;}
.wsb4{word-spacing:2.044339px;}
.ws8c{word-spacing:2.151922px;}
.ws73{word-spacing:2.271473px;}
.ws27{word-spacing:2.391024px;}
.ws1e{word-spacing:2.450800px;}
.ws1b{word-spacing:2.474726px;}
.ws9c{word-spacing:2.528525px;}
.ws3e{word-spacing:2.570351px;}
.wsb6{word-spacing:2.582323px;}
.ws56{word-spacing:2.809453px;}
.ws13{word-spacing:2.869236px;}
.ws91{word-spacing:2.988780px;}
.ws88{word-spacing:3.108331px;}
.ws9f{word-spacing:3.174106px;}
.ws96{word-spacing:3.222576px;}
.wsa4{word-spacing:3.223200px;}
.wsa8{word-spacing:3.223824px;}
.ws9e{word-spacing:3.227904px;}
.ws81{word-spacing:3.287658px;}
.wsa6{word-spacing:3.335501px;}
.ws31{word-spacing:3.347434px;}
.ws75{word-spacing:3.407209px;}
.wsa7{word-spacing:3.443098px;}
.ws53{word-spacing:3.466985px;}
.wsa2{word-spacing:3.496896px;}
.wsae{word-spacing:3.550694px;}
.ws1c{word-spacing:3.586536px;}
.ws16{word-spacing:4.034880px;}
.ws5c{word-spacing:4.064741px;}
.ws7f{word-spacing:4.184292px;}
.ws2b{word-spacing:4.363619px;}
.ws90{word-spacing:4.483170px;}
.ws80{word-spacing:4.662497px;}
.wsb2{word-spacing:5.164646px;}
.ws2c{word-spacing:5.260253px;}
.ws3f{word-spacing:5.320028px;}
.ws28{word-spacing:5.559131px;}
.ws32{word-spacing:5.738458px;}
.ws9d{word-spacing:5.810227px;}
.ws50{word-spacing:5.858009px;}
.ws98{word-spacing:5.917824px;}
.ws87{word-spacing:6.037336px;}
.ws10{word-spacing:6.067206px;}
.ws11{word-spacing:6.150892px;}
.ws6e{word-spacing:6.276438px;}
.ws69{word-spacing:6.515540px;}
.ws92{word-spacing:6.874194px;}
.ws7a{word-spacing:7.292623px;}
.ws2e{word-spacing:7.352399px;}
.ws7e{word-spacing:8.009930px;}
.wse{word-spacing:8.661460px;}
.wsb5{word-spacing:9.791309px;}
.ws8d{word-spacing:10.640057px;}
.wsa5{word-spacing:11.136269px;}
.ws4{word-spacing:15.483541px;}
.wsb{word-spacing:16.142252px;}
.wsc{word-spacing:16.151321px;}
.wsd{word-spacing:17.699504px;}
.wsf{word-spacing:27.448877px;}
.ws37{word-spacing:81.465901px;}
.ws39{word-spacing:101.475313px;}
.ws38{word-spacing:116.060596px;}
.ws4e{word-spacing:572.626061px;}
.ws36{word-spacing:573.477863px;}
.ws49{word-spacing:580.374000px;}
.ws4c{word-spacing:581.934307px;}
.ws4d{word-spacing:589.526256px;}
.ws44{word-spacing:606.738355px;}
.ws43{word-spacing:903.355488px;}
._2d{margin-left:-14.219270px;}
._0{margin-left:-11.943245px;}
._2e{margin-left:-7.792702px;}
._c{margin-left:-6.778598px;}
._9{margin-left:-5.350337px;}
._4{margin-left:-3.849538px;}
._23{margin-left:-2.328139px;}
._2{margin-left:-1.322630px;}
._3{width:1.091170px;}
._7{width:2.301354px;}
._26{width:3.418558px;}
._25{width:4.689360px;}
._27{width:5.711400px;}
._28{width:7.034040px;}
._22{width:8.476920px;}
._24{width:9.815520px;}
._2c{width:11.182320px;}
._5{width:12.968940px;}
._10{width:14.828886px;}
._a{width:15.920801px;}
._13{width:17.484576px;}
._d{width:18.530436px;}
._e{width:20.443255px;}
._2f{width:22.116972px;}
._1c{width:23.192933px;}
._2a{width:24.507996px;}
._6{width:25.944936px;}
._20{width:27.795654px;}
._b{width:29.320128px;}
._8{width:32.637384px;}
._1d{width:34.423755px;}
._f{width:35.686033px;}
._29{width:38.555262px;}
._2b{width:43.098208px;}
._30{width:61.868160px;}
._1{width:69.366292px;}
._14{width:99.408011px;}
._16{width:103.627240px;}
._1b{width:201.755111px;}
._17{width:291.849122px;}
._18{width:322.884691px;}
._1a{width:367.453490px;}
._19{width:368.649005px;}
._15{width:559.896944px;}
._1e{width:596.731853px;}
._1f{width:611.365018px;}
._11{width:1182.220873px;}
._21{width:2282.352470px;}
._12{width:2715.441600px;}
.fc5{color:transparent;}
.fc3{color:rgb(12,11,11);}
.fc4{color:rgb(8,117,183);}
.fc1{color:rgb(56,126,127);}
.fc2{color:rgb(0,0,0);}
.fc0{color:rgb(41,66,37);}
.fs13{font-size:33.120000px;}
.fsa{font-size:35.865600px;}
.fs11{font-size:36.000000px;}
.fs6{font-size:41.842800px;}
.fs5{font-size:41.936104px;}
.fs14{font-size:43.600200px;}
.fs9{font-size:45.429600px;}
.fs4{font-size:47.236800px;}
.fse{font-size:47.337600px;}
.fs7{font-size:47.820600px;}
.fsf{font-size:47.880000px;}
.fsd{font-size:49.829400px;}
.fs8{font-size:53.798400px;}
.fs12{font-size:54.000000px;}
.fsc{font-size:56.058000px;}
.fs2{font-size:59.775600px;}
.fs10{font-size:60.120000px;}
.fsb{font-size:62.286600px;}
.fs0{font-size:80.255364px;}
.fs3{font-size:107.596800px;}
.fs1{font-size:152.867162px;}
.yf8{bottom:-508.723500px;}
.y113{bottom:-419.983500px;}
.y112{bottom:-400.723500px;}
.y111{bottom:-381.553500px;}
.y110{bottom:-362.293500px;}
.y10f{bottom:-343.033500px;}
.y10e{bottom:-323.833500px;}
.yc6{bottom:-306.862500px;}
.y10d{bottom:-304.573500px;}
.y10c{bottom:-285.313500px;}
.y10b{bottom:-261.553500px;}
.ye4{bottom:-234.412500px;}
.y10a{bottom:-224.383500px;}
.ye3{bottom:-215.152500px;}
.y109{bottom:-205.213500px;}
.ye2{bottom:-195.892500px;}
.y108{bottom:-185.953500px;}
.ye1{bottom:-176.722500px;}
.y107{bottom:-166.693500px;}
.ye0{bottom:-157.462500px;}
.y106{bottom:-147.523500px;}
.y14a{bottom:-138.775500px;}
.ydf{bottom:-138.292500px;}
.y105{bottom:-128.263500px;}
.yde{bottom:-119.002500px;}
.y104{bottom:-109.093500px;}
.ydd{bottom:-99.742500px;}
.y103{bottom:-89.833500px;}
.ydc{bottom:-80.572500px;}
.y16c{bottom:-74.425500px;}
.y102{bottom:-70.573500px;}
.ydb{bottom:-43.762500px;}
.y16b{bottom:-34.645500px;}
.y101{bottom:-33.853500px;}
.yda{bottom:-26.392500px;}
.y16a{bottom:-17.365500px;}
.y100{bottom:-16.483500px;}
.yd9{bottom:-3.982500px;}
.y0{bottom:0.000000px;}
.yb{bottom:3.425340px;}
.y169{bottom:5.044500px;}
.yff{bottom:5.926500px;}
.ya{bottom:14.151273px;}
.y3{bottom:16.519673px;}
.y2{bottom:26.264057px;}
.y4a{bottom:31.890000px;}
.yb3{bottom:88.993500px;}
.y176{bottom:95.200500px;}
.yf4{bottom:100.518000px;}
.y22{bottom:102.823500px;}
.y1a6{bottom:104.454000px;}
.y1d6{bottom:105.754500px;}
.y49{bottom:107.635500px;}
.yb2{bottom:107.823000px;}
.y174{bottom:114.030000px;}
.yf3{bottom:119.347500px;}
.y175{bottom:119.454000px;}
.y21{bottom:120.711000px;}
.y1d5{bottom:123.015000px;}
.y1a5{bottom:123.283500px;}
.y82{bottom:123.285000px;}
.y48{bottom:126.465000px;}
.yb1{bottom:126.652500px;}
.y12a{bottom:132.387000px;}
.y173{bottom:132.859500px;}
.yf2{bottom:138.177000px;}
.y20{bottom:138.600000px;}
.y1d4{bottom:140.275500px;}
.y1a4{bottom:142.113000px;}
.y81{bottom:142.114500px;}
.y47{bottom:145.294500px;}
.yb0{bottom:145.482000px;}
.y129{bottom:151.216500px;}
.y171{bottom:151.689000px;}
.y1f{bottom:156.487500px;}
.yf1{bottom:157.006500px;}
.y172{bottom:157.113000px;}
.y1d3{bottom:157.534500px;}
.y7f{bottom:160.944000px;}
.y46{bottom:164.124000px;}
.yaf{bottom:164.311500px;}
.y1a3{bottom:165.426000px;}
.y80{bottom:166.368000px;}
.y128{bottom:170.046000px;}
.y170{bottom:170.518500px;}
.y1e{bottom:174.375000px;}
.y1d2{bottom:174.795000px;}
.yf0{bottom:175.834500px;}
.y7d{bottom:179.773500px;}
.y45{bottom:182.953500px;}
.yae{bottom:183.141000px;}
.y7e{bottom:185.197500px;}
.y127{bottom:188.875500px;}
.y1d1{bottom:192.055500px;}
.y1d{bottom:192.264000px;}
.y16f{bottom:193.831500px;}
.yef{bottom:194.664000px;}
.y7b{bottom:198.603000px;}
.y1a2{bottom:199.050000px;}
.y44{bottom:201.783000px;}
.yad{bottom:201.970500px;}
.y7c{bottom:204.027000px;}
.y126{bottom:207.705000px;}
.y1d0{bottom:209.316000px;}
.y1c{bottom:210.151500px;}
.yee{bottom:213.493500px;}
.y79{bottom:217.432500px;}
.y1a0{bottom:217.879500px;}
.y43{bottom:220.612500px;}
.yac{bottom:220.800000px;}
.y7a{bottom:222.856500px;}
.y1a1{bottom:223.303500px;}
.y16e{bottom:224.259000px;}
.y125{bottom:226.534500px;}
.y1cf{bottom:226.576500px;}
.y1b{bottom:228.039000px;}
.yed{bottom:232.323000px;}
.y77{bottom:236.262000px;}
.y19f{bottom:236.709000px;}
.y42{bottom:239.442000px;}
.yab{bottom:239.629500px;}
.y78{bottom:241.686000px;}
.y16d{bottom:243.492000px;}
.y1ce{bottom:243.837000px;}
.y124{bottom:245.364000px;}
.yeb{bottom:251.152500px;}
.y19e{bottom:255.538500px;}
.yec{bottom:256.578000px;}
.y41{bottom:258.271500px;}
.yaa{bottom:258.459000px;}
.y76{bottom:259.573500px;}
.y1cd{bottom:261.097500px;}
.y123{bottom:264.193500px;}
.y147{bottom:265.920000px;}
.yea{bottom:269.982000px;}
.y19d{bottom:274.366500px;}
.y40{bottom:277.101000px;}
.ya9{bottom:277.288500px;}
.y1cc{bottom:278.358000px;}
.y122{bottom:283.023000px;}
.ye9{bottom:288.811500px;}
.y75{bottom:290.592000px;}
.y19b{bottom:293.196000px;}
.y206{bottom:293.421000px;}
.y1cb{bottom:295.618500px;}
.y3f{bottom:295.930500px;}
.ya8{bottom:296.118000px;}
.y19c{bottom:298.621500px;}
.y121{bottom:301.852500px;}
.y1a{bottom:307.299000px;}
.ye8{bottom:307.641000px;}
.y74{bottom:308.763000px;}
.y205{bottom:310.681500px;}
.y199{bottom:312.025500px;}
.y1ca{bottom:312.877500px;}
.y3e{bottom:314.760000px;}
.ya7{bottom:314.947500px;}
.y19a{bottom:317.451000px;}
.y120{bottom:320.682000px;}
.y73{bottom:322.959000px;}
.y19{bottom:325.186500px;}
.y204{bottom:327.940500px;}
.y1c9{bottom:330.138000px;}
.y198{bottom:330.855000px;}
.y3d{bottom:333.589500px;}
.ya6{bottom:338.259000px;}
.ye7{bottom:341.206500px;}
.y18{bottom:343.074000px;}
.y11f{bottom:343.995000px;}
.y72{bottom:344.358000px;}
.y203{bottom:345.201000px;}
.y1c8{bottom:347.398500px;}
.y197{bottom:349.684500px;}
.y3c{bottom:352.419000px;}
.y71{bottom:355.722000px;}
.y168{bottom:356.164500px;}
.ye5{bottom:360.439500px;}
.y17{bottom:360.963000px;}
.y202{bottom:362.461500px;}
.y1c7{bottom:364.659000px;}
.ye6{bottom:365.322000px;}
.y196{bottom:368.514000px;}
.y3b{bottom:371.248500px;}
.ya5{bottom:371.883000px;}
.y167{bottom:375.424500px;}
.y11e{bottom:377.619000px;}
.y201{bottom:379.722000px;}
.y1c6{bottom:381.919500px;}
.yc3{bottom:382.869000px;}
.y194{bottom:387.343500px;}
.y3a{bottom:390.078000px;}
.ya4{bottom:390.712500px;}
.y195{bottom:392.769000px;}
.y166{bottom:394.594500px;}
.y70{bottom:395.808000px;}
.y11d{bottom:396.448500px;}
.y200{bottom:396.982500px;}
.y16{bottom:399.024000px;}
.y1c5{bottom:399.180000px;}
.y193{bottom:406.173000px;}
.y39{bottom:408.907500px;}
.ya3{bottom:409.542000px;}
.y165{bottom:413.854500px;}
.y1ff{bottom:414.243000px;}
.y11c{bottom:415.276500px;}
.y1c4{bottom:416.440500px;}
.y15{bottom:416.913000px;}
.yd8{bottom:418.777500px;}
.y192{bottom:425.002500px;}
.y38{bottom:427.737000px;}
.ya2{bottom:428.371500px;}
.y6f{bottom:429.019500px;}
.y1fe{bottom:431.503500px;}
.y164{bottom:433.114500px;}
.y1c3{bottom:433.701000px;}
.y11b{bottom:434.106000px;}
.y14{bottom:434.800500px;}
.yd7{bottom:438.037500px;}
.y191{bottom:443.832000px;}
.y37{bottom:446.566500px;}
.ya1{bottom:447.201000px;}
.y6e{bottom:447.849000px;}
.y1fd{bottom:448.764000px;}
.y1c2{bottom:450.960000px;}
.y163{bottom:452.284500px;}
.y11a{bottom:452.935500px;}
.yd6{bottom:457.297500px;}
.y190{bottom:462.661500px;}
.y1fc{bottom:466.024500px;}
.ya0{bottom:466.030500px;}
.y6d{bottom:466.678500px;}
.y1c1{bottom:468.220500px;}
.y36{bottom:469.878000px;}
.y13{bottom:470.622000px;}
.y162{bottom:471.574500px;}
.y119{bottom:471.765000px;}
.yfe{bottom:474.676500px;}
.yd5{bottom:476.467500px;}
.y18f{bottom:481.491000px;}
.y1fb{bottom:483.283500px;}
.y9f{bottom:484.860000px;}
.y1c0{bottom:485.481000px;}
.y6c{bottom:489.991500px;}
.y118{bottom:490.594500px;}
.y161{bottom:490.744500px;}
.yfd{bottom:493.846500px;}
.yd4{bottom:495.727500px;}
.y18e{bottom:500.320500px;}
.y1fa{bottom:500.544000px;}
.y1bf{bottom:502.741500px;}
.y9e{bottom:503.689500px;}
.y12{bottom:506.442000px;}
.y117{bottom:509.424000px;}
.y160{bottom:510.004500px;}
.yfc{bottom:513.106500px;}
.yd3{bottom:514.897500px;}
.y1f9{bottom:517.804500px;}
.y1be{bottom:520.002000px;}
.y6b{bottom:523.615500px;}
.y18d{bottom:523.633500px;}
.y11{bottom:524.329500px;}
.y9d{bottom:527.002500px;}
.y116{bottom:528.253500px;}
.y15f{bottom:529.264500px;}
.yfb{bottom:532.396500px;}
.yd2{bottom:534.157500px;}
.y1f8{bottom:535.065000px;}
.y1bd{bottom:537.262500px;}
.y10{bottom:542.218500px;}
.y6a{bottom:542.445000px;}
.y35{bottom:545.029500px;}
.y15e{bottom:548.434500px;}
.yfa{bottom:551.566500px;}
.y1f7{bottom:552.325500px;}
.yd1{bottom:553.417500px;}
.y1bc{bottom:554.523000px;}
.y18c{bottom:557.257500px;}
.yf{bottom:560.106000px;}
.y9c{bottom:560.626500px;}
.y69{bottom:561.274500px;}
.y115{bottom:561.819000px;}
.y34{bottom:564.486000px;}
.y15d{bottom:567.694500px;}
.y1f6{bottom:569.586000px;}
.yf9{bottom:570.826500px;}
.y1bb{bottom:571.783500px;}
.yd0{bottom:572.587500px;}
.y18b{bottom:576.087000px;}
.ye{bottom:577.993500px;}
.y9b{bottom:579.456000px;}
.y68{bottom:580.104000px;}
.y114{bottom:581.052000px;}
.y1f5{bottom:586.846500px;}
.y15c{bottom:586.864500px;}
.y1ba{bottom:589.044000px;}
.ycf{bottom:591.847500px;}
.y18a{bottom:594.916500px;}
.yd{bottom:595.882500px;}
.y9a{bottom:598.285500px;}
.y67{bottom:598.932000px;}
.y33{bottom:601.875000px;}
.yf5{bottom:603.481500px;}
.y1f4{bottom:604.107000px;}
.y15b{bottom:606.124500px;}
.y1b9{bottom:606.303000px;}
.yce{bottom:611.107500px;}
.y189{bottom:613.746000px;}
.yc{bottom:613.770000px;}
.y66{bottom:617.761500px;}
.y32{bottom:621.333000px;}
.y1f3{bottom:621.366000px;}
.y1b8{bottom:623.563500px;}
.yf7{bottom:625.366500px;}
.y15a{bottom:625.384500px;}
.y146{bottom:628.092000px;}
.y99{bottom:628.995000px;}
.ycd{bottom:630.277500px;}
.y188{bottom:632.575500px;}
.yf6{bottom:635.176500px;}
.y9{bottom:636.141055px;}
.y65{bottom:636.591000px;}
.y1f2{bottom:638.626500px;}
.y31{bottom:640.789500px;}
.y1b7{bottom:640.824000px;}
.y98{bottom:643.191000px;}
.y159{bottom:644.554500px;}
.y145{bottom:646.921500px;}
.y187{bottom:651.405000px;}
.ycc{bottom:654.037500px;}
.y64{bottom:655.420500px;}
.y1f1{bottom:655.887000px;}
.y1b6{bottom:658.084500px;}
.y30{bottom:660.247500px;}
.y97{bottom:662.506500px;}
.y158{bottom:663.814500px;}
.y144{bottom:665.751000px;}
.y186{bottom:670.234500px;}
.y1f0{bottom:673.147500px;}
.y63{bottom:674.250000px;}
.y1b5{bottom:675.345000px;}
.ycb{bottom:677.707500px;}
.y2f{bottom:679.704000px;}
.y96{bottom:679.888500px;}
.y157{bottom:682.984500px;}
.y142{bottom:684.580500px;}
.y185{bottom:689.064000px;}
.y143{bottom:690.004500px;}
.y1ef{bottom:690.408000px;}
.y1b4{bottom:692.605500px;}
.y62{bottom:693.079500px;}
.y2e{bottom:699.160500px;}
.y156{bottom:702.244500px;}
.y141{bottom:703.410000px;}
.y95{bottom:704.473500px;}
.y1ee{bottom:707.668500px;}
.y183{bottom:707.892000px;}
.y61{bottom:711.909000px;}
.y184{bottom:713.317500px;}
.y1b3{bottom:714.349500px;}
.yca{bottom:714.967500px;}
.y2d{bottom:718.618500px;}
.y155{bottom:721.504500px;}
.y94{bottom:721.855500px;}
.y140{bottom:722.239500px;}
.y1ed{bottom:724.929000px;}
.y60{bottom:730.738500px;}
.y182{bottom:731.205000px;}
.yc9{bottom:734.257500px;}
.y2c{bottom:738.075000px;}
.y93{bottom:739.237500px;}
.y154{bottom:740.674500px;}
.y13f{bottom:741.067500px;}
.y1ec{bottom:742.189500px;}
.y1b2{bottom:747.972000px;}
.y5f{bottom:749.568000px;}
.yc8{bottom:753.427500px;}
.y2b{bottom:757.531500px;}
.y1eb{bottom:759.450000px;}
.y13e{bottom:759.897000px;}
.y153{bottom:759.934500px;}
.y92{bottom:763.350000px;}
.y181{bottom:764.829000px;}
.y1b1{bottom:765.547500px;}
.y5e{bottom:768.397500px;}
.yc7{bottom:772.687500px;}
.y1ea{bottom:776.709000px;}
.y2a{bottom:776.989500px;}
.y13d{bottom:778.726500px;}
.y152{bottom:779.194500px;}
.y1b0{bottom:783.121500px;}
.y180{bottom:783.658500px;}
.y91{bottom:786.990000px;}
.y5d{bottom:787.227000px;}
.y1e9{bottom:793.969500px;}
.y29{bottom:796.446000px;}
.y13c{bottom:797.556000px;}
.y90{bottom:798.354000px;}
.y151{bottom:798.364500px;}
.yc2{bottom:801.591000px;}
.y17f{bottom:802.488000px;}
.y5c{bottom:806.056500px;}
.y1af{bottom:809.661000px;}
.y1e8{bottom:811.230000px;}
.y28{bottom:815.904000px;}
.y13b{bottom:816.385500px;}
.y150{bottom:817.624500px;}
.yc1{bottom:820.420500px;}
.y17e{bottom:821.317500px;}
.y5b{bottom:824.886000px;}
.yc5{bottom:827.227500px;}
.y1e7{bottom:828.490500px;}
.y13a{bottom:835.215000px;}
.y27{bottom:835.360500px;}
.y1ae{bottom:836.202000px;}
.yc4{bottom:837.037500px;}
.yc0{bottom:839.250000px;}
.y14f{bottom:841.294500px;}
.y8f{bottom:842.250000px;}
.y5a{bottom:843.715500px;}
.y17d{bottom:844.630500px;}
.y1e6{bottom:845.751000px;}
.y139{bottom:854.044500px;}
.y26{bottom:854.817000px;}
.ybf{bottom:858.079500px;}
.y8e{bottom:861.483000px;}
.y59{bottom:862.545000px;}
.y1ad{bottom:862.743000px;}
.y1e5{bottom:863.011500px;}
.y14e{bottom:865.144500px;}
.y138{bottom:872.874000px;}
.ybe{bottom:876.909000px;}
.y17c{bottom:878.254500px;}
.y1e4{bottom:880.272000px;}
.y8d{bottom:880.716000px;}
.y58{bottom:881.374500px;}
.y137{bottom:888.973500px;}
.y1ac{bottom:889.282500px;}
.y136{bottom:891.703500px;}
.y25{bottom:893.403000px;}
.ybd{bottom:895.738500px;}
.y17b{bottom:897.084000px;}
.y1e3{bottom:897.532500px;}
.y57{bottom:900.204000px;}
.y14d{bottom:902.344500px;}
.y24{bottom:909.543000px;}
.y135{bottom:910.533000px;}
.ybb{bottom:914.568000px;}
.y1e1{bottom:914.791500px;}
.y1e2{bottom:914.793000px;}
.y1ab{bottom:915.823500px;}
.y8c{bottom:915.913500px;}
.y56{bottom:919.033500px;}
.ybc{bottom:919.993500px;}
.y14c{bottom:921.514500px;}
.y23{bottom:925.681500px;}
.y134{bottom:929.362500px;}
.y1e0{bottom:932.052000px;}
.yba{bottom:933.397500px;}
.y8b{bottom:934.743000px;}
.y55{bottom:937.863000px;}
.y14b{bottom:940.774500px;}
.y133{bottom:948.192000px;}
.y1df{bottom:949.312500px;}
.y1aa{bottom:950.971500px;}
.yb9{bottom:952.227000px;}
.y8a{bottom:953.572500px;}
.y54{bottom:956.692500px;}
.y132{bottom:964.291500px;}
.y1de{bottom:966.573000px;}
.y131{bottom:967.021500px;}
.y8{bottom:970.215000px;}
.yb8{bottom:971.056500px;}
.y89{bottom:972.402000px;}
.y53{bottom:975.522000px;}
.y1a9{bottom:977.512500px;}
.y1dd{bottom:983.833500px;}
.y130{bottom:985.851000px;}
.yb7{bottom:989.886000px;}
.y88{bottom:991.231500px;}
.y52{bottom:994.351500px;}
.y1a8{bottom:995.086500px;}
.y149{bottom:995.314500px;}
.y17a{bottom:995.713500px;}
.y1dc{bottom:1001.094000px;}
.y12f{bottom:1004.680500px;}
.y148{bottom:1005.124500px;}
.yb5{bottom:1008.715500px;}
.y87{bottom:1010.061000px;}
.y1a7{bottom:1012.660500px;}
.y7{bottom:1012.954500px;}
.y51{bottom:1013.181000px;}
.yb6{bottom:1014.139500px;}
.y1db{bottom:1018.354500px;}
.y12e{bottom:1023.510000px;}
.y86{bottom:1028.890500px;}
.y179{bottom:1029.337500px;}
.y50{bottom:1032.010500px;}
.yb4{bottom:1032.028500px;}
.y1da{bottom:1035.615000px;}
.y6{bottom:1041.199500px;}
.y12d{bottom:1042.339500px;}
.y178{bottom:1048.167000px;}
.y4f{bottom:1050.840000px;}
.y85{bottom:1052.202000px;}
.y1d9{bottom:1052.875500px;}
.y12c{bottom:1061.169000px;}
.y177{bottom:1066.996500px;}
.y5{bottom:1069.443000px;}
.y4e{bottom:1069.669500px;}
.y1d8{bottom:1070.134500px;}
.y12b{bottom:1084.482000px;}
.y84{bottom:1085.826000px;}
.y1d7{bottom:1087.395000px;}
.y4d{bottom:1088.499000px;}
.y4{bottom:1097.688000px;}
.y83{bottom:1104.655500px;}
.y4c{bottom:1107.327000px;}
.y1{bottom:1141.174500px;}
.y4b{bottom:1173.397500px;}
.h8{height:25.508090px;}
.h29{height:28.811839px;}
.hb{height:30.461558px;}
.hc{height:30.670772px;}
.h27{height:31.526842px;}
.h1a{height:33.072749px;}
.ha{height:33.112997px;}
.h1e{height:33.186380px;}
.h9{height:34.199443px;}
.h18{height:34.430832px;}
.hf{height:34.813397px;}
.h16{height:35.052500px;}
.h13{height:37.551283px;}
.hd{height:38.202476px;}
.h10{height:38.734848px;}
.h11{height:39.165235px;}
.h12{height:39.434227px;}
.h19{height:41.482876px;}
.h1b{height:41.723369px;}
.h7{height:43.038432px;}
.h14{height:43.516637px;}
.he{height:43.660208px;}
.h5{height:43.815515px;}
.h22{height:44.062559px;}
.h25{height:44.268047px;}
.h20{height:44.279648px;}
.h2a{height:49.117939px;}
.h23{height:49.939453px;}
.h1d{height:49.991558px;}
.h2{height:50.885293px;}
.h3{height:54.413137px;}
.h26{height:54.575123px;}
.h15{height:54.774749px;}
.h21{height:55.599258px;}
.h17{height:74.576832px;}
.h6{height:77.469696px;}
.h1c{height:87.844848px;}
.h4{height:103.643936px;}
.h28{height:338.530500px;}
.h1f{height:395.082000px;}
.h24{height:458.704500px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w3{width:75.364879px;}
.w2{width:122.343167px;}
.w4{width:534.892500px;}
.w6{width:561.598500px;}
.w5{width:600.085500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x7f{left:-198.915000px;}
.xa5{left:-191.061000px;}
.x8e{left:-188.704500px;}
.x80{left:-3.315000px;}
.x0{left:0.000000px;}
.xa6{left:4.539000px;}
.x8f{left:6.895500px;}
.x3{left:29.274117px;}
.xa7{left:36.399000px;}
.x91{left:38.755500px;}
.x1{left:54.000000px;}
.x2{left:60.781714px;}
.x92{left:85.890000px;}
.x93{left:142.450500px;}
.x8d{left:146.415000px;}
.x94{left:228.952500px;}
.x95{left:237.808500px;}
.x5{left:249.832500px;}
.x4{left:250.897500px;}
.x9{left:259.807500px;}
.x40{left:266.899500px;}
.x96{left:268.591500px;}
.x3f{left:270.552000px;}
.x69{left:277.051500px;}
.x97{left:278.431500px;}
.xb{left:282.786000px;}
.x45{left:286.042500px;}
.x55{left:292.375500px;}
.xad{left:294.636000px;}
.x62{left:300.981000px;}
.x46{left:302.065500px;}
.x56{left:308.391000px;}
.x6{left:309.487500px;}
.xb4{left:311.335500px;}
.x6e{left:313.159500px;}
.x63{left:314.905500px;}
.xa{left:321.225000px;}
.x50{left:324.127500px;}
.x47{left:328.714500px;}
.x49{left:333.772500px;}
.x48{left:335.742000px;}
.x1e{left:337.029000px;}
.x65{left:339.262500px;}
.x57{left:340.602000px;}
.x66{left:342.175500px;}
.x89{left:343.974000px;}
.x4a{left:350.307000px;}
.x1f{left:351.972000px;}
.x5b{left:353.607000px;}
.x20{left:355.663500px;}
.xb3{left:358.642500px;}
.x5c{left:368.550000px;}
.x21{left:370.608000px;}
.x4b{left:376.981500px;}
.xaf{left:378.985500px;}
.x4c{left:383.407500px;}
.x10{left:389.535000px;}
.x3e{left:392.646000px;}
.x11{left:397.006500px;}
.x2e{left:402.121500px;}
.xc{left:414.964500px;}
.x2f{left:417.066000px;}
.xd{left:422.436000px;}
.x30{left:424.687500px;}
.x31{left:439.630500px;}
.x85{left:443.974500px;}
.x12{left:445.719000px;}
.x13{left:453.190500px;}
.x14{left:456.967500px;}
.x86{left:458.919000px;}
.x15{left:464.440500px;}
.x32{left:471.759000px;}
.xa0{left:475.047000px;}
.x72{left:476.577000px;}
.xa1{left:484.947000px;}
.x33{left:486.703500px;}
.x34{left:490.387500px;}
.x73{left:491.520000px;}
.xae{left:492.765000px;}
.x67{left:493.830000px;}
.x74{left:495.211500px;}
.x35{left:505.330500px;}
.x68{left:507.042000px;}
.x75{left:510.156000px;}
.x22{left:512.784000px;}
.x76{left:513.847500px;}
.x81{left:516.771000px;}
.x23{left:520.255500px;}
.x5a{left:522.430500px;}
.x24{left:523.962000px;}
.x64{left:526.479000px;}
.x39{left:528.027000px;}
.x25{left:531.433500px;}
.x26{left:535.140000px;}
.x3a{left:539.260500px;}
.x4d{left:540.277500px;}
.x27{left:542.611500px;}
.x3b{left:546.732000px;}
.x87{left:553.035000px;}
.x7b{left:554.200500px;}
.x98{left:556.864500px;}
.x7c{left:557.967000px;}
.xa8{left:558.999000px;}
.xb0{left:560.791500px;}
.x88{left:562.875000px;}
.xaa{left:563.923500px;}
.x4e{left:566.953500px;}
.x7d{left:572.911500px;}
.x4f{left:573.981000px;}
.xb1{left:581.259000px;}
.x58{left:585.553500px;}
.x5d{left:587.158500px;}
.x82{left:594.948000px;}
.x90{left:596.095500px;}
.x59{left:601.569000px;}
.x83{left:604.788000px;}
.x5e{left:605.869500px;}
.x6f{left:619.327500px;}
.x5f{left:620.812500px;}
.x1a{left:623.518500px;}
.x60{left:624.579000px;}
.xa9{left:627.685500px;}
.x1b{left:630.991500px;}
.x1c{left:634.801500px;}
.xab{left:637.648500px;}
.x61{left:639.522000px;}
.x1d{left:642.273000px;}
.x36{left:644.964000px;}
.x37{left:648.646500px;}
.x84{left:649.870500px;}
.xac{left:652.593000px;}
.x7e{left:654.451500px;}
.x70{left:659.074500px;}
.x38{left:663.591000px;}
.x7{left:672.646500px;}
.x79{left:674.404500px;}
.x71{left:677.829000px;}
.x8{left:681.502500px;}
.x99{left:686.643000px;}
.x7a{left:689.349000px;}
.x9a{left:690.427500px;}
.x51{left:697.630500px;}
.x41{left:703.248000px;}
.x9b{left:705.370500px;}
.xa4{left:707.817000px;}
.x9c{left:709.155000px;}
.xb2{left:712.555500px;}
.x52{left:714.082500px;}
.x16{left:717.858000px;}
.x42{left:719.266500px;}
.x9d{left:724.099500px;}
.x17{left:725.329500px;}
.x9e{left:727.884000px;}
.x18{left:729.099000px;}
.x8c{left:735.108000px;}
.x19{left:736.570500px;}
.xbc{left:738.513000px;}
.x53{left:740.757000px;}
.x9f{left:742.828500px;}
.x43{left:744.895500px;}
.x54{left:747.183000px;}
.x44{left:751.321500px;}
.x6b{left:757.999500px;}
.x6c{left:761.710500px;}
.xb7{left:763.057500px;}
.xb5{left:764.134500px;}
.xbd{left:765.412500px;}
.xe{left:767.410500px;}
.xf{left:774.883500px;}
.x6d{left:776.653500px;}
.xb8{left:782.497500px;}
.x28{left:785.046000px;}
.xbe{left:788.884500px;}
.xba{left:789.906000px;}
.x8a{left:791.478000px;}
.x29{left:792.517500px;}
.xc0{left:794.809500px;}
.x2a{left:796.327500px;}
.x6a{left:799.813500px;}
.x8b{left:801.318000px;}
.xa2{left:803.685000px;}
.xb9{left:809.395500px;}
.x2b{left:811.272000px;}
.xa3{left:813.610500px;}
.xbf{left:815.784000px;}
.xbb{left:816.805500px;}
.x2c{left:818.893500px;}
.x77{left:822.043500px;}
.xb6{left:823.860000px;}
.x3c{left:825.169500px;}
.x3d{left:832.642500px;}
.x2d{left:833.838000px;}
.x78{left:837.811500px;}
@media print{
.v4{vertical-align:-6.752000pt;}
.v2{vertical-align:-4.709333pt;}
.v7{vertical-align:-1.680000pt;}
.v0{vertical-align:0.000000pt;}
.v8{vertical-align:1.680000pt;}
.v9{vertical-align:13.440000pt;}
.v6{vertical-align:17.360000pt;}
.v1{vertical-align:19.290667pt;}
.v3{vertical-align:35.685333pt;}
.v5{vertical-align:43.653333pt;}
.ls30{letter-spacing:-0.240000pt;}
.ls35{letter-spacing:-0.195733pt;}
.ls32{letter-spacing:-0.160000pt;}
.ls2c{letter-spacing:-0.080000pt;}
.ls2e{letter-spacing:-0.047360pt;}
.lsb{letter-spacing:0.000000pt;}
.ls39{letter-spacing:0.000015pt;}
.ls4d{letter-spacing:0.000298pt;}
.ls2{letter-spacing:0.000533pt;}
.ls2a{letter-spacing:0.000540pt;}
.ls50{letter-spacing:0.000600pt;}
.ls7{letter-spacing:0.000857pt;}
.ls53{letter-spacing:0.000998pt;}
.ls4b{letter-spacing:0.001026pt;}
.ls52{letter-spacing:0.001372pt;}
.ls4f{letter-spacing:0.001512pt;}
.ls38{letter-spacing:0.002240pt;}
.ls4e{letter-spacing:0.002439pt;}
.ls44{letter-spacing:0.002471pt;}
.ls3{letter-spacing:0.002770pt;}
.ls4a{letter-spacing:0.003261pt;}
.ls54{letter-spacing:0.003525pt;}
.ls3a{letter-spacing:0.003733pt;}
.ls48{letter-spacing:0.004221pt;}
.ls4c{letter-spacing:0.004267pt;}
.ls34{letter-spacing:0.016000pt;}
.ls2f{letter-spacing:0.017920pt;}
.ls33{letter-spacing:0.038400pt;}
.ls2d{letter-spacing:0.047360pt;}
.ls22{letter-spacing:0.106667pt;}
.ls21{letter-spacing:0.124480pt;}
.ls31{letter-spacing:0.129067pt;}
.ls20{letter-spacing:0.160000pt;}
.ls25{letter-spacing:0.447791pt;}
.ls27{letter-spacing:0.482502pt;}
.ls1e{letter-spacing:0.487835pt;}
.lsc{letter-spacing:1.133683pt;}
.ls0{letter-spacing:1.654338pt;}
.ls24{letter-spacing:3.600000pt;}
.ls23{letter-spacing:5.840000pt;}
.ls1{letter-spacing:9.298933pt;}
.ls6{letter-spacing:10.620212pt;}
.lsa{letter-spacing:10.626533pt;}
.ls19{letter-spacing:10.629067pt;}
.ls4{letter-spacing:10.844493pt;}
.ls3c{letter-spacing:11.697012pt;}
.ls55{letter-spacing:11.766036pt;}
.ls18{letter-spacing:11.774494pt;}
.ls46{letter-spacing:11.849807pt;}
.ls43{letter-spacing:11.860347pt;}
.ls41{letter-spacing:11.885754pt;}
.ls8{letter-spacing:11.937295pt;}
.ls3f{letter-spacing:11.954133pt;}
.ls26{letter-spacing:11.955200pt;}
.ls40{letter-spacing:11.959467pt;}
.ls3d{letter-spacing:12.004680pt;}
.ls42{letter-spacing:12.039434pt;}
.ls47{letter-spacing:12.077453pt;}
.ls14{letter-spacing:12.528078pt;}
.ls12{letter-spacing:12.533411pt;}
.ls9{letter-spacing:12.628162pt;}
.lse{letter-spacing:13.016972pt;}
.lsf{letter-spacing:13.017797pt;}
.ls1d{letter-spacing:13.022206pt;}
.ls10{letter-spacing:13.034900pt;}
.ls45{letter-spacing:13.111467pt;}
.ls36{letter-spacing:13.230333pt;}
.ls3e{letter-spacing:13.252643pt;}
.ls1c{letter-spacing:13.438295pt;}
.ls1f{letter-spacing:13.442868pt;}
.ls1b{letter-spacing:13.443524pt;}
.ls1a{letter-spacing:13.470930pt;}
.ls3b{letter-spacing:13.538865pt;}
.ls51{letter-spacing:13.744146pt;}
.ls56{letter-spacing:14.267022pt;}
.ls2b{letter-spacing:14.531106pt;}
.ls29{letter-spacing:14.708884pt;}
.ls49{letter-spacing:14.753297pt;}
.ls28{letter-spacing:14.930617pt;}
.ls11{letter-spacing:18.034374pt;}
.ls5{letter-spacing:25.292137pt;}
.lsd{letter-spacing:67.990400pt;}
.ls15{letter-spacing:410.247939pt;}
.ls17{letter-spacing:434.157273pt;}
.ls16{letter-spacing:434.160533pt;}
.ls13{letter-spacing:435.147200pt;}
.ls37{letter-spacing:754.746667pt;}
.ws5f{word-spacing:-53.440000pt;}
.ws0{word-spacing:-33.970480pt;}
.ws83{word-spacing:-13.520000pt;}
.ws63{word-spacing:-13.489067pt;}
.ws5e{word-spacing:-13.407360pt;}
.ws84{word-spacing:-13.362240pt;}
.ws60{word-spacing:-13.360000pt;}
.ws61{word-spacing:-13.312640pt;}
.ws55{word-spacing:-13.283467pt;}
.ws65{word-spacing:-13.200000pt;}
.ws70{word-spacing:-13.164267pt;}
.ws85{word-spacing:-12.000000pt;}
.ws86{word-spacing:-11.955200pt;}
.ws2a{word-spacing:-10.626800pt;}
.ws24{word-spacing:-10.095467pt;}
.ws6{word-spacing:-9.298400pt;}
.ws62{word-spacing:-8.000000pt;}
.ws64{word-spacing:-7.360000pt;}
.ws8f{word-spacing:-5.153985pt;}
.ws52{word-spacing:-2.869229pt;}
.ws8b{word-spacing:-2.656693pt;}
.ws7b{word-spacing:-2.125355pt;}
.ws40{word-spacing:-1.912832pt;}
.ws97{word-spacing:-1.817190pt;}
.ws68{word-spacing:-1.806551pt;}
.ws71{word-spacing:-1.769370pt;}
.ws6f{word-spacing:-1.753418pt;}
.ws41{word-spacing:-1.721549pt;}
.ws3{word-spacing:-1.696326pt;}
.ws76{word-spacing:-1.594016pt;}
.ws72{word-spacing:-1.578086pt;}
.ws17{word-spacing:-1.338982pt;}
.ws79{word-spacing:-1.275213pt;}
.ws2{word-spacing:-1.175671pt;}
.ws6b{word-spacing:-1.168945pt;}
.ws7d{word-spacing:-1.009543pt;}
.wsad{word-spacing:-0.956416pt;}
.ws74{word-spacing:-0.956410pt;}
.ws3d{word-spacing:-0.903276pt;}
.ws58{word-spacing:-0.797008pt;}
.ws3c{word-spacing:-0.743874pt;}
.wsaa{word-spacing:-0.717312pt;}
.ws7c{word-spacing:-0.690740pt;}
.wsab{word-spacing:-0.669491pt;}
.ws35{word-spacing:-0.531339pt;}
.wsac{word-spacing:-0.526029pt;}
.ws5a{word-spacing:-0.478205pt;}
.ws5b{word-spacing:-0.425071pt;}
.ws2f{word-spacing:-0.371937pt;}
.ws59{word-spacing:-0.318803pt;}
.ws1f{word-spacing:-0.265669pt;}
.wsb1{word-spacing:-0.239104pt;}
.ws22{word-spacing:-0.212535pt;}
.wsa1{word-spacing:-0.191283pt;}
.ws23{word-spacing:-0.159402pt;}
.ws14{word-spacing:-0.143462pt;}
.ws26{word-spacing:-0.106268pt;}
.ws15{word-spacing:-0.095642pt;}
.ws1d{word-spacing:-0.053134pt;}
.ws66{word-spacing:-0.047821pt;}
.ws7{word-spacing:-0.037194pt;}
.wsb3{word-spacing:-0.021581pt;}
.wsa9{word-spacing:-0.004582pt;}
.ws46{word-spacing:-0.004267pt;}
.ws29{word-spacing:-0.001935pt;}
.ws1{word-spacing:0.000000pt;}
.ws5{word-spacing:0.000713pt;}
.ws48{word-spacing:0.001067pt;}
.ws67{word-spacing:0.047821pt;}
.ws21{word-spacing:0.053134pt;}
.ws94{word-spacing:0.095642pt;}
.ws2d{word-spacing:0.106268pt;}
.ws1a{word-spacing:0.143462pt;}
.ws25{word-spacing:0.159402pt;}
.ws8{word-spacing:0.185968pt;}
.ws42{word-spacing:0.191283pt;}
.ws12{word-spacing:0.212536pt;}
.wsa3{word-spacing:0.234552pt;}
.ws18{word-spacing:0.239104pt;}
.wsa{word-spacing:0.260355pt;}
.ws5d{word-spacing:0.265669pt;}
.ws30{word-spacing:0.318803pt;}
.ws8a{word-spacing:0.371937pt;}
.ws82{word-spacing:0.478205pt;}
.ws20{word-spacing:0.584473pt;}
.ws4a{word-spacing:0.597333pt;}
.ws47{word-spacing:0.598400pt;}
.ws4b{word-spacing:0.602138pt;}
.ws45{word-spacing:0.602880pt;}
.ws6d{word-spacing:0.637606pt;}
.ws19{word-spacing:0.669491pt;}
.ws93{word-spacing:0.743874pt;}
.ws57{word-spacing:0.797008pt;}
.ws95{word-spacing:0.812954pt;}
.ws33{word-spacing:0.850142pt;}
.wsa0{word-spacing:0.860774pt;}
.ws34{word-spacing:0.903276pt;}
.ws9a{word-spacing:0.956416pt;}
.ws99{word-spacing:1.004237pt;}
.ws78{word-spacing:1.062677pt;}
.ws89{word-spacing:1.115811pt;}
.ws4f{word-spacing:1.147694pt;}
.ws3b{word-spacing:1.222079pt;}
.ws6c{word-spacing:1.275213pt;}
.ws9b{word-spacing:1.291162pt;}
.ws54{word-spacing:1.381481pt;}
.wsaf{word-spacing:1.386803pt;}
.ws51{word-spacing:1.434614pt;}
.ws3a{word-spacing:1.487748pt;}
.ws8e{word-spacing:1.540882pt;}
.ws6a{word-spacing:1.647150pt;}
.ws77{word-spacing:1.753418pt;}
.wsb0{word-spacing:1.769370pt;}
.ws9{word-spacing:1.785293pt;}
.wsb4{word-spacing:1.817190pt;}
.ws8c{word-spacing:1.912819pt;}
.ws73{word-spacing:2.019087pt;}
.ws27{word-spacing:2.125355pt;}
.ws1e{word-spacing:2.178489pt;}
.ws1b{word-spacing:2.199757pt;}
.ws9c{word-spacing:2.247578pt;}
.ws3e{word-spacing:2.284756pt;}
.wsb6{word-spacing:2.295398pt;}
.ws56{word-spacing:2.497292pt;}
.ws13{word-spacing:2.550432pt;}
.ws91{word-spacing:2.656693pt;}
.ws88{word-spacing:2.762961pt;}
.ws9f{word-spacing:2.821427pt;}
.ws96{word-spacing:2.864512pt;}
.wsa4{word-spacing:2.865067pt;}
.wsa8{word-spacing:2.865621pt;}
.ws9e{word-spacing:2.869248pt;}
.ws81{word-spacing:2.922363pt;}
.wsa6{word-spacing:2.964890pt;}
.ws31{word-spacing:2.975497pt;}
.ws75{word-spacing:3.028630pt;}
.wsa7{word-spacing:3.060531pt;}
.ws53{word-spacing:3.081764pt;}
.wsa2{word-spacing:3.108352pt;}
.wsae{word-spacing:3.156173pt;}
.ws1c{word-spacing:3.188032pt;}
.ws16{word-spacing:3.586560pt;}
.ws5c{word-spacing:3.613103pt;}
.ws7f{word-spacing:3.719371pt;}
.ws2b{word-spacing:3.878772pt;}
.ws90{word-spacing:3.985040pt;}
.ws80{word-spacing:4.144442pt;}
.wsb2{word-spacing:4.590797pt;}
.ws2c{word-spacing:4.675780pt;}
.ws3f{word-spacing:4.728914pt;}
.ws28{word-spacing:4.941450pt;}
.ws32{word-spacing:5.100851pt;}
.ws9d{word-spacing:5.164646pt;}
.ws50{word-spacing:5.207119pt;}
.ws98{word-spacing:5.260288pt;}
.ws87{word-spacing:5.366521pt;}
.ws10{word-spacing:5.393072pt;}
.ws11{word-spacing:5.467459pt;}
.ws6e{word-spacing:5.579056pt;}
.ws69{word-spacing:5.791591pt;}
.ws92{word-spacing:6.110395pt;}
.ws7a{word-spacing:6.482332pt;}
.ws2e{word-spacing:6.535466pt;}
.ws7e{word-spacing:7.119938pt;}
.wse{word-spacing:7.699075pt;}
.wsb5{word-spacing:8.703386pt;}
.ws8d{word-spacing:9.457828pt;}
.wsa5{word-spacing:9.898906pt;}
.ws4{word-spacing:13.763148pt;}
.wsb{word-spacing:14.348669pt;}
.wsc{word-spacing:14.356730pt;}
.wsd{word-spacing:15.732893pt;}
.wsf{word-spacing:24.399002pt;}
.ws37{word-spacing:72.414134pt;}
.ws39{word-spacing:90.200278pt;}
.ws38{word-spacing:103.164974pt;}
.ws4e{word-spacing:509.000943pt;}
.ws36{word-spacing:509.758101pt;}
.ws49{word-spacing:515.888000pt;}
.ws4c{word-spacing:517.274940pt;}
.ws4d{word-spacing:524.023339pt;}
.ws44{word-spacing:539.322982pt;}
.ws43{word-spacing:802.982656pt;}
._2d{margin-left:-12.639351pt;}
._0{margin-left:-10.616218pt;}
._2e{margin-left:-6.926847pt;}
._c{margin-left:-6.025421pt;}
._9{margin-left:-4.755855pt;}
._4{margin-left:-3.421811pt;}
._23{margin-left:-2.069457pt;}
._2{margin-left:-1.175671pt;}
._3{width:0.969929pt;}
._7{width:2.045648pt;}
._26{width:3.038718pt;}
._25{width:4.168320pt;}
._27{width:5.076800pt;}
._28{width:6.252480pt;}
._22{width:7.535040pt;}
._24{width:8.724907pt;}
._2c{width:9.939840pt;}
._5{width:11.527947pt;}
._10{width:13.181232pt;}
._a{width:14.151823pt;}
._13{width:15.541845pt;}
._d{width:16.471499pt;}
._e{width:18.171782pt;}
._2f{width:19.659531pt;}
._1c{width:20.615940pt;}
._2a{width:21.784885pt;}
._6{width:23.062165pt;}
._20{width:24.707248pt;}
._b{width:26.062336pt;}
._8{width:29.011008pt;}
._1d{width:30.598893pt;}
._f{width:31.720918pt;}
._29{width:34.271344pt;}
._2b{width:38.309518pt;}
._30{width:54.993920pt;}
._1{width:61.658926pt;}
._14{width:88.362676pt;}
._16{width:92.113102pt;}
._1b{width:179.337877pt;}
._17{width:259.421442pt;}
._18{width:287.008614pt;}
._1a{width:326.625325pt;}
._19{width:327.688005pt;}
._15{width:497.686172pt;}
._1e{width:530.428314pt;}
._1f{width:543.435571pt;}
._11{width:1050.862998pt;}
._21{width:2028.757751pt;}
._12{width:2413.725867pt;}
.fs13{font-size:29.440000pt;}
.fsa{font-size:31.880533pt;}
.fs11{font-size:32.000000pt;}
.fs6{font-size:37.193600pt;}
.fs5{font-size:37.276537pt;}
.fs14{font-size:38.755733pt;}
.fs9{font-size:40.381867pt;}
.fs4{font-size:41.988267pt;}
.fse{font-size:42.077867pt;}
.fs7{font-size:42.507200pt;}
.fsf{font-size:42.560000pt;}
.fsd{font-size:44.292800pt;}
.fs8{font-size:47.820800pt;}
.fs12{font-size:48.000000pt;}
.fsc{font-size:49.829333pt;}
.fs2{font-size:53.133867pt;}
.fs10{font-size:53.440000pt;}
.fsb{font-size:55.365867pt;}
.fs0{font-size:71.338101pt;}
.fs3{font-size:95.641600pt;}
.fs1{font-size:135.881922pt;}
.yf8{bottom:-452.198667pt;}
.y113{bottom:-373.318667pt;}
.y112{bottom:-356.198667pt;}
.y111{bottom:-339.158667pt;}
.y110{bottom:-322.038667pt;}
.y10f{bottom:-304.918667pt;}
.y10e{bottom:-287.852000pt;}
.yc6{bottom:-272.766667pt;}
.y10d{bottom:-270.732000pt;}
.y10c{bottom:-253.612000pt;}
.y10b{bottom:-232.492000pt;}
.ye4{bottom:-208.366667pt;}
.y10a{bottom:-199.452000pt;}
.ye3{bottom:-191.246667pt;}
.y109{bottom:-182.412000pt;}
.ye2{bottom:-174.126667pt;}
.y108{bottom:-165.292000pt;}
.ye1{bottom:-157.086667pt;}
.y107{bottom:-148.172000pt;}
.ye0{bottom:-139.966667pt;}
.y106{bottom:-131.132000pt;}
.y14a{bottom:-123.356000pt;}
.ydf{bottom:-122.926667pt;}
.y105{bottom:-114.012000pt;}
.yde{bottom:-105.780000pt;}
.y104{bottom:-96.972000pt;}
.ydd{bottom:-88.660000pt;}
.y103{bottom:-79.852000pt;}
.ydc{bottom:-71.620000pt;}
.y16c{bottom:-66.156000pt;}
.y102{bottom:-62.732000pt;}
.ydb{bottom:-38.900000pt;}
.y16b{bottom:-30.796000pt;}
.y101{bottom:-30.092000pt;}
.yda{bottom:-23.460000pt;}
.y16a{bottom:-15.436000pt;}
.y100{bottom:-14.652000pt;}
.yd9{bottom:-3.540000pt;}
.y0{bottom:0.000000pt;}
.yb{bottom:3.044747pt;}
.y169{bottom:4.484000pt;}
.yff{bottom:5.268000pt;}
.ya{bottom:12.578910pt;}
.y3{bottom:14.684153pt;}
.y2{bottom:23.345828pt;}
.y4a{bottom:28.346667pt;}
.yb3{bottom:79.105333pt;}
.y176{bottom:84.622667pt;}
.yf4{bottom:89.349333pt;}
.y22{bottom:91.398667pt;}
.y1a6{bottom:92.848000pt;}
.y1d6{bottom:94.004000pt;}
.y49{bottom:95.676000pt;}
.yb2{bottom:95.842667pt;}
.y174{bottom:101.360000pt;}
.yf3{bottom:106.086667pt;}
.y175{bottom:106.181333pt;}
.y21{bottom:107.298667pt;}
.y1d5{bottom:109.346667pt;}
.y1a5{bottom:109.585333pt;}
.y82{bottom:109.586667pt;}
.y48{bottom:112.413333pt;}
.yb1{bottom:112.580000pt;}
.y12a{bottom:117.677333pt;}
.y173{bottom:118.097333pt;}
.yf2{bottom:122.824000pt;}
.y20{bottom:123.200000pt;}
.y1d4{bottom:124.689333pt;}
.y1a4{bottom:126.322667pt;}
.y81{bottom:126.324000pt;}
.y47{bottom:129.150667pt;}
.yb0{bottom:129.317333pt;}
.y129{bottom:134.414667pt;}
.y171{bottom:134.834667pt;}
.y1f{bottom:139.100000pt;}
.yf1{bottom:139.561333pt;}
.y172{bottom:139.656000pt;}
.y1d3{bottom:140.030667pt;}
.y7f{bottom:143.061333pt;}
.y46{bottom:145.888000pt;}
.yaf{bottom:146.054667pt;}
.y1a3{bottom:147.045333pt;}
.y80{bottom:147.882667pt;}
.y128{bottom:151.152000pt;}
.y170{bottom:151.572000pt;}
.y1e{bottom:155.000000pt;}
.y1d2{bottom:155.373333pt;}
.yf0{bottom:156.297333pt;}
.y7d{bottom:159.798667pt;}
.y45{bottom:162.625333pt;}
.yae{bottom:162.792000pt;}
.y7e{bottom:164.620000pt;}
.y127{bottom:167.889333pt;}
.y1d1{bottom:170.716000pt;}
.y1d{bottom:170.901333pt;}
.y16f{bottom:172.294667pt;}
.yef{bottom:173.034667pt;}
.y7b{bottom:176.536000pt;}
.y1a2{bottom:176.933333pt;}
.y44{bottom:179.362667pt;}
.yad{bottom:179.529333pt;}
.y7c{bottom:181.357333pt;}
.y126{bottom:184.626667pt;}
.y1d0{bottom:186.058667pt;}
.y1c{bottom:186.801333pt;}
.yee{bottom:189.772000pt;}
.y79{bottom:193.273333pt;}
.y1a0{bottom:193.670667pt;}
.y43{bottom:196.100000pt;}
.yac{bottom:196.266667pt;}
.y7a{bottom:198.094667pt;}
.y1a1{bottom:198.492000pt;}
.y16e{bottom:199.341333pt;}
.y125{bottom:201.364000pt;}
.y1cf{bottom:201.401333pt;}
.y1b{bottom:202.701333pt;}
.yed{bottom:206.509333pt;}
.y77{bottom:210.010667pt;}
.y19f{bottom:210.408000pt;}
.y42{bottom:212.837333pt;}
.yab{bottom:213.004000pt;}
.y78{bottom:214.832000pt;}
.y16d{bottom:216.437333pt;}
.y1ce{bottom:216.744000pt;}
.y124{bottom:218.101333pt;}
.yeb{bottom:223.246667pt;}
.y19e{bottom:227.145333pt;}
.yec{bottom:228.069333pt;}
.y41{bottom:229.574667pt;}
.yaa{bottom:229.741333pt;}
.y76{bottom:230.732000pt;}
.y1cd{bottom:232.086667pt;}
.y123{bottom:234.838667pt;}
.y147{bottom:236.373333pt;}
.yea{bottom:239.984000pt;}
.y19d{bottom:243.881333pt;}
.y40{bottom:246.312000pt;}
.ya9{bottom:246.478667pt;}
.y1cc{bottom:247.429333pt;}
.y122{bottom:251.576000pt;}
.ye9{bottom:256.721333pt;}
.y75{bottom:258.304000pt;}
.y19b{bottom:260.618667pt;}
.y206{bottom:260.818667pt;}
.y1cb{bottom:262.772000pt;}
.y3f{bottom:263.049333pt;}
.ya8{bottom:263.216000pt;}
.y19c{bottom:265.441333pt;}
.y121{bottom:268.313333pt;}
.y1a{bottom:273.154667pt;}
.ye8{bottom:273.458667pt;}
.y74{bottom:274.456000pt;}
.y205{bottom:276.161333pt;}
.y199{bottom:277.356000pt;}
.y1ca{bottom:278.113333pt;}
.y3e{bottom:279.786667pt;}
.ya7{bottom:279.953333pt;}
.y19a{bottom:282.178667pt;}
.y120{bottom:285.050667pt;}
.y73{bottom:287.074667pt;}
.y19{bottom:289.054667pt;}
.y204{bottom:291.502667pt;}
.y1c9{bottom:293.456000pt;}
.y198{bottom:294.093333pt;}
.y3d{bottom:296.524000pt;}
.ya6{bottom:300.674667pt;}
.ye7{bottom:303.294667pt;}
.y18{bottom:304.954667pt;}
.y11f{bottom:305.773333pt;}
.y72{bottom:306.096000pt;}
.y203{bottom:306.845333pt;}
.y1c8{bottom:308.798667pt;}
.y197{bottom:310.830667pt;}
.y3c{bottom:313.261333pt;}
.y71{bottom:316.197333pt;}
.y168{bottom:316.590667pt;}
.ye5{bottom:320.390667pt;}
.y17{bottom:320.856000pt;}
.y202{bottom:322.188000pt;}
.y1c7{bottom:324.141333pt;}
.ye6{bottom:324.730667pt;}
.y196{bottom:327.568000pt;}
.y3b{bottom:329.998667pt;}
.ya5{bottom:330.562667pt;}
.y167{bottom:333.710667pt;}
.y11e{bottom:335.661333pt;}
.y201{bottom:337.530667pt;}
.y1c6{bottom:339.484000pt;}
.yc3{bottom:340.328000pt;}
.y194{bottom:344.305333pt;}
.y3a{bottom:346.736000pt;}
.ya4{bottom:347.300000pt;}
.y195{bottom:349.128000pt;}
.y166{bottom:350.750667pt;}
.y70{bottom:351.829333pt;}
.y11d{bottom:352.398667pt;}
.y200{bottom:352.873333pt;}
.y16{bottom:354.688000pt;}
.y1c5{bottom:354.826667pt;}
.y193{bottom:361.042667pt;}
.y39{bottom:363.473333pt;}
.ya3{bottom:364.037333pt;}
.y165{bottom:367.870667pt;}
.y1ff{bottom:368.216000pt;}
.y11c{bottom:369.134667pt;}
.y1c4{bottom:370.169333pt;}
.y15{bottom:370.589333pt;}
.yd8{bottom:372.246667pt;}
.y192{bottom:377.780000pt;}
.y38{bottom:380.210667pt;}
.ya2{bottom:380.774667pt;}
.y6f{bottom:381.350667pt;}
.y1fe{bottom:383.558667pt;}
.y164{bottom:384.990667pt;}
.y1c3{bottom:385.512000pt;}
.y11b{bottom:385.872000pt;}
.y14{bottom:386.489333pt;}
.yd7{bottom:389.366667pt;}
.y191{bottom:394.517333pt;}
.y37{bottom:396.948000pt;}
.ya1{bottom:397.512000pt;}
.y6e{bottom:398.088000pt;}
.y1fd{bottom:398.901333pt;}
.y1c2{bottom:400.853333pt;}
.y163{bottom:402.030667pt;}
.y11a{bottom:402.609333pt;}
.yd6{bottom:406.486667pt;}
.y190{bottom:411.254667pt;}
.y1fc{bottom:414.244000pt;}
.ya0{bottom:414.249333pt;}
.y6d{bottom:414.825333pt;}
.y1c1{bottom:416.196000pt;}
.y36{bottom:417.669333pt;}
.y13{bottom:418.330667pt;}
.y162{bottom:419.177333pt;}
.y119{bottom:419.346667pt;}
.yfe{bottom:421.934667pt;}
.yd5{bottom:423.526667pt;}
.y18f{bottom:427.992000pt;}
.y1fb{bottom:429.585333pt;}
.y9f{bottom:430.986667pt;}
.y1c0{bottom:431.538667pt;}
.y6c{bottom:435.548000pt;}
.y118{bottom:436.084000pt;}
.y161{bottom:436.217333pt;}
.yfd{bottom:438.974667pt;}
.yd4{bottom:440.646667pt;}
.y18e{bottom:444.729333pt;}
.y1fa{bottom:444.928000pt;}
.y1bf{bottom:446.881333pt;}
.y9e{bottom:447.724000pt;}
.y12{bottom:450.170667pt;}
.y117{bottom:452.821333pt;}
.y160{bottom:453.337333pt;}
.yfc{bottom:456.094667pt;}
.yd3{bottom:457.686667pt;}
.y1f9{bottom:460.270667pt;}
.y1be{bottom:462.224000pt;}
.y6b{bottom:465.436000pt;}
.y18d{bottom:465.452000pt;}
.y11{bottom:466.070667pt;}
.y9d{bottom:468.446667pt;}
.y116{bottom:469.558667pt;}
.y15f{bottom:470.457333pt;}
.yfb{bottom:473.241333pt;}
.yd2{bottom:474.806667pt;}
.y1f8{bottom:475.613333pt;}
.y1bd{bottom:477.566667pt;}
.y10{bottom:481.972000pt;}
.y6a{bottom:482.173333pt;}
.y35{bottom:484.470667pt;}
.y15e{bottom:487.497333pt;}
.yfa{bottom:490.281333pt;}
.y1f7{bottom:490.956000pt;}
.yd1{bottom:491.926667pt;}
.y1bc{bottom:492.909333pt;}
.y18c{bottom:495.340000pt;}
.yf{bottom:497.872000pt;}
.y9c{bottom:498.334667pt;}
.y69{bottom:498.910667pt;}
.y115{bottom:499.394667pt;}
.y34{bottom:501.765333pt;}
.y15d{bottom:504.617333pt;}
.y1f6{bottom:506.298667pt;}
.yf9{bottom:507.401333pt;}
.y1bb{bottom:508.252000pt;}
.yd0{bottom:508.966667pt;}
.y18b{bottom:512.077333pt;}
.ye{bottom:513.772000pt;}
.y9b{bottom:515.072000pt;}
.y68{bottom:515.648000pt;}
.y114{bottom:516.490667pt;}
.y1f5{bottom:521.641333pt;}
.y15c{bottom:521.657333pt;}
.y1ba{bottom:523.594667pt;}
.ycf{bottom:526.086667pt;}
.y18a{bottom:528.814667pt;}
.yd{bottom:529.673333pt;}
.y9a{bottom:531.809333pt;}
.y67{bottom:532.384000pt;}
.y33{bottom:535.000000pt;}
.yf5{bottom:536.428000pt;}
.y1f4{bottom:536.984000pt;}
.y15b{bottom:538.777333pt;}
.y1b9{bottom:538.936000pt;}
.yce{bottom:543.206667pt;}
.y189{bottom:545.552000pt;}
.yc{bottom:545.573333pt;}
.y66{bottom:549.121333pt;}
.y32{bottom:552.296000pt;}
.y1f3{bottom:552.325333pt;}
.y1b8{bottom:554.278667pt;}
.yf7{bottom:555.881333pt;}
.y15a{bottom:555.897333pt;}
.y146{bottom:558.304000pt;}
.y99{bottom:559.106667pt;}
.ycd{bottom:560.246667pt;}
.y188{bottom:562.289333pt;}
.yf6{bottom:564.601333pt;}
.y9{bottom:565.458715pt;}
.y65{bottom:565.858667pt;}
.y1f2{bottom:567.668000pt;}
.y31{bottom:569.590667pt;}
.y1b7{bottom:569.621333pt;}
.y98{bottom:571.725333pt;}
.y159{bottom:572.937333pt;}
.y145{bottom:575.041333pt;}
.y187{bottom:579.026667pt;}
.ycc{bottom:581.366667pt;}
.y64{bottom:582.596000pt;}
.y1f1{bottom:583.010667pt;}
.y1b6{bottom:584.964000pt;}
.y30{bottom:586.886667pt;}
.y97{bottom:588.894667pt;}
.y158{bottom:590.057333pt;}
.y144{bottom:591.778667pt;}
.y186{bottom:595.764000pt;}
.y1f0{bottom:598.353333pt;}
.y63{bottom:599.333333pt;}
.y1b5{bottom:600.306667pt;}
.ycb{bottom:602.406667pt;}
.y2f{bottom:604.181333pt;}
.y96{bottom:604.345333pt;}
.y157{bottom:607.097333pt;}
.y142{bottom:608.516000pt;}
.y185{bottom:612.501333pt;}
.y143{bottom:613.337333pt;}
.y1ef{bottom:613.696000pt;}
.y1b4{bottom:615.649333pt;}
.y62{bottom:616.070667pt;}
.y2e{bottom:621.476000pt;}
.y156{bottom:624.217333pt;}
.y141{bottom:625.253333pt;}
.y95{bottom:626.198667pt;}
.y1ee{bottom:629.038667pt;}
.y183{bottom:629.237333pt;}
.y61{bottom:632.808000pt;}
.y184{bottom:634.060000pt;}
.y1b3{bottom:634.977333pt;}
.yca{bottom:635.526667pt;}
.y2d{bottom:638.772000pt;}
.y155{bottom:641.337333pt;}
.y94{bottom:641.649333pt;}
.y140{bottom:641.990667pt;}
.y1ed{bottom:644.381333pt;}
.y60{bottom:649.545333pt;}
.y182{bottom:649.960000pt;}
.yc9{bottom:652.673333pt;}
.y2c{bottom:656.066667pt;}
.y93{bottom:657.100000pt;}
.y154{bottom:658.377333pt;}
.y13f{bottom:658.726667pt;}
.y1ec{bottom:659.724000pt;}
.y1b2{bottom:664.864000pt;}
.y5f{bottom:666.282667pt;}
.yc8{bottom:669.713333pt;}
.y2b{bottom:673.361333pt;}
.y1eb{bottom:675.066667pt;}
.y13e{bottom:675.464000pt;}
.y153{bottom:675.497333pt;}
.y92{bottom:678.533333pt;}
.y181{bottom:679.848000pt;}
.y1b1{bottom:680.486667pt;}
.y5e{bottom:683.020000pt;}
.yc7{bottom:686.833333pt;}
.y1ea{bottom:690.408000pt;}
.y2a{bottom:690.657333pt;}
.y13d{bottom:692.201333pt;}
.y152{bottom:692.617333pt;}
.y1b0{bottom:696.108000pt;}
.y180{bottom:696.585333pt;}
.y91{bottom:699.546667pt;}
.y5d{bottom:699.757333pt;}
.y1e9{bottom:705.750667pt;}
.y29{bottom:707.952000pt;}
.y13c{bottom:708.938667pt;}
.y90{bottom:709.648000pt;}
.y151{bottom:709.657333pt;}
.yc2{bottom:712.525333pt;}
.y17f{bottom:713.322667pt;}
.y5c{bottom:716.494667pt;}
.y1af{bottom:719.698667pt;}
.y1e8{bottom:721.093333pt;}
.y28{bottom:725.248000pt;}
.y13b{bottom:725.676000pt;}
.y150{bottom:726.777333pt;}
.yc1{bottom:729.262667pt;}
.y17e{bottom:730.060000pt;}
.y5b{bottom:733.232000pt;}
.yc5{bottom:735.313333pt;}
.y1e7{bottom:736.436000pt;}
.y13a{bottom:742.413333pt;}
.y27{bottom:742.542667pt;}
.y1ae{bottom:743.290667pt;}
.yc4{bottom:744.033333pt;}
.yc0{bottom:746.000000pt;}
.y14f{bottom:747.817333pt;}
.y8f{bottom:748.666667pt;}
.y5a{bottom:749.969333pt;}
.y17d{bottom:750.782667pt;}
.y1e6{bottom:751.778667pt;}
.y139{bottom:759.150667pt;}
.y26{bottom:759.837333pt;}
.ybf{bottom:762.737333pt;}
.y8e{bottom:765.762667pt;}
.y59{bottom:766.706667pt;}
.y1ad{bottom:766.882667pt;}
.y1e5{bottom:767.121333pt;}
.y14e{bottom:769.017333pt;}
.y138{bottom:775.888000pt;}
.ybe{bottom:779.474667pt;}
.y17c{bottom:780.670667pt;}
.y1e4{bottom:782.464000pt;}
.y8d{bottom:782.858667pt;}
.y58{bottom:783.444000pt;}
.y137{bottom:790.198667pt;}
.y1ac{bottom:790.473333pt;}
.y136{bottom:792.625333pt;}
.y25{bottom:794.136000pt;}
.ybd{bottom:796.212000pt;}
.y17b{bottom:797.408000pt;}
.y1e3{bottom:797.806667pt;}
.y57{bottom:800.181333pt;}
.y14d{bottom:802.084000pt;}
.y24{bottom:808.482667pt;}
.y135{bottom:809.362667pt;}
.ybb{bottom:812.949333pt;}
.y1e1{bottom:813.148000pt;}
.y1e2{bottom:813.149333pt;}
.y1ab{bottom:814.065333pt;}
.y8c{bottom:814.145333pt;}
.y56{bottom:816.918667pt;}
.ybc{bottom:817.772000pt;}
.y14c{bottom:819.124000pt;}
.y23{bottom:822.828000pt;}
.y134{bottom:826.100000pt;}
.y1e0{bottom:828.490667pt;}
.yba{bottom:829.686667pt;}
.y8b{bottom:830.882667pt;}
.y55{bottom:833.656000pt;}
.y14b{bottom:836.244000pt;}
.y133{bottom:842.837333pt;}
.y1df{bottom:843.833333pt;}
.y1aa{bottom:845.308000pt;}
.yb9{bottom:846.424000pt;}
.y8a{bottom:847.620000pt;}
.y54{bottom:850.393333pt;}
.y132{bottom:857.148000pt;}
.y1de{bottom:859.176000pt;}
.y131{bottom:859.574667pt;}
.y8{bottom:862.413333pt;}
.yb8{bottom:863.161333pt;}
.y89{bottom:864.357333pt;}
.y53{bottom:867.130667pt;}
.y1a9{bottom:868.900000pt;}
.y1dd{bottom:874.518667pt;}
.y130{bottom:876.312000pt;}
.yb7{bottom:879.898667pt;}
.y88{bottom:881.094667pt;}
.y52{bottom:883.868000pt;}
.y1a8{bottom:884.521333pt;}
.y149{bottom:884.724000pt;}
.y17a{bottom:885.078667pt;}
.y1dc{bottom:889.861333pt;}
.y12f{bottom:893.049333pt;}
.y148{bottom:893.444000pt;}
.yb5{bottom:896.636000pt;}
.y87{bottom:897.832000pt;}
.y1a7{bottom:900.142667pt;}
.y7{bottom:900.404000pt;}
.y51{bottom:900.605333pt;}
.yb6{bottom:901.457333pt;}
.y1db{bottom:905.204000pt;}
.y12e{bottom:909.786667pt;}
.y86{bottom:914.569333pt;}
.y179{bottom:914.966667pt;}
.y50{bottom:917.342667pt;}
.yb4{bottom:917.358667pt;}
.y1da{bottom:920.546667pt;}
.y6{bottom:925.510667pt;}
.y12d{bottom:926.524000pt;}
.y178{bottom:931.704000pt;}
.y4f{bottom:934.080000pt;}
.y85{bottom:935.290667pt;}
.y1d9{bottom:935.889333pt;}
.y12c{bottom:943.261333pt;}
.y177{bottom:948.441333pt;}
.y5{bottom:950.616000pt;}
.y4e{bottom:950.817333pt;}
.y1d8{bottom:951.230667pt;}
.y12b{bottom:963.984000pt;}
.y84{bottom:965.178667pt;}
.y1d7{bottom:966.573333pt;}
.y4d{bottom:967.554667pt;}
.y4{bottom:975.722667pt;}
.y83{bottom:981.916000pt;}
.y4c{bottom:984.290667pt;}
.y1{bottom:1014.377333pt;}
.y4b{bottom:1043.020000pt;}
.h8{height:22.673858pt;}
.h29{height:25.610524pt;}
.hb{height:27.076941pt;}
.hc{height:27.262909pt;}
.h27{height:28.023859pt;}
.h1a{height:29.397999pt;}
.ha{height:29.433775pt;}
.h1e{height:29.499005pt;}
.h9{height:30.399505pt;}
.h18{height:30.605184pt;}
.hf{height:30.945242pt;}
.h16{height:31.157778pt;}
.h13{height:33.378918pt;}
.hd{height:33.957757pt;}
.h10{height:34.430976pt;}
.h11{height:34.813542pt;}
.h12{height:35.052646pt;}
.h19{height:36.873667pt;}
.h1b{height:37.087439pt;}
.h7{height:38.256384pt;}
.h14{height:38.681455pt;}
.he{height:38.809074pt;}
.h5{height:38.947124pt;}
.h22{height:39.166719pt;}
.h25{height:39.349375pt;}
.h20{height:39.359687pt;}
.h2a{height:43.660390pt;}
.h23{height:44.390625pt;}
.h1d{height:44.436941pt;}
.h2{height:45.231372pt;}
.h3{height:48.367233pt;}
.h26{height:48.511220pt;}
.h15{height:48.688666pt;}
.h21{height:49.421563pt;}
.h17{height:66.290517pt;}
.h6{height:68.861952pt;}
.h1c{height:78.084309pt;}
.h4{height:92.127943pt;}
.h28{height:300.916000pt;}
.h1f{height:351.184000pt;}
.h24{height:407.737333pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w3{width:66.991004pt;}
.w2{width:108.749482pt;}
.w4{width:475.460000pt;}
.w6{width:499.198667pt;}
.w5{width:533.409333pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x7f{left:-176.813333pt;}
.xa5{left:-169.832000pt;}
.x8e{left:-167.737333pt;}
.x80{left:-2.946667pt;}
.x0{left:0.000000pt;}
.xa6{left:4.034667pt;}
.x8f{left:6.129333pt;}
.x3{left:26.021437pt;}
.xa7{left:32.354667pt;}
.x91{left:34.449333pt;}
.x1{left:48.000000pt;}
.x2{left:54.028190pt;}
.x92{left:76.346667pt;}
.x93{left:126.622667pt;}
.x8d{left:130.146667pt;}
.x94{left:203.513333pt;}
.x95{left:211.385333pt;}
.x5{left:222.073333pt;}
.x4{left:223.020000pt;}
.x9{left:230.940000pt;}
.x40{left:237.244000pt;}
.x96{left:238.748000pt;}
.x3f{left:240.490667pt;}
.x69{left:246.268000pt;}
.x97{left:247.494667pt;}
.xb{left:251.365333pt;}
.x45{left:254.260000pt;}
.x55{left:259.889333pt;}
.xad{left:261.898667pt;}
.x62{left:267.538667pt;}
.x46{left:268.502667pt;}
.x56{left:274.125333pt;}
.x6{left:275.100000pt;}
.xb4{left:276.742667pt;}
.x6e{left:278.364000pt;}
.x63{left:279.916000pt;}
.xa{left:285.533333pt;}
.x50{left:288.113333pt;}
.x47{left:292.190667pt;}
.x49{left:296.686667pt;}
.x48{left:298.437333pt;}
.x1e{left:299.581333pt;}
.x65{left:301.566667pt;}
.x57{left:302.757333pt;}
.x66{left:304.156000pt;}
.x89{left:305.754667pt;}
.x4a{left:311.384000pt;}
.x1f{left:312.864000pt;}
.x5b{left:314.317333pt;}
.x20{left:316.145333pt;}
.xb3{left:318.793333pt;}
.x5c{left:327.600000pt;}
.x21{left:329.429333pt;}
.x4b{left:335.094667pt;}
.xaf{left:336.876000pt;}
.x4c{left:340.806667pt;}
.x10{left:346.253333pt;}
.x3e{left:349.018667pt;}
.x11{left:352.894667pt;}
.x2e{left:357.441333pt;}
.xc{left:368.857333pt;}
.x2f{left:370.725333pt;}
.xd{left:375.498667pt;}
.x30{left:377.500000pt;}
.x31{left:390.782667pt;}
.x85{left:394.644000pt;}
.x12{left:396.194667pt;}
.x13{left:402.836000pt;}
.x14{left:406.193333pt;}
.x86{left:407.928000pt;}
.x15{left:412.836000pt;}
.x32{left:419.341333pt;}
.xa0{left:422.264000pt;}
.x72{left:423.624000pt;}
.xa1{left:431.064000pt;}
.x33{left:432.625333pt;}
.x34{left:435.900000pt;}
.x73{left:436.906667pt;}
.xae{left:438.013333pt;}
.x67{left:438.960000pt;}
.x74{left:440.188000pt;}
.x35{left:449.182667pt;}
.x68{left:450.704000pt;}
.x75{left:453.472000pt;}
.x22{left:455.808000pt;}
.x76{left:456.753333pt;}
.x81{left:459.352000pt;}
.x23{left:462.449333pt;}
.x5a{left:464.382667pt;}
.x24{left:465.744000pt;}
.x64{left:467.981333pt;}
.x39{left:469.357333pt;}
.x25{left:472.385333pt;}
.x26{left:475.680000pt;}
.x3a{left:479.342667pt;}
.x4d{left:480.246667pt;}
.x27{left:482.321333pt;}
.x3b{left:485.984000pt;}
.x87{left:491.586667pt;}
.x7b{left:492.622667pt;}
.x98{left:494.990667pt;}
.x7c{left:495.970667pt;}
.xa8{left:496.888000pt;}
.xb0{left:498.481333pt;}
.x88{left:500.333333pt;}
.xaa{left:501.265333pt;}
.x4e{left:503.958667pt;}
.x7d{left:509.254667pt;}
.x4f{left:510.205333pt;}
.xb1{left:516.674667pt;}
.x58{left:520.492000pt;}
.x5d{left:521.918667pt;}
.x82{left:528.842667pt;}
.x90{left:529.862667pt;}
.x59{left:534.728000pt;}
.x83{left:537.589333pt;}
.x5e{left:538.550667pt;}
.x6f{left:550.513333pt;}
.x5f{left:551.833333pt;}
.x1a{left:554.238667pt;}
.x60{left:555.181333pt;}
.xa9{left:557.942667pt;}
.x1b{left:560.881333pt;}
.x1c{left:564.268000pt;}
.xab{left:566.798667pt;}
.x61{left:568.464000pt;}
.x1d{left:570.909333pt;}
.x36{left:573.301333pt;}
.x37{left:576.574667pt;}
.x84{left:577.662667pt;}
.xac{left:580.082667pt;}
.x7e{left:581.734667pt;}
.x70{left:585.844000pt;}
.x38{left:589.858667pt;}
.x7{left:597.908000pt;}
.x79{left:599.470667pt;}
.x71{left:602.514667pt;}
.x8{left:605.780000pt;}
.x99{left:610.349333pt;}
.x7a{left:612.754667pt;}
.x9a{left:613.713333pt;}
.x51{left:620.116000pt;}
.x41{left:625.109333pt;}
.x9b{left:626.996000pt;}
.xa4{left:629.170667pt;}
.x9c{left:630.360000pt;}
.xb2{left:633.382667pt;}
.x52{left:634.740000pt;}
.x16{left:638.096000pt;}
.x42{left:639.348000pt;}
.x9d{left:643.644000pt;}
.x17{left:644.737333pt;}
.x9e{left:647.008000pt;}
.x18{left:648.088000pt;}
.x8c{left:653.429333pt;}
.x19{left:654.729333pt;}
.xbc{left:656.456000pt;}
.x53{left:658.450667pt;}
.x9f{left:660.292000pt;}
.x43{left:662.129333pt;}
.x54{left:664.162667pt;}
.x44{left:667.841333pt;}
.x6b{left:673.777333pt;}
.x6c{left:677.076000pt;}
.xb7{left:678.273333pt;}
.xb5{left:679.230667pt;}
.xbd{left:680.366667pt;}
.xe{left:682.142667pt;}
.xf{left:688.785333pt;}
.x6d{left:690.358667pt;}
.xb8{left:695.553333pt;}
.x28{left:697.818667pt;}
.xbe{left:701.230667pt;}
.xba{left:702.138667pt;}
.x8a{left:703.536000pt;}
.x29{left:704.460000pt;}
.xc0{left:706.497333pt;}
.x2a{left:707.846667pt;}
.x6a{left:710.945333pt;}
.x8b{left:712.282667pt;}
.xa2{left:714.386667pt;}
.xb9{left:719.462667pt;}
.x2b{left:721.130667pt;}
.xa3{left:723.209333pt;}
.xbf{left:725.141333pt;}
.xbb{left:726.049333pt;}
.x2c{left:727.905333pt;}
.x77{left:730.705333pt;}
.xb6{left:732.320000pt;}
.x3c{left:733.484000pt;}
.x3d{left:740.126667pt;}
.x2d{left:741.189333pt;}
.x78{left:744.721333pt;}
}




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