
    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_7ea9906558803a3b781d68a1.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.191000;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_709acee1668ca71c06536826.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_55c0569e5f4950aa1a086d94.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_fbdc6903906244aaed96a0a7.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.734000;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_83cdf5ba7895b313692aa653.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_98a333de58b46dcef967182a.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.206055;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_f206ac22e29b6a47970b61a7.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.006836;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_98a333de58b46dcef967182a.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.206055;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_f206ac22e29b6a47970b61a7.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.006836;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_abf391e2a5427317214fa09e.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.206055;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_d65e3a24273a55383053fa45.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.006836;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_abf391e2a5427317214fa09e.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.206055;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_18c65a958bc8c9cfe8e9398d.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.006836;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_61a22f3916028e0223dceae5.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.206055;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_61a22f3916028e0223dceae5.woff2')format("woff");}.fff{font-family:fff;line-height:1.206055;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_61a22f3916028e0223dceae5.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.206055;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_98a333de58b46dcef967182a.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.206055;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_f206ac22e29b6a47970b61a7.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.006836;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_98a333de58b46dcef967182a.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.206055;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_f206ac22e29b6a47970b61a7.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.006836;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_61a22f3916028e0223dceae5.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.206055;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_61a22f3916028e0223dceae5.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.206055;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_53567b8fb2d5f57ee489acc0.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.505000;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_4580070bfdeb8678e9463753.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.423000;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_f8b259b6cd677aad2ac4616c.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.481000;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_c400317b5010355b03bb0c78.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.234000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b;src:url('chunks/assets/font_c9f67d9d49a28d7dd5d4efc0.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:2.399000;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;}
.m3{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);}
.m25{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);}
.m20{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);}
.m2a{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);}
.m15{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);}
.m18{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);}
.ma{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);}
.m1f{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);}
.m24{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);}
.m2{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);}
.m23{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);}
.md{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);}
.mf{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);}
.m1a{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);}
.me{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);}
.m14{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);}
.m9{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);}
.m1{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);}
.m4{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);}
.m27{transform:matrix(0.249522,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249522,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249522,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.249527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249527,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.249528,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249528,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249528,0.000000,0.000000,0.250000,0,0);}
.m17{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);}
.m6{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);}
.m1c{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);}
.m8{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);}
.m16{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);}
.m2b{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);}
.m1d{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);}
.m22{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);}
.m19{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);}
.m29{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);}
.m7{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);}
.m10{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);}
.m13{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);}
.m11{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);}
.m28{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);}
.m12{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);}
.mb{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);}
.m1b{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);}
.m21{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);}
.m5{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);}
.mc{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);}
.ve{vertical-align:-43.848000px;}
.v8{vertical-align:-41.043995px;}
.v7{vertical-align:-34.562472px;}
.v6{vertical-align:-32.401964px;}
.v2{vertical-align:-17.358000px;}
.v3{vertical-align:-11.952000px;}
.vc{vertical-align:-10.464000px;}
.v5{vertical-align:-8.280530px;}
.v9{vertical-align:-4.321016px;}
.v0{vertical-align:0.000000px;}
.vb{vertical-align:14.766000px;}
.v4{vertical-align:17.358000px;}
.v1{vertical-align:21.702000px;}
.va{vertical-align:24.690000px;}
.vd{vertical-align:84.312000px;}
.v10{vertical-align:110.118000px;}
.vf{vertical-align:125.322000px;}
.ls1b{letter-spacing:-0.441151px;}
.ls24{letter-spacing:-0.325125px;}
.ls23{letter-spacing:-0.213970px;}
.ls16{letter-spacing:-0.079181px;}
.ls6{letter-spacing:0.000000px;}
.ls22{letter-spacing:0.000800px;}
.ls2e{letter-spacing:0.001102px;}
.lsd{letter-spacing:0.001133px;}
.ls2a{letter-spacing:0.001746px;}
.ls3{letter-spacing:0.001933px;}
.ls29{letter-spacing:0.002780px;}
.lse{letter-spacing:0.003178px;}
.ls2b{letter-spacing:0.004800px;}
.ls1d{letter-spacing:0.035561px;}
.lsc{letter-spacing:0.056558px;}
.ls19{letter-spacing:0.067869px;}
.ls25{letter-spacing:0.075286px;}
.ls21{letter-spacing:0.167643px;}
.ls1e{letter-spacing:0.208283px;}
.lsb{letter-spacing:0.282789px;}
.ls1f{letter-spacing:0.340365px;}
.ls12{letter-spacing:0.428370px;}
.ls14{letter-spacing:0.434370px;}
.ls17{letter-spacing:0.717483px;}
.ls35{letter-spacing:0.741181px;}
.ls31{letter-spacing:0.743675px;}
.ls10{letter-spacing:2.989200px;}
.ls0{letter-spacing:8.382576px;}
.ls33{letter-spacing:9.861181px;}
.ls34{letter-spacing:10.909200px;}
.ls5{letter-spacing:11.960850px;}
.lsf{letter-spacing:12.014896px;}
.ls11{letter-spacing:12.530693px;}
.ls37{letter-spacing:13.448400px;}
.ls36{letter-spacing:13.454400px;}
.lsa{letter-spacing:14.824349px;}
.ls7{letter-spacing:14.943900px;}
.ls9{letter-spacing:15.063451px;}
.ls32{letter-spacing:18.069483px;}
.ls2f{letter-spacing:18.396337px;}
.ls8{letter-spacing:18.499200px;}
.ls18{letter-spacing:18.505200px;}
.ls30{letter-spacing:19.295450px;}
.ls2{letter-spacing:62.761200px;}
.ls4{letter-spacing:64.321654px;}
.ls1{letter-spacing:72.361200px;}
.ls15{letter-spacing:346.093200px;}
.ls13{letter-spacing:346.099200px;}
.ls26{letter-spacing:501.633751px;}
.ls27{letter-spacing:527.961407px;}
.ls28{letter-spacing:532.288070px;}
.ls20{letter-spacing:1058.907048px;}
.ls2c{letter-spacing:1075.112876px;}
.ls2d{letter-spacing:1090.621025px;}
.ls1c{letter-spacing:1392.871532px;}
.ls1a{letter-spacing:1427.134279px;}
.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;}
}
.ws21{word-spacing:-14.943900px;}
.ws55{word-spacing:-14.139450px;}
.ws57{word-spacing:-13.449600px;}
.ws7e{word-spacing:-12.700200px;}
.ws7{word-spacing:-11.955150px;}
.ws6{word-spacing:-11.357400px;}
.ws3{word-spacing:-10.460700px;}
.ws46{word-spacing:-3.227882px;}
.ws58{word-spacing:-2.929004px;}
.ws45{word-spacing:-2.869229px;}
.ws92{word-spacing:-2.630126px;}
.ws6d{word-spacing:-2.510575px;}
.ws3b{word-spacing:-2.450800px;}
.ws18{word-spacing:-2.391024px;}
.ws40{word-spacing:-2.331248px;}
.ws51{word-spacing:-2.271473px;}
.wsa1{word-spacing:-2.151922px;}
.ws2{word-spacing:-2.133983px;}
.ws0{word-spacing:-2.092140px;}
.wse{word-spacing:-2.032370px;}
.ws39{word-spacing:-1.972595px;}
.ws84{word-spacing:-1.853044px;}
.ws38{word-spacing:-1.793268px;}
.ws68{word-spacing:-1.494390px;}
.ws69{word-spacing:-1.434614px;}
.ws1a{word-spacing:-1.374839px;}
.ws14{word-spacing:-1.315063px;}
.ws37{word-spacing:-1.255288px;}
.ws1b{word-spacing:-1.195512px;}
.ws24{word-spacing:-1.135736px;}
.wsa7{word-spacing:-1.075968px;}
.ws19{word-spacing:-1.075961px;}
.wsa8{word-spacing:-1.022170px;}
.ws1c{word-spacing:-1.016185px;}
.wsa5{word-spacing:-0.968371px;}
.ws1e{word-spacing:-0.956410px;}
.ws20{word-spacing:-0.896634px;}
.ws1d{word-spacing:-0.836858px;}
.ws8b{word-spacing:-0.717307px;}
.ws79{word-spacing:-0.657532px;}
.ws4b{word-spacing:-0.597756px;}
.ws65{word-spacing:-0.537980px;}
.ws3e{word-spacing:-0.418429px;}
.ws60{word-spacing:-0.358654px;}
.wsa{word-spacing:-0.298878px;}
.ws85{word-spacing:-0.241706px;}
.ws35{word-spacing:-0.239102px;}
.wsb5{word-spacing:-0.215194px;}
.ws36{word-spacing:-0.179327px;}
.ws34{word-spacing:-0.119551px;}
.wsc2{word-spacing:-0.076011px;}
.wsd{word-spacing:-0.059776px;}
.wsad{word-spacing:-0.053798px;}
.ws8{word-spacing:-0.047821px;}
.wsc0{word-spacing:-0.006221px;}
.ws22{word-spacing:-0.006046px;}
.wsb7{word-spacing:-0.003610px;}
.wsbb{word-spacing:-0.001517px;}
.wsbf{word-spacing:-0.000778px;}
.wsb3{word-spacing:-0.000221px;}
.ws5{word-spacing:0.000000px;}
.ws7a{word-spacing:0.047549px;}
.ws5c{word-spacing:0.047821px;}
.ws8e{word-spacing:0.053798px;}
.ws30{word-spacing:0.059776px;}
.wsb4{word-spacing:0.107597px;}
.wsb{word-spacing:0.119551px;}
.wsb0{word-spacing:0.161395px;}
.ws10{word-spacing:0.179327px;}
.wsb8{word-spacing:0.215194px;}
.ws3f{word-spacing:0.239102px;}
.wsbe{word-spacing:0.265783px;}
.wsbd{word-spacing:0.268992px;}
.ws33{word-spacing:0.298878px;}
.wsb6{word-spacing:0.322790px;}
.ws83{word-spacing:0.358654px;}
.wsac{word-spacing:0.376589px;}
.ws81{word-spacing:0.418429px;}
.ws4{word-spacing:0.422252px;}
.ws91{word-spacing:0.478205px;}
.ws23{word-spacing:0.537980px;}
.ws5a{word-spacing:0.573871px;}
.wsc3{word-spacing:0.591782px;}
.ws3a{word-spacing:0.597756px;}
.ws5b{word-spacing:0.598800px;}
.ws67{word-spacing:0.717307px;}
.ws25{word-spacing:0.836858px;}
.wsf{word-spacing:0.896634px;}
.ws61{word-spacing:0.956410px;}
.ws41{word-spacing:1.016185px;}
.ws48{word-spacing:1.075961px;}
.ws75{word-spacing:1.129766px;}
.ws29{word-spacing:1.135736px;}
.ws74{word-spacing:1.183565px;}
.ws53{word-spacing:1.195512px;}
.ws27{word-spacing:1.255288px;}
.wsb9{word-spacing:1.290778px;}
.wsaf{word-spacing:1.291162px;}
.ws13{word-spacing:1.315063px;}
.ws9a{word-spacing:1.494390px;}
.wsa4{word-spacing:1.560154px;}
.ws2b{word-spacing:1.613941px;}
.ws15{word-spacing:1.673717px;}
.ws76{word-spacing:1.733492px;}
.wsab{word-spacing:1.775347px;}
.ws54{word-spacing:1.793268px;}
.wsc4{word-spacing:1.829146px;}
.wsc5{word-spacing:1.882944px;}
.ws6e{word-spacing:1.912819px;}
.wsba{word-spacing:1.936742px;}
.ws5f{word-spacing:1.972595px;}
.ws4c{word-spacing:2.032370px;}
.ws47{word-spacing:2.092146px;}
.ws9c{word-spacing:2.151922px;}
.ws4d{word-spacing:2.211697px;}
.ws8a{word-spacing:2.271473px;}
.ws44{word-spacing:2.331248px;}
.ws42{word-spacing:2.570351px;}
.ws82{word-spacing:2.630126px;}
.ws62{word-spacing:2.689902px;}
.ws94{word-spacing:2.809453px;}
.ws2f{word-spacing:2.869229px;}
.ws9{word-spacing:2.869236px;}
.ws6b{word-spacing:2.988780px;}
.wsc{word-spacing:3.108331px;}
.ws78{word-spacing:3.168107px;}
.wsc1{word-spacing:3.225610px;}
.ws77{word-spacing:3.227882px;}
.wsbc{word-spacing:3.227904px;}
.wsb2{word-spacing:3.281702px;}
.ws52{word-spacing:3.347434px;}
.ws66{word-spacing:3.466985px;}
.wsc6{word-spacing:3.496896px;}
.ws11{word-spacing:3.583475px;}
.ws64{word-spacing:3.586536px;}
.ws26{word-spacing:3.646312px;}
.ws2a{word-spacing:3.706087px;}
.ws31{word-spacing:3.765863px;}
.ws43{word-spacing:3.825638px;}
.wsb1{word-spacing:3.873485px;}
.ws16{word-spacing:3.885414px;}
.ws63{word-spacing:3.945190px;}
.ws1f{word-spacing:4.004965px;}
.ws9e{word-spacing:4.124516px;}
.ws93{word-spacing:4.142477px;}
.ws70{word-spacing:4.244068px;}
.ws12{word-spacing:4.303872px;}
.ws17{word-spacing:4.483170px;}
.ws9d{word-spacing:4.602721px;}
.ws80{word-spacing:4.662497px;}
.ws2d{word-spacing:4.722272px;}
.wsa3{word-spacing:4.767702px;}
.ws3c{word-spacing:4.841824px;}
.wsaa{word-spacing:4.841856px;}
.ws50{word-spacing:5.021150px;}
.ws4a{word-spacing:5.140702px;}
.ws6a{word-spacing:5.200477px;}
.wsa2{word-spacing:5.379804px;}
.ws8d{word-spacing:5.559131px;}
.ws9f{word-spacing:5.738458px;}
.ws7f{word-spacing:5.756429px;}
.ws71{word-spacing:5.858009px;}
.wsae{word-spacing:5.973047px;}
.ws32{word-spacing:6.037336px;}
.ws2e{word-spacing:6.097111px;}
.ws5e{word-spacing:6.156887px;}
.wsa6{word-spacing:6.240614px;}
.ws2c{word-spacing:6.336214px;}
.ws8c{word-spacing:6.814418px;}
.ws90{word-spacing:6.874194px;}
.ws8f{word-spacing:6.933970px;}
.ws96{word-spacing:6.993745px;}
.ws49{word-spacing:7.053521px;}
.ws6c{word-spacing:7.232848px;}
.wsa0{word-spacing:7.292623px;}
.ws98{word-spacing:7.711052px;}
.ws28{word-spacing:7.890379px;}
.ws3d{word-spacing:8.129482px;}
.ws4f{word-spacing:8.368584px;}
.wsa9{word-spacing:13.167058px;}
.ws1{word-spacing:22.179541px;}
.ws7d{word-spacing:265.523215px;}
.ws9b{word-spacing:347.176685px;}
.ws59{word-spacing:408.674848px;}
.ws86{word-spacing:411.074974px;}
.ws73{word-spacing:426.558682px;}
.ws5d{word-spacing:469.741754px;}
.ws72{word-spacing:471.390382px;}
.ws89{word-spacing:471.670173px;}
.ws87{word-spacing:473.112909px;}
.ws88{word-spacing:475.998388px;}
.ws56{word-spacing:737.954863px;}
.ws4e{word-spacing:987.732014px;}
.ws99{word-spacing:988.049602px;}
.ws7b{word-spacing:998.997701px;}
.ws7c{word-spacing:1001.161797px;}
.ws97{word-spacing:1017.124164px;}
.ws95{word-spacing:1027.581659px;}
.ws6f{word-spacing:1396.559132px;}
._4{margin-left:-11.943245px;}
._56{margin-left:-8.497878px;}
._6{margin-left:-7.172131px;}
._7{margin-left:-5.861117px;}
._2{margin-left:-3.849538px;}
._1{margin-left:-2.301354px;}
._8{margin-left:-1.075961px;}
._21{width:1.126913px;}
._5{width:2.999654px;}
._0{width:10.879128px;}
._16{width:13.533132px;}
._f{width:14.644969px;}
._d{width:16.288831px;}
._18{width:17.723459px;}
._9{width:18.769538px;}
._c{width:20.443255px;}
._3{width:21.969166px;}
._38{width:23.076490px;}
._14{width:24.209118px;}
._17{width:25.225303px;}
._b{width:26.450657px;}
._a{width:28.093591px;}
._13{width:30.246454px;}
._e{width:32.099392px;}
._10{width:33.803042px;}
._15{width:37.059233px;}
._4d{width:39.451896px;}
._55{width:41.543101px;}
._57{width:88.767360px;}
._43{width:186.619423px;}
._48{width:191.404579px;}
._54{width:219.436228px;}
._42{width:242.270507px;}
._41{width:243.944224px;}
._3e{width:251.000852px;}
._51{width:263.431069px;}
._30{width:268.507990px;}
._31{width:271.023230px;}
._47{width:272.158333px;}
._4a{width:280.467115px;}
._44{width:291.675047px;}
._49{width:295.411015px;}
._36{width:316.602245px;}
._40{width:321.234074px;}
._45{width:325.239040px;}
._52{width:333.906502px;}
._4b{width:338.568998px;}
._3d{width:346.818058px;}
._50{width:348.850402px;}
._3c{width:364.989840px;}
._46{width:368.516574px;}
._33{width:393.802641px;}
._39{width:395.893799px;}
._3b{width:403.365749px;}
._3a{width:404.979690px;}
._53{width:419.026956px;}
._32{width:433.924124px;}
._3f{width:441.502582px;}
._2f{width:475.049840px;}
._2e{width:476.436638px;}
._4f{width:477.905922px;}
._37{width:481.696904px;}
._20{width:491.594534px;}
._35{width:493.652054px;}
._34{width:505.655024px;}
._2d{width:568.764834px;}
._23{width:626.570947px;}
._1a{width:647.489299px;}
._4e{width:662.971180px;}
._2b{width:699.075642px;}
._22{width:705.411856px;}
._27{width:718.114177px;}
._2c{width:722.507677px;}
._26{width:748.091634px;}
._28{width:751.528738px;}
._2a{width:792.504905px;}
._24{width:820.718988px;}
._25{width:866.805976px;}
._1c{width:872.427990px;}
._19{width:898.487044px;}
._1d{width:914.510012px;}
._1b{width:915.881743px;}
._29{width:922.307627px;}
._1f{width:957.963766px;}
._1e{width:1025.154648px;}
._11{width:1896.348529px;}
._4c{width:2589.744529px;}
._12{width:2613.654529px;}
.fc1{color:rgb(8,117,183);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:35.865600px;}
.fsb{font-size:37.371600px;}
.fsd{font-size:39.624000px;}
.fs0{font-size:41.842800px;}
.fs3{font-size:45.429600px;}
.fs8{font-size:47.337600px;}
.fs5{font-size:47.820600px;}
.fsa{font-size:49.829400px;}
.fse{font-size:50.800798px;}
.fs7{font-size:53.798400px;}
.fs9{font-size:56.557800px;}
.fs1{font-size:59.775600px;}
.fsc{font-size:62.286600px;}
.fs6{font-size:71.731200px;}
.fs2{font-size:107.596800px;}
.y0{bottom:0.000000px;}
.y167{bottom:2.849727px;}
.y148{bottom:2.976124px;}
.y151{bottom:3.846000px;}
.y183{bottom:4.512836px;}
.y17d{bottom:6.636701px;}
.ybc{bottom:7.861500px;}
.y189{bottom:8.323461px;}
.yfd{bottom:8.506837px;}
.y12d{bottom:9.049515px;}
.y11c{bottom:9.843554px;}
.y170{bottom:11.196045px;}
.y17c{bottom:22.477127px;}
.y11b{bottom:25.233656px;}
.y16f{bottom:25.956217px;}
.yfc{bottom:26.596849px;}
.y12c{bottom:35.239502px;}
.y3f{bottom:45.921000px;}
.y3e{bottom:99.720000px;}
.y14{bottom:100.260000px;}
.y10b{bottom:107.979000px;}
.y1bb{bottom:108.430500px;}
.y75{bottom:116.407500px;}
.y13{bottom:118.147500px;}
.y3d{bottom:120.610500px;}
.y165{bottom:124.180500px;}
.y124{bottom:127.815000px;}
.y10a{bottom:128.871000px;}
.y1ba{bottom:129.321000px;}
.ye1{bottom:129.930000px;}
.y12{bottom:136.035000px;}
.y74{bottom:137.298000px;}
.y1df{bottom:137.904000px;}
.yf7{bottom:140.836500px;}
.y3c{bottom:141.502500px;}
.y164{bottom:145.071000px;}
.y146{bottom:146.107500px;}
.y123{bottom:148.705500px;}
.y18e{bottom:149.265000px;}
.y109{bottom:149.761500px;}
.y1b9{bottom:150.213000px;}
.ye0{bottom:150.822000px;}
.y11{bottom:153.924000px;}
.y1de{bottom:157.054500px;}
.y17a{bottom:157.905000px;}
.y73{bottom:158.190000px;}
.y3b{bottom:162.394500px;}
.y163{bottom:165.963000px;}
.y145{bottom:166.999500px;}
.yba{bottom:168.826500px;}
.y122{bottom:169.597500px;}
.y18d{bottom:170.157000px;}
.y108{bottom:170.653500px;}
.y1b8{bottom:171.105000px;}
.ydf{bottom:171.712500px;}
.y10{bottom:171.811500px;}
.y1dd{bottom:176.205000px;}
.y179{bottom:178.797000px;}
.y72{bottom:179.082000px;}
.y3a{bottom:183.285000px;}
.y11a{bottom:185.704484px;}
.y162{bottom:186.855000px;}
.y144{bottom:187.891500px;}
.yf{bottom:189.699000px;}
.yb9{bottom:189.718500px;}
.y121{bottom:190.489500px;}
.y18c{bottom:191.049000px;}
.y107{bottom:191.545500px;}
.y1b7{bottom:191.995500px;}
.yde{bottom:192.604500px;}
.y1dc{bottom:195.355500px;}
.y178{bottom:199.687500px;}
.y71{bottom:199.972500px;}
.y96{bottom:202.363500px;}
.y119{bottom:203.254514px;}
.y39{bottom:204.177000px;}
.ye{bottom:207.588000px;}
.y161{bottom:207.745500px;}
.y143{bottom:208.782000px;}
.yb8{bottom:210.610500px;}
.y120{bottom:211.380000px;}
.y18b{bottom:211.939500px;}
.y106{bottom:212.436000px;}
.y1b6{bottom:212.887500px;}
.ydd{bottom:213.496500px;}
.y1db{bottom:214.506000px;}
.y12b{bottom:218.119522px;}
.y177{bottom:220.579500px;}
.y70{bottom:220.864500px;}
.y95{bottom:223.255500px;}
.y38{bottom:225.069000px;}
.yd{bottom:225.475500px;}
.y160{bottom:228.637500px;}
.y142{bottom:229.674000px;}
.yb7{bottom:231.501000px;}
.y11f{bottom:232.272000px;}
.y105{bottom:233.328000px;}
.y1da{bottom:233.656500px;}
.y1b5{bottom:233.779500px;}
.ydc{bottom:234.387000px;}
.y176{bottom:241.471500px;}
.y6f{bottom:241.756500px;}
.y94{bottom:244.147500px;}
.y37{bottom:245.961000px;}
.y18a{bottom:247.567500px;}
.y15f{bottom:249.529500px;}
.y141{bottom:250.566000px;}
.yc{bottom:252.330000px;}
.yb6{bottom:252.393000px;}
.y1d9{bottom:252.807000px;}
.y104{bottom:254.220000px;}
.y1b4{bottom:254.670000px;}
.ydb{bottom:255.279000px;}
.y175{bottom:262.362000px;}
.y6e{bottom:262.647000px;}
.y93{bottom:265.038000px;}
.y36{bottom:266.851500px;}
.y11e{bottom:267.900000px;}
.y188{bottom:269.997000px;}
.yb{bottom:270.217500px;}
.y15d{bottom:270.420000px;}
.y140{bottom:271.456500px;}
.y1d8{bottom:271.957500px;}
.yb5{bottom:273.285000px;}
.y103{bottom:275.112000px;}
.y1b3{bottom:275.562000px;}
.y15e{bottom:275.845500px;}
.yda{bottom:276.171000px;}
.y174{bottom:283.254000px;}
.y6d{bottom:283.539000px;}
.y92{bottom:285.930000px;}
.y11d{bottom:287.133000px;}
.y35{bottom:287.743500px;}
.ya{bottom:288.105000px;}
.y1d7{bottom:291.108000px;}
.y15c{bottom:291.312000px;}
.y13f{bottom:292.348500px;}
.yb4{bottom:294.177000px;}
.y102{bottom:296.002500px;}
.y1b2{bottom:296.454000px;}
.yd9{bottom:297.061500px;}
.y173{bottom:304.146000px;}
.y6c{bottom:304.431000px;}
.y9{bottom:305.994000px;}
.y91{bottom:306.822000px;}
.y34{bottom:308.635500px;}
.y117{bottom:309.562500px;}
.y15b{bottom:312.204000px;}
.y13e{bottom:313.240500px;}
.y1d6{bottom:314.742000px;}
.yb3{bottom:315.067500px;}
.y101{bottom:316.894500px;}
.y1b1{bottom:317.346000px;}
.yd8{bottom:317.953500px;}
.y8{bottom:323.881500px;}
.y6b{bottom:325.323000px;}
.y90{bottom:327.712500px;}
.y33{bottom:329.526000px;}
.y15a{bottom:333.096000px;}
.y118{bottom:335.554520px;}
.yb2{bottom:335.959500px;}
.y100{bottom:337.786500px;}
.y1b0{bottom:338.236500px;}
.y13d{bottom:338.614500px;}
.yd7{bottom:338.845500px;}
.y172{bottom:339.774000px;}
.y7{bottom:341.769000px;}
.y6a{bottom:346.213500px;}
.y32{bottom:350.418000px;}
.y8f{bottom:353.088000px;}
.y1d5{bottom:353.566500px;}
.y159{bottom:353.986500px;}
.yb1{bottom:356.851500px;}
.yff{bottom:358.677000px;}
.y171{bottom:359.007000px;}
.y1af{bottom:359.128500px;}
.yd6{bottom:359.736000px;}
.y6{bottom:365.635500px;}
.y69{bottom:367.105500px;}
.y31{bottom:371.310000px;}
.y13c{bottom:373.957500px;}
.y158{bottom:374.878500px;}
.y1ae{bottom:380.020500px;}
.yd5{bottom:380.628000px;}
.yf6{bottom:380.835000px;}
.y16e{bottom:381.435000px;}
.y1d4{bottom:382.030500px;}
.yb0{bottom:382.225500px;}
.y5{bottom:383.523000px;}
.y68{bottom:387.997500px;}
.y8e{bottom:388.429500px;}
.y30{bottom:392.200500px;}
.yfe{bottom:394.305000px;}
.y13b{bottom:394.848000px;}
.y157{bottom:395.770500px;}
.y1ad{bottom:400.911000px;}
.y4{bottom:401.410500px;}
.yd4{bottom:401.520000px;}
.y1d3{bottom:401.530500px;}
.yf5{bottom:401.725500px;}
.y67{bottom:408.888000px;}
.y8d{bottom:409.321500px;}
.y2f{bottom:413.092500px;}
.y13a{bottom:415.740000px;}
.yaf{bottom:417.568500px;}
.y3{bottom:419.299500px;}
.yfb{bottom:419.724000px;}
.y156{bottom:421.144500px;}
.y1ac{bottom:421.803000px;}
.yf3{bottom:422.617500px;}
.yf4{bottom:428.043000px;}
.y66{bottom:429.780000px;}
.y1d2{bottom:429.994500px;}
.y8c{bottom:430.213500px;}
.y2e{bottom:433.984500px;}
.y139{bottom:436.632000px;}
.yae{bottom:438.459000px;}
.y1ab{bottom:442.695000px;}
.y2{bottom:443.164500px;}
.yf2{bottom:443.509500px;}
.y200{bottom:445.942500px;}
.yd3{bottom:448.371000px;}
.y1d1{bottom:449.494500px;}
.y65{bottom:450.672000px;}
.y8b{bottom:451.104000px;}
.y2d{bottom:454.875000px;}
.y155{bottom:456.487500px;}
.y138{bottom:457.524000px;}
.yad{bottom:459.351000px;}
.y1{bottom:461.052000px;}
.yd2{bottom:462.568500px;}
.y1aa{bottom:463.585500px;}
.yf1{bottom:464.401500px;}
.y1ff{bottom:465.093000px;}
.y64{bottom:471.562500px;}
.y8a{bottom:471.996000px;}
.yd1{bottom:476.764500px;}
.y154{bottom:477.378000px;}
.y1d0{bottom:477.958500px;}
.y137{bottom:478.414500px;}
.yac{bottom:480.243000px;}
.y2c{bottom:480.250500px;}
.y1fe{bottom:484.243500px;}
.y1a9{bottom:484.477500px;}
.yf0{bottom:485.292000px;}
.yd0{bottom:490.962000px;}
.y63{bottom:492.454500px;}
.y89{bottom:492.888000px;}
.y1cf{bottom:497.457000px;}
.y153{bottom:498.270000px;}
.y136{bottom:499.306500px;}
.ycf{bottom:505.158000px;}
.y1a8{bottom:505.369500px;}
.yab{bottom:505.617000px;}
.yef{bottom:506.184000px;}
.y62{bottom:513.346500px;}
.y88{bottom:513.780000px;}
.y187{bottom:514.767000px;}
.y1ce{bottom:516.957000px;}
.y135{bottom:520.198500px;}
.y1a7{bottom:526.260000px;}
.yce{bottom:527.173500px;}
.y1fd{bottom:527.274000px;}
.yee{bottom:531.558000px;}
.y152{bottom:533.898000px;}
.y61{bottom:534.237000px;}
.y87{bottom:534.670500px;}
.y186{bottom:535.657500px;}
.y1cd{bottom:536.455500px;}
.yaa{bottom:540.960000px;}
.y134{bottom:541.089000px;}
.y1fc{bottom:546.424500px;}
.y1a6{bottom:547.152000px;}
.y60{bottom:555.129000px;}
.y86{bottom:555.562500px;}
.y150{bottom:556.327500px;}
.y185{bottom:556.549500px;}
.ycd{bottom:557.223000px;}
.y2b{bottom:559.462500px;}
.ya9{bottom:561.852000px;}
.y133{bottom:561.981000px;}
.y1cc{bottom:564.921000px;}
.y1fb{bottom:565.575000px;}
.yed{bottom:566.901000px;}
.y1a5{bottom:568.044000px;}
.y5f{bottom:576.021000px;}
.y85{bottom:576.454500px;}
.ya8{bottom:582.742500px;}
.y132{bottom:582.873000px;}
.y1cb{bottom:584.419500px;}
.y1fa{bottom:584.725500px;}
.yeb{bottom:587.793000px;}
.y1a4{bottom:588.936000px;}
.y184{bottom:592.177500px;}
.yec{bottom:593.217000px;}
.ycc{bottom:594.327000px;}
.y5e{bottom:596.913000px;}
.y84{bottom:597.345000px;}
.y2a{bottom:598.287000px;}
.y131{bottom:603.763500px;}
.y1f9{bottom:603.876000px;}
.y1ca{bottom:603.918000px;}
.yea{bottom:608.683500px;}
.y1a3{bottom:609.826500px;}
.y182{bottom:614.607000px;}
.y5d{bottom:617.803500px;}
.y83{bottom:618.237000px;}
.y29{bottom:619.177500px;}
.y1f8{bottom:623.026500px;}
.y1c9{bottom:623.416500px;}
.y130{bottom:624.655500px;}
.ye9{bottom:629.575500px;}
.ya7{bottom:630.715500px;}
.y1a2{bottom:630.718500px;}
.y5c{bottom:638.695500px;}
.y82{bottom:639.129000px;}
.y28{bottom:640.069500px;}
.y1f7{bottom:642.177000px;}
.ycb{bottom:642.300000px;}
.y1c8{bottom:642.915000px;}
.y16d{bottom:643.942500px;}
.ya6{bottom:648.648000px;}
.ye8{bottom:650.467500px;}
.y1a1{bottom:651.610500px;}
.y5b{bottom:659.587500px;}
.y81{bottom:660.019500px;}
.yca{bottom:660.232500px;}
.y12f{bottom:660.283500px;}
.y27{bottom:660.961500px;}
.y1f6{bottom:661.327500px;}
.y1c7{bottom:662.413500px;}
.y16c{bottom:664.834500px;}
.ya5{bottom:666.580500px;}
.ye7{bottom:671.358000px;}
.y1a0{bottom:672.501000px;}
.yc9{bottom:678.165000px;}
.y12e{bottom:679.516500px;}
.y5a{bottom:680.478000px;}
.y80{bottom:680.911500px;}
.y26{bottom:681.852000px;}
.ya4{bottom:684.513000px;}
.y16b{bottom:685.725000px;}
.y19f{bottom:693.393000px;}
.yc8{bottom:696.099000px;}
.ye6{bottom:696.733500px;}
.y116{bottom:697.906500px;}
.y1f5{bottom:699.628500px;}
.y1c6{bottom:699.846000px;}
.y59{bottom:701.370000px;}
.y7f{bottom:701.803500px;}
.ya3{bottom:702.445500px;}
.y25{bottom:702.744000px;}
.y12a{bottom:704.934000px;}
.y16a{bottom:706.617000px;}
.yc7{bottom:714.031500px;}
.y115{bottom:715.839000px;}
.y19e{bottom:718.767000px;}
.y1f4{bottom:718.779000px;}
.ya2{bottom:720.379500px;}
.y1c5{bottom:720.736500px;}
.y58{bottom:722.262000px;}
.y7e{bottom:722.694000px;}
.y24{bottom:723.636000px;}
.yfa{bottom:727.177500px;}
.ye5{bottom:728.880000px;}
.yc6{bottom:731.964000px;}
.y114{bottom:733.771500px;}
.y1f3{bottom:737.929500px;}
.ya1{bottom:738.312000px;}
.y1c4{bottom:741.628500px;}
.y169{bottom:742.245000px;}
.y57{bottom:743.152500px;}
.y23{bottom:744.526500px;}
.y7d{bottom:748.069500px;}
.yc5{bottom:749.896500px;}
.ya0{bottom:756.244500px;}
.y1f2{bottom:757.081500px;}
.y113{bottom:758.907000px;}
.y168{bottom:761.478000px;}
.yf9{bottom:762.520500px;}
.y55{bottom:764.044500px;}
.y22{bottom:765.418500px;}
.y19d{bottom:766.740000px;}
.yc4{bottom:767.829000px;}
.y56{bottom:769.468500px;}
.y1f1{bottom:776.232000px;}
.y14f{bottom:779.676000px;}
.y9f{bottom:781.380000px;}
.y7c{bottom:783.411000px;}
.y166{bottom:783.907500px;}
.y19c{bottom:784.672500px;}
.y54{bottom:784.936500px;}
.yc3{bottom:785.761500px;}
.y21{bottom:786.310500px;}
.y112{bottom:791.572500px;}
.y1f0{bottom:795.382500px;}
.y14e{bottom:800.568000px;}
.y19b{bottom:802.605000px;}
.yc2{bottom:803.695500px;}
.y7b{bottom:804.303000px;}
.y52{bottom:805.827000px;}
.y53{bottom:811.252500px;}
.y9e{bottom:814.045500px;}
.y1ef{bottom:814.533000px;}
.y20{bottom:816.168000px;}
.y19a{bottom:820.539000px;}
.y14d{bottom:821.460000px;}
.yc1{bottom:821.628000px;}
.y7a{bottom:825.195000px;}
.y51{bottom:826.719000px;}
.y111{bottom:828.676500px;}
.y1ee{bottom:833.683500px;}
.y181{bottom:834.543000px;}
.y199{bottom:838.471500px;}
.yc0{bottom:839.560500px;}
.y14c{bottom:842.350500px;}
.y79{bottom:846.087000px;}
.y9d{bottom:847.257000px;}
.y50{bottom:847.611000px;}
.y110{bottom:849.568500px;}
.y1ed{bottom:852.834000px;}
.y180{bottom:855.435000px;}
.y1f{bottom:855.834000px;}
.y14b{bottom:863.242500px;}
.y198{bottom:863.605500px;}
.ybf{bottom:864.696000px;}
.y78{bottom:866.977500px;}
.y9c{bottom:868.147500px;}
.y4f{bottom:868.503000px;}
.y10f{bottom:870.460500px;}
.yf8{bottom:871.461000px;}
.y1e{bottom:871.974000px;}
.y1ec{bottom:871.984500px;}
.y14a{bottom:884.134500px;}
.y77{bottom:887.869500px;}
.y9b{bottom:889.039500px;}
.y4e{bottom:889.393500px;}
.y17f{bottom:891.063000px;}
.y1eb{bottom:891.135000px;}
.y10e{bottom:891.351000px;}
.y1d{bottom:892.452000px;}
.y197{bottom:896.272500px;}
.ybe{bottom:897.361500px;}
.y1c{bottom:904.252500px;}
.y1c3{bottom:908.761500px;}
.y9a{bottom:909.931500px;}
.y4d{bottom:910.285500px;}
.y17e{bottom:910.296000px;}
.y10d{bottom:912.243000px;}
.y76{bottom:913.243500px;}
.y149{bottom:919.762500px;}
.y1b{bottom:924.732000px;}
.y1ea{bottom:929.436000px;}
.y1c2{bottom:929.652000px;}
.y99{bottom:930.822000px;}
.y4c{bottom:931.177500px;}
.y17b{bottom:932.725500px;}
.y196{bottom:933.376500px;}
.y1a{bottom:936.531000px;}
.y10c{bottom:937.617000px;}
.y147{bottom:942.190500px;}
.ybd{bottom:944.988000px;}
.y1e9{bottom:948.586500px;}
.y1c1{bottom:950.544000px;}
.y4b{bottom:952.068000px;}
.y195{bottom:954.267000px;}
.y98{bottom:956.197500px;}
.y19{bottom:957.010500px;}
.ye4{bottom:957.840000px;}
.ybb{bottom:967.416000px;}
.y1e8{bottom:967.737000px;}
.y1c0{bottom:971.436000px;}
.y4a{bottom:972.960000px;}
.y194{bottom:975.159000px;}
.ye3{bottom:978.732000px;}
.y1e7{bottom:986.887500px;}
.y97{bottom:988.344000px;}
.y129{bottom:988.431000px;}
.y1bf{bottom:992.326500px;}
.y49{bottom:993.852000px;}
.y18{bottom:1001.332500px;}
.y192{bottom:1001.848500px;}
.y1e6{bottom:1006.038000px;}
.y128{bottom:1006.363500px;}
.y193{bottom:1012.101000px;}
.y1be{bottom:1013.218500px;}
.ye2{bottom:1014.358500px;}
.y48{bottom:1014.742500px;}
.y191{bottom:1022.217000px;}
.y127{bottom:1024.296000px;}
.y1e5{bottom:1025.188500px;}
.y1bd{bottom:1034.110500px;}
.y47{bottom:1035.634500px;}
.y17{bottom:1040.157000px;}
.y1e4{bottom:1044.339000px;}
.y126{bottom:1049.431500px;}
.y190{bottom:1056.316500px;}
.y45{bottom:1056.526500px;}
.y1bc{bottom:1059.484500px;}
.y18f{bottom:1060.008000px;}
.y46{bottom:1061.950500px;}
.y1e3{bottom:1063.489500px;}
.y16{bottom:1071.495000px;}
.y44{bottom:1077.417000px;}
.y125{bottom:1082.097000px;}
.y1e2{bottom:1082.640000px;}
.y43{bottom:1098.309000px;}
.y1e1{bottom:1101.790500px;}
.y15{bottom:1102.831500px;}
.y42{bottom:1119.201000px;}
.y1e0{bottom:1120.941000px;}
.y41{bottom:1140.091500px;}
.y40{bottom:1200.543000px;}
.h22{height:30.102077px;}
.h23{height:30.786077px;}
.h12{height:31.526842px;}
.h6{height:32.565965px;}
.hf{height:34.430832px;}
.h16{height:36.644461px;}
.h2{height:37.993262px;}
.hb{height:41.250077px;}
.h11{height:41.482876px;}
.h8{height:43.038432px;}
.h7{height:43.421105px;}
.h3{height:43.815515px;}
.h17{height:46.980817px;}
.hc{height:48.848947px;}
.h10{height:49.923965px;}
.ha{height:51.646464px;}
.h14{height:52.304919px;}
.he{height:52.305519px;}
.h9{height:54.276245px;}
.h5{height:54.411312px;}
.h20{height:65.940077px;}
.h21{height:69.042245px;}
.h4{height:77.469696px;}
.h24{height:86.703024px;}
.h25{height:151.368077px;}
.hd{height:187.620000px;}
.h1e{height:196.296000px;}
.h1a{height:199.708500px;}
.h19{height:212.845500px;}
.h1f{height:221.128500px;}
.h1d{height:222.312000px;}
.h1b{height:228.087000px;}
.h13{height:237.547500px;}
.h1c{height:238.866000px;}
.h18{height:245.955000px;}
.h15{height:350.803500px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.wb{width:257.785500px;}
.w8{width:282.219000px;}
.w6{width:357.897000px;}
.w7{width:377.868000px;}
.w2{width:378.919500px;}
.wc{width:404.418000px;}
.w4{width:517.140000px;}
.wa{width:543.952500px;}
.w9{width:554.595000px;}
.w5{width:619.619850px;}
.w3{width:724.203600px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x58{left:9.220355px;}
.x5a{left:30.190348px;}
.x1{left:53.574000px;}
.x59{left:79.870341px;}
.x47{left:84.143400px;}
.x6f{left:85.848000px;}
.x4e{left:91.111502px;}
.x31{left:98.534850px;}
.x51{left:111.991522px;}
.x64{left:128.048670px;}
.x62{left:130.093375px;}
.x57{left:136.434150px;}
.x4f{left:147.721487px;}
.x50{left:161.671940px;}
.x48{left:174.592291px;}
.x52{left:242.131171px;}
.x16{left:247.348500px;}
.x4{left:248.526000px;}
.x2{left:249.591000px;}
.x65{left:251.847409px;}
.x37{left:258.556500px;}
.x40{left:263.247000px;}
.x63{left:265.297970px;}
.x3{left:269.484000px;}
.x3f{left:273.825000px;}
.x61{left:275.712959px;}
.x60{left:279.361891px;}
.x5{left:281.479500px;}
.x56{left:282.709500px;}
.x3a{left:284.499000px;}
.x4c{left:285.573000px;}
.x4d{left:286.642500px;}
.x35{left:289.056000px;}
.x3b{left:290.356500px;}
.x3e{left:293.040000px;}
.x55{left:296.712000px;}
.x46{left:298.212000px;}
.x34{left:299.577000px;}
.x4b{left:300.643500px;}
.x3c{left:301.849500px;}
.x39{left:304.128000px;}
.x1b{left:305.917500px;}
.x17{left:307.062000px;}
.x1c{left:313.389000px;}
.x6e{left:314.470500px;}
.x18{left:318.250500px;}
.x19{left:323.326500px;}
.x6d{left:325.461000px;}
.x32{left:326.887500px;}
.x1a{left:330.799500px;}
.x2e{left:334.539000px;}
.x36{left:340.105500px;}
.x12{left:343.741500px;}
.x2d{left:348.369000px;}
.x33{left:349.780500px;}
.x13{left:353.899500px;}
.x2b{left:355.026000px;}
.x14{left:358.857000px;}
.x2c{left:360.630000px;}
.x2f{left:362.191500px;}
.x15{left:366.328500px;}
.x2a{left:372.435000px;}
.x5b{left:375.197334px;}
.x30{left:381.186000px;}
.x66{left:401.171038px;}
.x41{left:457.137000px;}
.x53{left:480.492000px;}
.x69{left:491.436000px;}
.x54{left:495.436500px;}
.x49{left:508.317000px;}
.x6a{left:513.037500px;}
.x67{left:514.557000px;}
.xc{left:518.161500px;}
.x4a{left:523.260000px;}
.xd{left:524.586000px;}
.x5c{left:537.051000px;}
.x6b{left:543.132000px;}
.x5d{left:549.342000px;}
.x68{left:552.642000px;}
.x22{left:554.938500px;}
.x23{left:562.410000px;}
.x5e{left:564.727500px;}
.x24{left:566.071500px;}
.x5f{left:576.534000px;}
.x25{left:581.016000px;}
.x6{left:673.333500px;}
.x7{left:680.581500px;}
.x8{left:681.945000px;}
.x38{left:684.111000px;}
.x9{left:689.193000px;}
.x44{left:697.197000px;}
.x1f{left:698.896500px;}
.x20{left:706.368000px;}
.x45{left:707.893500px;}
.x21{left:710.152500px;}
.x42{left:713.131500px;}
.x1d{left:718.419000px;}
.x1e{left:725.890500px;}
.x27{left:727.015500px;}
.x10{left:733.344000px;}
.x11{left:740.817000px;}
.x28{left:741.960000px;}
.x43{left:752.275500px;}
.xe{left:766.797000px;}
.xf{left:773.223000px;}
.x3d{left:812.353500px;}
.x26{left:818.046000px;}
.x29{left:819.093000px;}
.x6c{left:822.982500px;}
.xa{left:825.900000px;}
.xb{left:833.148000px;}
@media print{
.ve{vertical-align:-38.976000pt;}
.v8{vertical-align:-36.483552pt;}
.v7{vertical-align:-30.722197pt;}
.v6{vertical-align:-28.801745pt;}
.v2{vertical-align:-15.429333pt;}
.v3{vertical-align:-10.624000pt;}
.vc{vertical-align:-9.301333pt;}
.v5{vertical-align:-7.360471pt;}
.v9{vertical-align:-3.840903pt;}
.v0{vertical-align:0.000000pt;}
.vb{vertical-align:13.125333pt;}
.v4{vertical-align:15.429333pt;}
.v1{vertical-align:19.290667pt;}
.va{vertical-align:21.946667pt;}
.vd{vertical-align:74.944000pt;}
.v10{vertical-align:97.882667pt;}
.vf{vertical-align:111.397333pt;}
.ls1b{letter-spacing:-0.392134pt;}
.ls24{letter-spacing:-0.289000pt;}
.ls23{letter-spacing:-0.190195pt;}
.ls16{letter-spacing:-0.070383pt;}
.ls6{letter-spacing:0.000000pt;}
.ls22{letter-spacing:0.000711pt;}
.ls2e{letter-spacing:0.000980pt;}
.lsd{letter-spacing:0.001007pt;}
.ls2a{letter-spacing:0.001552pt;}
.ls3{letter-spacing:0.001718pt;}
.ls29{letter-spacing:0.002471pt;}
.lse{letter-spacing:0.002825pt;}
.ls2b{letter-spacing:0.004267pt;}
.ls1d{letter-spacing:0.031609pt;}
.lsc{letter-spacing:0.050274pt;}
.ls19{letter-spacing:0.060328pt;}
.ls25{letter-spacing:0.066921pt;}
.ls21{letter-spacing:0.149016pt;}
.ls1e{letter-spacing:0.185141pt;}
.lsb{letter-spacing:0.251368pt;}
.ls1f{letter-spacing:0.302547pt;}
.ls12{letter-spacing:0.380773pt;}
.ls14{letter-spacing:0.386106pt;}
.ls17{letter-spacing:0.637762pt;}
.ls35{letter-spacing:0.658827pt;}
.ls31{letter-spacing:0.661044pt;}
.ls10{letter-spacing:2.657067pt;}
.ls0{letter-spacing:7.451179pt;}
.ls33{letter-spacing:8.765494pt;}
.ls34{letter-spacing:9.697067pt;}
.ls5{letter-spacing:10.631867pt;}
.lsf{letter-spacing:10.679907pt;}
.ls11{letter-spacing:11.138393pt;}
.ls37{letter-spacing:11.954133pt;}
.ls36{letter-spacing:11.959467pt;}
.lsa{letter-spacing:13.177199pt;}
.ls7{letter-spacing:13.283467pt;}
.ls9{letter-spacing:13.389734pt;}
.ls32{letter-spacing:16.061762pt;}
.ls2f{letter-spacing:16.352300pt;}
.ls8{letter-spacing:16.443733pt;}
.ls18{letter-spacing:16.449067pt;}
.ls30{letter-spacing:17.151511pt;}
.ls2{letter-spacing:55.787733pt;}
.ls4{letter-spacing:57.174803pt;}
.ls1{letter-spacing:64.321067pt;}
.ls15{letter-spacing:307.638400pt;}
.ls13{letter-spacing:307.643733pt;}
.ls26{letter-spacing:445.896668pt;}
.ls27{letter-spacing:469.299029pt;}
.ls28{letter-spacing:473.144951pt;}
.ls20{letter-spacing:941.250709pt;}
.ls2c{letter-spacing:955.655890pt;}
.ls2d{letter-spacing:969.440911pt;}
.ls1c{letter-spacing:1238.108029pt;}
.ls1a{letter-spacing:1268.563804pt;}
.ws21{word-spacing:-13.283467pt;}
.ws55{word-spacing:-12.568400pt;}
.ws57{word-spacing:-11.955200pt;}
.ws7e{word-spacing:-11.289066pt;}
.ws7{word-spacing:-10.626800pt;}
.ws6{word-spacing:-10.095467pt;}
.ws3{word-spacing:-9.298400pt;}
.ws46{word-spacing:-2.869229pt;}
.ws58{word-spacing:-2.603559pt;}
.ws45{word-spacing:-2.550426pt;}
.ws92{word-spacing:-2.337890pt;}
.ws6d{word-spacing:-2.231622pt;}
.ws3b{word-spacing:-2.178489pt;}
.ws18{word-spacing:-2.125355pt;}
.ws40{word-spacing:-2.072221pt;}
.ws51{word-spacing:-2.019087pt;}
.wsa1{word-spacing:-1.912819pt;}
.ws2{word-spacing:-1.896874pt;}
.ws0{word-spacing:-1.859680pt;}
.wse{word-spacing:-1.806551pt;}
.ws39{word-spacing:-1.753418pt;}
.ws84{word-spacing:-1.647150pt;}
.ws38{word-spacing:-1.594016pt;}
.ws68{word-spacing:-1.328347pt;}
.ws69{word-spacing:-1.275213pt;}
.ws1a{word-spacing:-1.222079pt;}
.ws14{word-spacing:-1.168945pt;}
.ws37{word-spacing:-1.115811pt;}
.ws1b{word-spacing:-1.062677pt;}
.ws24{word-spacing:-1.009543pt;}
.wsa7{word-spacing:-0.956416pt;}
.ws19{word-spacing:-0.956410pt;}
.wsa8{word-spacing:-0.908595pt;}
.ws1c{word-spacing:-0.903276pt;}
.wsa5{word-spacing:-0.860774pt;}
.ws1e{word-spacing:-0.850142pt;}
.ws20{word-spacing:-0.797008pt;}
.ws1d{word-spacing:-0.743874pt;}
.ws8b{word-spacing:-0.637606pt;}
.ws79{word-spacing:-0.584473pt;}
.ws4b{word-spacing:-0.531339pt;}
.ws65{word-spacing:-0.478205pt;}
.ws3e{word-spacing:-0.371937pt;}
.ws60{word-spacing:-0.318803pt;}
.wsa{word-spacing:-0.265669pt;}
.ws85{word-spacing:-0.214850pt;}
.ws35{word-spacing:-0.212535pt;}
.wsb5{word-spacing:-0.191283pt;}
.ws36{word-spacing:-0.159402pt;}
.ws34{word-spacing:-0.106268pt;}
.wsc2{word-spacing:-0.067565pt;}
.wsd{word-spacing:-0.053134pt;}
.wsad{word-spacing:-0.047821pt;}
.ws8{word-spacing:-0.042507pt;}
.wsc0{word-spacing:-0.005530pt;}
.ws22{word-spacing:-0.005374pt;}
.wsb7{word-spacing:-0.003209pt;}
.wsbb{word-spacing:-0.001348pt;}
.wsbf{word-spacing:-0.000691pt;}
.wsb3{word-spacing:-0.000196pt;}
.ws5{word-spacing:0.000000pt;}
.ws7a{word-spacing:0.042266pt;}
.ws5c{word-spacing:0.042507pt;}
.ws8e{word-spacing:0.047821pt;}
.ws30{word-spacing:0.053134pt;}
.wsb4{word-spacing:0.095642pt;}
.wsb{word-spacing:0.106268pt;}
.wsb0{word-spacing:0.143462pt;}
.ws10{word-spacing:0.159402pt;}
.wsb8{word-spacing:0.191283pt;}
.ws3f{word-spacing:0.212535pt;}
.wsbe{word-spacing:0.236251pt;}
.wsbd{word-spacing:0.239104pt;}
.ws33{word-spacing:0.265669pt;}
.wsb6{word-spacing:0.286925pt;}
.ws83{word-spacing:0.318803pt;}
.wsac{word-spacing:0.334746pt;}
.ws81{word-spacing:0.371937pt;}
.ws4{word-spacing:0.375335pt;}
.ws91{word-spacing:0.425071pt;}
.ws23{word-spacing:0.478205pt;}
.ws5a{word-spacing:0.510108pt;}
.wsc3{word-spacing:0.526029pt;}
.ws3a{word-spacing:0.531339pt;}
.ws5b{word-spacing:0.532267pt;}
.ws67{word-spacing:0.637606pt;}
.ws25{word-spacing:0.743874pt;}
.wsf{word-spacing:0.797008pt;}
.ws61{word-spacing:0.850142pt;}
.ws41{word-spacing:0.903276pt;}
.ws48{word-spacing:0.956410pt;}
.ws75{word-spacing:1.004237pt;}
.ws29{word-spacing:1.009543pt;}
.ws74{word-spacing:1.052058pt;}
.ws53{word-spacing:1.062677pt;}
.ws27{word-spacing:1.115811pt;}
.wsb9{word-spacing:1.147358pt;}
.wsaf{word-spacing:1.147699pt;}
.ws13{word-spacing:1.168945pt;}
.ws9a{word-spacing:1.328347pt;}
.wsa4{word-spacing:1.386803pt;}
.ws2b{word-spacing:1.434614pt;}
.ws15{word-spacing:1.487748pt;}
.ws76{word-spacing:1.540882pt;}
.wsab{word-spacing:1.578086pt;}
.ws54{word-spacing:1.594016pt;}
.wsc4{word-spacing:1.625907pt;}
.wsc5{word-spacing:1.673728pt;}
.ws6e{word-spacing:1.700284pt;}
.wsba{word-spacing:1.721549pt;}
.ws5f{word-spacing:1.753418pt;}
.ws4c{word-spacing:1.806551pt;}
.ws47{word-spacing:1.859685pt;}
.ws9c{word-spacing:1.912819pt;}
.ws4d{word-spacing:1.965953pt;}
.ws8a{word-spacing:2.019087pt;}
.ws44{word-spacing:2.072221pt;}
.ws42{word-spacing:2.284756pt;}
.ws82{word-spacing:2.337890pt;}
.ws62{word-spacing:2.391024pt;}
.ws94{word-spacing:2.497292pt;}
.ws2f{word-spacing:2.550426pt;}
.ws9{word-spacing:2.550432pt;}
.ws6b{word-spacing:2.656693pt;}
.wsc{word-spacing:2.762961pt;}
.ws78{word-spacing:2.816095pt;}
.wsc1{word-spacing:2.867209pt;}
.ws77{word-spacing:2.869229pt;}
.wsbc{word-spacing:2.869248pt;}
.wsb2{word-spacing:2.917069pt;}
.ws52{word-spacing:2.975497pt;}
.ws66{word-spacing:3.081764pt;}
.wsc6{word-spacing:3.108352pt;}
.ws11{word-spacing:3.185311pt;}
.ws64{word-spacing:3.188032pt;}
.ws26{word-spacing:3.241166pt;}
.ws2a{word-spacing:3.294300pt;}
.ws31{word-spacing:3.347434pt;}
.ws43{word-spacing:3.400567pt;}
.wsb1{word-spacing:3.443098pt;}
.ws16{word-spacing:3.453701pt;}
.ws63{word-spacing:3.506835pt;}
.ws1f{word-spacing:3.559969pt;}
.ws9e{word-spacing:3.666237pt;}
.ws93{word-spacing:3.682202pt;}
.ws70{word-spacing:3.772505pt;}
.ws12{word-spacing:3.825664pt;}
.ws17{word-spacing:3.985040pt;}
.ws9d{word-spacing:4.091308pt;}
.ws80{word-spacing:4.144442pt;}
.ws2d{word-spacing:4.197575pt;}
.wsa3{word-spacing:4.237957pt;}
.ws3c{word-spacing:4.303843pt;}
.wsaa{word-spacing:4.303872pt;}
.ws50{word-spacing:4.463245pt;}
.ws4a{word-spacing:4.569513pt;}
.ws6a{word-spacing:4.622646pt;}
.wsa2{word-spacing:4.782048pt;}
.ws8d{word-spacing:4.941450pt;}
.ws9f{word-spacing:5.100851pt;}
.ws7f{word-spacing:5.116826pt;}
.ws71{word-spacing:5.207119pt;}
.wsae{word-spacing:5.309375pt;}
.ws32{word-spacing:5.366521pt;}
.ws2e{word-spacing:5.419654pt;}
.ws5e{word-spacing:5.472788pt;}
.wsa6{word-spacing:5.547213pt;}
.ws2c{word-spacing:5.632190pt;}
.ws8c{word-spacing:6.057261pt;}
.ws90{word-spacing:6.110395pt;}
.ws8f{word-spacing:6.163529pt;}
.ws96{word-spacing:6.216662pt;}
.ws49{word-spacing:6.269796pt;}
.ws6c{word-spacing:6.429198pt;}
.wsa0{word-spacing:6.482332pt;}
.ws98{word-spacing:6.854269pt;}
.ws28{word-spacing:7.013670pt;}
.ws3d{word-spacing:7.226206pt;}
.ws4f{word-spacing:7.438741pt;}
.wsa9{word-spacing:11.704051pt;}
.ws1{word-spacing:19.715148pt;}
.ws7d{word-spacing:236.020636pt;}
.ws9b{word-spacing:308.601498pt;}
.ws59{word-spacing:363.266531pt;}
.ws86{word-spacing:365.399977pt;}
.ws73{word-spacing:379.163273pt;}
.ws5d{word-spacing:417.548226pt;}
.ws72{word-spacing:419.013673pt;}
.ws89{word-spacing:419.262376pt;}
.ws87{word-spacing:420.544808pt;}
.ws88{word-spacing:423.109679pt;}
.ws56{word-spacing:655.959878pt;}
.ws4e{word-spacing:877.984013pt;}
.ws99{word-spacing:878.266313pt;}
.ws7b{word-spacing:887.997956pt;}
.ws7c{word-spacing:889.921597pt;}
.ws97{word-spacing:904.110368pt;}
.ws95{word-spacing:913.405919pt;}
.ws6f{word-spacing:1241.385895pt;}
._4{margin-left:-10.616218pt;}
._56{margin-left:-7.553669pt;}
._6{margin-left:-6.375228pt;}
._7{margin-left:-5.209882pt;}
._2{margin-left:-3.421811pt;}
._1{margin-left:-2.045648pt;}
._8{margin-left:-0.956410pt;}
._21{width:1.001700pt;}
._5{width:2.666359pt;}
._0{width:9.670336pt;}
._16{width:12.029451pt;}
._f{width:13.017750pt;}
._d{width:14.478961pt;}
._18{width:15.754186pt;}
._9{width:16.684034pt;}
._c{width:18.171782pt;}
._3{width:19.528147pt;}
._38{width:20.512435pt;}
._14{width:21.519216pt;}
._17{width:22.422492pt;}
._b{width:23.511695pt;}
._a{width:24.972081pt;}
._13{width:26.885737pt;}
._e{width:28.532793pt;}
._10{width:30.047149pt;}
._15{width:32.941540pt;}
._4d{width:35.068352pt;}
._55{width:36.927201pt;}
._57{width:78.904320pt;}
._43{width:165.883932pt;}
._48{width:170.137404pt;}
._54{width:195.054425pt;}
._42{width:215.351562pt;}
._41{width:216.839310pt;}
._3e{width:223.111869pt;}
._51{width:234.160950pt;}
._30{width:238.673769pt;}
._31{width:240.909538pt;}
._47{width:241.918518pt;}
._4a{width:249.304102pt;}
._44{width:259.266708pt;}
._49{width:262.587569pt;}
._36{width:281.424218pt;}
._40{width:285.541399pt;}
._45{width:289.101369pt;}
._52{width:296.805779pt;}
._4b{width:300.950221pt;}
._3d{width:308.282718pt;}
._50{width:310.089246pt;}
._3c{width:324.435413pt;}
._46{width:327.570288pt;}
._33{width:350.046792pt;}
._39{width:351.905599pt;}
._3b{width:358.547332pt;}
._3a{width:359.981947pt;}
._53{width:372.468405pt;}
._32{width:385.710333pt;}
._3f{width:392.446739pt;}
._2f{width:422.266525pt;}
._2e{width:423.499234pt;}
._4f{width:424.805264pt;}
._37{width:428.175026pt;}
._20{width:436.972919pt;}
._35{width:438.801826pt;}
._34{width:449.471133pt;}
._2d{width:505.568741pt;}
._23{width:556.951953pt;}
._1a{width:575.546044pt;}
._4e{width:589.307715pt;}
._2b{width:621.400571pt;}
._22{width:627.032761pt;}
._27{width:638.323713pt;}
._2c{width:642.229046pt;}
._26{width:664.970341pt;}
._28{width:668.025545pt;}
._2a{width:704.448804pt;}
._24{width:729.527989pt;}
._25{width:770.494201pt;}
._1c{width:775.491547pt;}
._19{width:798.655150pt;}
._1d{width:812.897789pt;}
._1b{width:814.117105pt;}
._29{width:819.829002pt;}
._1f{width:851.523347pt;}
._1e{width:911.248576pt;}
._11{width:1685.643137pt;}
._4c{width:2301.995137pt;}
._12{width:2323.248470pt;}
.fs4{font-size:31.880533pt;}
.fsb{font-size:33.219200pt;}
.fsd{font-size:35.221333pt;}
.fs0{font-size:37.193600pt;}
.fs3{font-size:40.381867pt;}
.fs8{font-size:42.077867pt;}
.fs5{font-size:42.507200pt;}
.fsa{font-size:44.292800pt;}
.fse{font-size:45.156265pt;}
.fs7{font-size:47.820800pt;}
.fs9{font-size:50.273600pt;}
.fs1{font-size:53.133867pt;}
.fsc{font-size:55.365867pt;}
.fs6{font-size:63.761067pt;}
.fs2{font-size:95.641600pt;}
.y0{bottom:0.000000pt;}
.y167{bottom:2.533091pt;}
.y148{bottom:2.645444pt;}
.y151{bottom:3.418666pt;}
.y183{bottom:4.011410pt;}
.y17d{bottom:5.899290pt;}
.ybc{bottom:6.988000pt;}
.y189{bottom:7.398632pt;}
.yfd{bottom:7.561633pt;}
.y12d{bottom:8.044013pt;}
.y11c{bottom:8.749825pt;}
.y170{bottom:9.952040pt;}
.y17c{bottom:19.979668pt;}
.y11b{bottom:22.429916pt;}
.y16f{bottom:23.072192pt;}
.yfc{bottom:23.641644pt;}
.y12c{bottom:31.324002pt;}
.y3f{bottom:40.818667pt;}
.y3e{bottom:88.640000pt;}
.y14{bottom:89.120000pt;}
.y10b{bottom:95.981333pt;}
.y1bb{bottom:96.382667pt;}
.y75{bottom:103.473333pt;}
.y13{bottom:105.020000pt;}
.y3d{bottom:107.209333pt;}
.y165{bottom:110.382667pt;}
.y124{bottom:113.613333pt;}
.y10a{bottom:114.552000pt;}
.y1ba{bottom:114.952000pt;}
.ye1{bottom:115.493333pt;}
.y12{bottom:120.920000pt;}
.y74{bottom:122.042667pt;}
.y1df{bottom:122.581333pt;}
.yf7{bottom:125.188000pt;}
.y3c{bottom:125.780000pt;}
.y164{bottom:128.952000pt;}
.y146{bottom:129.873333pt;}
.y123{bottom:132.182667pt;}
.y18e{bottom:132.680000pt;}
.y109{bottom:133.121333pt;}
.y1b9{bottom:133.522667pt;}
.ye0{bottom:134.064000pt;}
.y11{bottom:136.821333pt;}
.y1de{bottom:139.604000pt;}
.y17a{bottom:140.360000pt;}
.y73{bottom:140.613333pt;}
.y3b{bottom:144.350667pt;}
.y163{bottom:147.522667pt;}
.y145{bottom:148.444000pt;}
.yba{bottom:150.068000pt;}
.y122{bottom:150.753333pt;}
.y18d{bottom:151.250667pt;}
.y108{bottom:151.692000pt;}
.y1b8{bottom:152.093333pt;}
.ydf{bottom:152.633333pt;}
.y10{bottom:152.721333pt;}
.y1dd{bottom:156.626667pt;}
.y179{bottom:158.930667pt;}
.y72{bottom:159.184000pt;}
.y3a{bottom:162.920000pt;}
.y11a{bottom:165.070652pt;}
.y162{bottom:166.093333pt;}
.y144{bottom:167.014667pt;}
.yf{bottom:168.621333pt;}
.yb9{bottom:168.638667pt;}
.y121{bottom:169.324000pt;}
.y18c{bottom:169.821333pt;}
.y107{bottom:170.262667pt;}
.y1b7{bottom:170.662667pt;}
.yde{bottom:171.204000pt;}
.y1dc{bottom:173.649333pt;}
.y178{bottom:177.500000pt;}
.y71{bottom:177.753333pt;}
.y96{bottom:179.878667pt;}
.y119{bottom:180.670679pt;}
.y39{bottom:181.490667pt;}
.ye{bottom:184.522667pt;}
.y161{bottom:184.662667pt;}
.y143{bottom:185.584000pt;}
.yb8{bottom:187.209333pt;}
.y120{bottom:187.893333pt;}
.y18b{bottom:188.390667pt;}
.y106{bottom:188.832000pt;}
.y1b6{bottom:189.233333pt;}
.ydd{bottom:189.774667pt;}
.y1db{bottom:190.672000pt;}
.y12b{bottom:193.884020pt;}
.y177{bottom:196.070667pt;}
.y70{bottom:196.324000pt;}
.y95{bottom:198.449333pt;}
.y38{bottom:200.061333pt;}
.yd{bottom:200.422667pt;}
.y160{bottom:203.233333pt;}
.y142{bottom:204.154667pt;}
.yb7{bottom:205.778667pt;}
.y11f{bottom:206.464000pt;}
.y105{bottom:207.402667pt;}
.y1da{bottom:207.694667pt;}
.y1b5{bottom:207.804000pt;}
.ydc{bottom:208.344000pt;}
.y176{bottom:214.641333pt;}
.y6f{bottom:214.894667pt;}
.y94{bottom:217.020000pt;}
.y37{bottom:218.632000pt;}
.y18a{bottom:220.060000pt;}
.y15f{bottom:221.804000pt;}
.y141{bottom:222.725333pt;}
.yc{bottom:224.293333pt;}
.yb6{bottom:224.349333pt;}
.y1d9{bottom:224.717333pt;}
.y104{bottom:225.973333pt;}
.y1b4{bottom:226.373333pt;}
.ydb{bottom:226.914667pt;}
.y175{bottom:233.210667pt;}
.y6e{bottom:233.464000pt;}
.y93{bottom:235.589333pt;}
.y36{bottom:237.201333pt;}
.y11e{bottom:238.133333pt;}
.y188{bottom:239.997333pt;}
.yb{bottom:240.193333pt;}
.y15d{bottom:240.373333pt;}
.y140{bottom:241.294667pt;}
.y1d8{bottom:241.740000pt;}
.yb5{bottom:242.920000pt;}
.y103{bottom:244.544000pt;}
.y1b3{bottom:244.944000pt;}
.y15e{bottom:245.196000pt;}
.yda{bottom:245.485333pt;}
.y174{bottom:251.781333pt;}
.y6d{bottom:252.034667pt;}
.y92{bottom:254.160000pt;}
.y11d{bottom:255.229333pt;}
.y35{bottom:255.772000pt;}
.ya{bottom:256.093333pt;}
.y1d7{bottom:258.762667pt;}
.y15c{bottom:258.944000pt;}
.y13f{bottom:259.865333pt;}
.yb4{bottom:261.490667pt;}
.y102{bottom:263.113333pt;}
.y1b2{bottom:263.514667pt;}
.yd9{bottom:264.054667pt;}
.y173{bottom:270.352000pt;}
.y6c{bottom:270.605333pt;}
.y9{bottom:271.994667pt;}
.y91{bottom:272.730667pt;}
.y34{bottom:274.342667pt;}
.y117{bottom:275.166667pt;}
.y15b{bottom:277.514667pt;}
.y13e{bottom:278.436000pt;}
.y1d6{bottom:279.770667pt;}
.yb3{bottom:280.060000pt;}
.y101{bottom:281.684000pt;}
.y1b1{bottom:282.085333pt;}
.yd8{bottom:282.625333pt;}
.y8{bottom:287.894667pt;}
.y6b{bottom:289.176000pt;}
.y90{bottom:291.300000pt;}
.y33{bottom:292.912000pt;}
.y15a{bottom:296.085333pt;}
.y118{bottom:298.270685pt;}
.yb2{bottom:298.630667pt;}
.y100{bottom:300.254667pt;}
.y1b0{bottom:300.654667pt;}
.y13d{bottom:300.990667pt;}
.yd7{bottom:301.196000pt;}
.y172{bottom:302.021333pt;}
.y7{bottom:303.794667pt;}
.y6a{bottom:307.745333pt;}
.y32{bottom:311.482667pt;}
.y8f{bottom:313.856000pt;}
.y1d5{bottom:314.281333pt;}
.y159{bottom:314.654667pt;}
.yb1{bottom:317.201333pt;}
.yff{bottom:318.824000pt;}
.y171{bottom:319.117333pt;}
.y1af{bottom:319.225333pt;}
.yd6{bottom:319.765333pt;}
.y6{bottom:325.009333pt;}
.y69{bottom:326.316000pt;}
.y31{bottom:330.053333pt;}
.y13c{bottom:332.406667pt;}
.y158{bottom:333.225333pt;}
.y1ae{bottom:337.796000pt;}
.yd5{bottom:338.336000pt;}
.yf6{bottom:338.520000pt;}
.y16e{bottom:339.053333pt;}
.y1d4{bottom:339.582667pt;}
.yb0{bottom:339.756000pt;}
.y5{bottom:340.909333pt;}
.y68{bottom:344.886667pt;}
.y8e{bottom:345.270667pt;}
.y30{bottom:348.622667pt;}
.yfe{bottom:350.493333pt;}
.y13b{bottom:350.976000pt;}
.y157{bottom:351.796000pt;}
.y1ad{bottom:356.365333pt;}
.y4{bottom:356.809333pt;}
.yd4{bottom:356.906667pt;}
.y1d3{bottom:356.916000pt;}
.yf5{bottom:357.089333pt;}
.y67{bottom:363.456000pt;}
.y8d{bottom:363.841333pt;}
.y2f{bottom:367.193333pt;}
.y13a{bottom:369.546667pt;}
.yaf{bottom:371.172000pt;}
.y3{bottom:372.710667pt;}
.yfb{bottom:373.088000pt;}
.y156{bottom:374.350667pt;}
.y1ac{bottom:374.936000pt;}
.yf3{bottom:375.660000pt;}
.yf4{bottom:380.482667pt;}
.y66{bottom:382.026667pt;}
.y1d2{bottom:382.217333pt;}
.y8c{bottom:382.412000pt;}
.y2e{bottom:385.764000pt;}
.y139{bottom:388.117333pt;}
.yae{bottom:389.741333pt;}
.y1ab{bottom:393.506667pt;}
.y2{bottom:393.924000pt;}
.yf2{bottom:394.230667pt;}
.y200{bottom:396.393333pt;}
.yd3{bottom:398.552000pt;}
.y1d1{bottom:399.550667pt;}
.y65{bottom:400.597333pt;}
.y8b{bottom:400.981333pt;}
.y2d{bottom:404.333333pt;}
.y155{bottom:405.766667pt;}
.y138{bottom:406.688000pt;}
.yad{bottom:408.312000pt;}
.y1{bottom:409.824000pt;}
.yd2{bottom:411.172000pt;}
.y1aa{bottom:412.076000pt;}
.yf1{bottom:412.801333pt;}
.y1ff{bottom:413.416000pt;}
.y64{bottom:419.166667pt;}
.y8a{bottom:419.552000pt;}
.yd1{bottom:423.790667pt;}
.y154{bottom:424.336000pt;}
.y1d0{bottom:424.852000pt;}
.y137{bottom:425.257333pt;}
.yac{bottom:426.882667pt;}
.y2c{bottom:426.889333pt;}
.y1fe{bottom:430.438667pt;}
.y1a9{bottom:430.646667pt;}
.yf0{bottom:431.370667pt;}
.yd0{bottom:436.410667pt;}
.y63{bottom:437.737333pt;}
.y89{bottom:438.122667pt;}
.y1cf{bottom:442.184000pt;}
.y153{bottom:442.906667pt;}
.y136{bottom:443.828000pt;}
.ycf{bottom:449.029333pt;}
.y1a8{bottom:449.217333pt;}
.yab{bottom:449.437333pt;}
.yef{bottom:449.941333pt;}
.y62{bottom:456.308000pt;}
.y88{bottom:456.693333pt;}
.y187{bottom:457.570667pt;}
.y1ce{bottom:459.517333pt;}
.y135{bottom:462.398667pt;}
.y1a7{bottom:467.786667pt;}
.yce{bottom:468.598667pt;}
.y1fd{bottom:468.688000pt;}
.yee{bottom:472.496000pt;}
.y152{bottom:474.576000pt;}
.y61{bottom:474.877333pt;}
.y87{bottom:475.262667pt;}
.y186{bottom:476.140000pt;}
.y1cd{bottom:476.849333pt;}
.yaa{bottom:480.853333pt;}
.y134{bottom:480.968000pt;}
.y1fc{bottom:485.710667pt;}
.y1a6{bottom:486.357333pt;}
.y60{bottom:493.448000pt;}
.y86{bottom:493.833333pt;}
.y150{bottom:494.513333pt;}
.y185{bottom:494.710667pt;}
.ycd{bottom:495.309333pt;}
.y2b{bottom:497.300000pt;}
.ya9{bottom:499.424000pt;}
.y133{bottom:499.538667pt;}
.y1cc{bottom:502.152000pt;}
.y1fb{bottom:502.733333pt;}
.yed{bottom:503.912000pt;}
.y1a5{bottom:504.928000pt;}
.y5f{bottom:512.018667pt;}
.y85{bottom:512.404000pt;}
.ya8{bottom:517.993333pt;}
.y132{bottom:518.109333pt;}
.y1cb{bottom:519.484000pt;}
.y1fa{bottom:519.756000pt;}
.yeb{bottom:522.482667pt;}
.y1a4{bottom:523.498667pt;}
.y184{bottom:526.380000pt;}
.yec{bottom:527.304000pt;}
.ycc{bottom:528.290667pt;}
.y5e{bottom:530.589333pt;}
.y84{bottom:530.973333pt;}
.y2a{bottom:531.810667pt;}
.y131{bottom:536.678667pt;}
.y1f9{bottom:536.778667pt;}
.y1ca{bottom:536.816000pt;}
.yea{bottom:541.052000pt;}
.y1a3{bottom:542.068000pt;}
.y182{bottom:546.317333pt;}
.y5d{bottom:549.158667pt;}
.y83{bottom:549.544000pt;}
.y29{bottom:550.380000pt;}
.y1f8{bottom:553.801333pt;}
.y1c9{bottom:554.148000pt;}
.y130{bottom:555.249333pt;}
.ye9{bottom:559.622667pt;}
.ya7{bottom:560.636000pt;}
.y1a2{bottom:560.638667pt;}
.y5c{bottom:567.729333pt;}
.y82{bottom:568.114667pt;}
.y28{bottom:568.950667pt;}
.y1f7{bottom:570.824000pt;}
.ycb{bottom:570.933333pt;}
.y1c8{bottom:571.480000pt;}
.y16d{bottom:572.393333pt;}
.ya6{bottom:576.576000pt;}
.ye8{bottom:578.193333pt;}
.y1a1{bottom:579.209333pt;}
.y5b{bottom:586.300000pt;}
.y81{bottom:586.684000pt;}
.yca{bottom:586.873333pt;}
.y12f{bottom:586.918667pt;}
.y27{bottom:587.521333pt;}
.y1f6{bottom:587.846667pt;}
.y1c7{bottom:588.812000pt;}
.y16c{bottom:590.964000pt;}
.ya5{bottom:592.516000pt;}
.ye7{bottom:596.762667pt;}
.y1a0{bottom:597.778667pt;}
.yc9{bottom:602.813333pt;}
.y12e{bottom:604.014667pt;}
.y5a{bottom:604.869333pt;}
.y80{bottom:605.254667pt;}
.y26{bottom:606.090667pt;}
.ya4{bottom:608.456000pt;}
.y16b{bottom:609.533333pt;}
.y19f{bottom:616.349333pt;}
.yc8{bottom:618.754667pt;}
.ye6{bottom:619.318667pt;}
.y116{bottom:620.361333pt;}
.y1f5{bottom:621.892000pt;}
.y1c6{bottom:622.085333pt;}
.y59{bottom:623.440000pt;}
.y7f{bottom:623.825333pt;}
.ya3{bottom:624.396000pt;}
.y25{bottom:624.661333pt;}
.y12a{bottom:626.608000pt;}
.y16a{bottom:628.104000pt;}
.yc7{bottom:634.694667pt;}
.y115{bottom:636.301333pt;}
.y19e{bottom:638.904000pt;}
.y1f4{bottom:638.914667pt;}
.ya2{bottom:640.337333pt;}
.y1c5{bottom:640.654667pt;}
.y58{bottom:642.010667pt;}
.y7e{bottom:642.394667pt;}
.y24{bottom:643.232000pt;}
.yfa{bottom:646.380000pt;}
.ye5{bottom:647.893333pt;}
.yc6{bottom:650.634667pt;}
.y114{bottom:652.241333pt;}
.y1f3{bottom:655.937333pt;}
.ya1{bottom:656.277333pt;}
.y1c4{bottom:659.225333pt;}
.y169{bottom:659.773333pt;}
.y57{bottom:660.580000pt;}
.y23{bottom:661.801333pt;}
.y7d{bottom:664.950667pt;}
.yc5{bottom:666.574667pt;}
.ya0{bottom:672.217333pt;}
.y1f2{bottom:672.961333pt;}
.y113{bottom:674.584000pt;}
.y168{bottom:676.869333pt;}
.yf9{bottom:677.796000pt;}
.y55{bottom:679.150667pt;}
.y22{bottom:680.372000pt;}
.y19d{bottom:681.546667pt;}
.yc4{bottom:682.514667pt;}
.y56{bottom:683.972000pt;}
.y1f1{bottom:689.984000pt;}
.y14f{bottom:693.045333pt;}
.y9f{bottom:694.560000pt;}
.y7c{bottom:696.365333pt;}
.y166{bottom:696.806667pt;}
.y19c{bottom:697.486667pt;}
.y54{bottom:697.721333pt;}
.yc3{bottom:698.454667pt;}
.y21{bottom:698.942667pt;}
.y112{bottom:703.620000pt;}
.y1f0{bottom:707.006667pt;}
.y14e{bottom:711.616000pt;}
.y19b{bottom:713.426667pt;}
.yc2{bottom:714.396000pt;}
.y7b{bottom:714.936000pt;}
.y52{bottom:716.290667pt;}
.y53{bottom:721.113333pt;}
.y9e{bottom:723.596000pt;}
.y1ef{bottom:724.029333pt;}
.y20{bottom:725.482667pt;}
.y19a{bottom:729.368000pt;}
.y14d{bottom:730.186667pt;}
.yc1{bottom:730.336000pt;}
.y7a{bottom:733.506667pt;}
.y51{bottom:734.861333pt;}
.y111{bottom:736.601333pt;}
.y1ee{bottom:741.052000pt;}
.y181{bottom:741.816000pt;}
.y199{bottom:745.308000pt;}
.yc0{bottom:746.276000pt;}
.y14c{bottom:748.756000pt;}
.y79{bottom:752.077333pt;}
.y9d{bottom:753.117333pt;}
.y50{bottom:753.432000pt;}
.y110{bottom:755.172000pt;}
.y1ed{bottom:758.074667pt;}
.y180{bottom:760.386667pt;}
.y1f{bottom:760.741333pt;}
.y14b{bottom:767.326667pt;}
.y198{bottom:767.649333pt;}
.ybf{bottom:768.618667pt;}
.y78{bottom:770.646667pt;}
.y9c{bottom:771.686667pt;}
.y4f{bottom:772.002667pt;}
.y10f{bottom:773.742667pt;}
.yf8{bottom:774.632000pt;}
.y1e{bottom:775.088000pt;}
.y1ec{bottom:775.097333pt;}
.y14a{bottom:785.897333pt;}
.y77{bottom:789.217333pt;}
.y9b{bottom:790.257333pt;}
.y4e{bottom:790.572000pt;}
.y17f{bottom:792.056000pt;}
.y1eb{bottom:792.120000pt;}
.y10e{bottom:792.312000pt;}
.y1d{bottom:793.290667pt;}
.y197{bottom:796.686667pt;}
.ybe{bottom:797.654667pt;}
.y1c{bottom:803.780000pt;}
.y1c3{bottom:807.788000pt;}
.y9a{bottom:808.828000pt;}
.y4d{bottom:809.142667pt;}
.y17e{bottom:809.152000pt;}
.y10d{bottom:810.882667pt;}
.y76{bottom:811.772000pt;}
.y149{bottom:817.566667pt;}
.y1b{bottom:821.984000pt;}
.y1ea{bottom:826.165333pt;}
.y1c2{bottom:826.357333pt;}
.y99{bottom:827.397333pt;}
.y4c{bottom:827.713333pt;}
.y17b{bottom:829.089333pt;}
.y196{bottom:829.668000pt;}
.y1a{bottom:832.472000pt;}
.y10c{bottom:833.437333pt;}
.y147{bottom:837.502667pt;}
.ybd{bottom:839.989333pt;}
.y1e9{bottom:843.188000pt;}
.y1c1{bottom:844.928000pt;}
.y4b{bottom:846.282667pt;}
.y195{bottom:848.237333pt;}
.y98{bottom:849.953333pt;}
.y19{bottom:850.676000pt;}
.ye4{bottom:851.413333pt;}
.ybb{bottom:859.925333pt;}
.y1e8{bottom:860.210667pt;}
.y1c0{bottom:863.498667pt;}
.y4a{bottom:864.853333pt;}
.y194{bottom:866.808000pt;}
.ye3{bottom:869.984000pt;}
.y1e7{bottom:877.233333pt;}
.y97{bottom:878.528000pt;}
.y129{bottom:878.605333pt;}
.y1bf{bottom:882.068000pt;}
.y49{bottom:883.424000pt;}
.y18{bottom:890.073333pt;}
.y192{bottom:890.532000pt;}
.y1e6{bottom:894.256000pt;}
.y128{bottom:894.545333pt;}
.y193{bottom:899.645333pt;}
.y1be{bottom:900.638667pt;}
.ye2{bottom:901.652000pt;}
.y48{bottom:901.993333pt;}
.y191{bottom:908.637333pt;}
.y127{bottom:910.485333pt;}
.y1e5{bottom:911.278667pt;}
.y1bd{bottom:919.209333pt;}
.y47{bottom:920.564000pt;}
.y17{bottom:924.584000pt;}
.y1e4{bottom:928.301333pt;}
.y126{bottom:932.828000pt;}
.y190{bottom:938.948000pt;}
.y45{bottom:939.134667pt;}
.y1bc{bottom:941.764000pt;}
.y18f{bottom:942.229333pt;}
.y46{bottom:943.956000pt;}
.y1e3{bottom:945.324000pt;}
.y16{bottom:952.440000pt;}
.y44{bottom:957.704000pt;}
.y125{bottom:961.864000pt;}
.y1e2{bottom:962.346667pt;}
.y43{bottom:976.274667pt;}
.y1e1{bottom:979.369333pt;}
.y15{bottom:980.294667pt;}
.y42{bottom:994.845333pt;}
.y1e0{bottom:996.392000pt;}
.y41{bottom:1013.414667pt;}
.y40{bottom:1067.149333pt;}
.h22{height:26.757402pt;}
.h23{height:27.365402pt;}
.h12{height:28.023859pt;}
.h6{height:28.947524pt;}
.hf{height:30.605184pt;}
.h16{height:32.572854pt;}
.h2{height:33.771789pt;}
.hb{height:36.666735pt;}
.h11{height:36.873667pt;}
.h8{height:38.256384pt;}
.h7{height:38.596538pt;}
.h3{height:38.947124pt;}
.h17{height:41.760726pt;}
.hc{height:43.421286pt;}
.h10{height:44.376858pt;}
.ha{height:45.907968pt;}
.h14{height:46.493261pt;}
.he{height:46.493794pt;}
.h9{height:48.245551pt;}
.h5{height:48.365611pt;}
.h20{height:58.613402pt;}
.h21{height:61.370884pt;}
.h4{height:68.861952pt;}
.h24{height:77.069355pt;}
.h25{height:134.549402pt;}
.hd{height:166.773333pt;}
.h1e{height:174.485333pt;}
.h1a{height:177.518667pt;}
.h19{height:189.196000pt;}
.h1f{height:196.558667pt;}
.h1d{height:197.610667pt;}
.h1b{height:202.744000pt;}
.h13{height:211.153333pt;}
.h1c{height:212.325333pt;}
.h18{height:218.626667pt;}
.h15{height:311.825333pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.wb{width:229.142667pt;}
.w8{width:250.861333pt;}
.w6{width:318.130667pt;}
.w7{width:335.882667pt;}
.w2{width:336.817333pt;}
.wc{width:359.482667pt;}
.w4{width:459.680000pt;}
.wa{width:483.513333pt;}
.w9{width:492.973333pt;}
.w5{width:550.773200pt;}
.w3{width:643.736533pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x58{left:8.195871pt;}
.x5a{left:26.835865pt;}
.x1{left:47.621333pt;}
.x59{left:70.995859pt;}
.x47{left:74.794133pt;}
.x6f{left:76.309333pt;}
.x4e{left:80.988002pt;}
.x31{left:87.586533pt;}
.x51{left:99.548020pt;}
.x64{left:113.821040pt;}
.x62{left:115.638556pt;}
.x57{left:121.274800pt;}
.x4f{left:131.307989pt;}
.x50{left:143.708391pt;}
.x48{left:155.193147pt;}
.x52{left:215.227708pt;}
.x16{left:219.865333pt;}
.x4{left:220.912000pt;}
.x2{left:221.858667pt;}
.x65{left:223.864364pt;}
.x37{left:229.828000pt;}
.x40{left:233.997333pt;}
.x63{left:235.820418pt;}
.x3{left:239.541333pt;}
.x3f{left:243.400000pt;}
.x61{left:245.078186pt;}
.x60{left:248.321680pt;}
.x5{left:250.204000pt;}
.x56{left:251.297333pt;}
.x3a{left:252.888000pt;}
.x4c{left:253.842667pt;}
.x4d{left:254.793333pt;}
.x35{left:256.938667pt;}
.x3b{left:258.094667pt;}
.x3e{left:260.480000pt;}
.x55{left:263.744000pt;}
.x46{left:265.077333pt;}
.x34{left:266.290667pt;}
.x4b{left:267.238667pt;}
.x3c{left:268.310667pt;}
.x39{left:270.336000pt;}
.x1b{left:271.926667pt;}
.x17{left:272.944000pt;}
.x1c{left:278.568000pt;}
.x6e{left:279.529333pt;}
.x18{left:282.889333pt;}
.x19{left:287.401333pt;}
.x6d{left:289.298667pt;}
.x32{left:290.566667pt;}
.x1a{left:294.044000pt;}
.x2e{left:297.368000pt;}
.x36{left:302.316000pt;}
.x12{left:305.548000pt;}
.x2d{left:309.661333pt;}
.x33{left:310.916000pt;}
.x13{left:314.577333pt;}
.x2b{left:315.578667pt;}
.x14{left:318.984000pt;}
.x2c{left:320.560000pt;}
.x2f{left:321.948000pt;}
.x15{left:325.625333pt;}
.x2a{left:331.053333pt;}
.x5b{left:333.508742pt;}
.x30{left:338.832000pt;}
.x66{left:356.596478pt;}
.x41{left:406.344000pt;}
.x53{left:427.104000pt;}
.x69{left:436.832000pt;}
.x54{left:440.388000pt;}
.x49{left:451.837333pt;}
.x6a{left:456.033333pt;}
.x67{left:457.384000pt;}
.xc{left:460.588000pt;}
.x4a{left:465.120000pt;}
.xd{left:466.298667pt;}
.x5c{left:477.378667pt;}
.x6b{left:482.784000pt;}
.x5d{left:488.304000pt;}
.x68{left:491.237333pt;}
.x22{left:493.278667pt;}
.x23{left:499.920000pt;}
.x5e{left:501.980000pt;}
.x24{left:503.174667pt;}
.x5f{left:512.474667pt;}
.x25{left:516.458667pt;}
.x6{left:598.518667pt;}
.x7{left:604.961333pt;}
.x8{left:606.173333pt;}
.x38{left:608.098667pt;}
.x9{left:612.616000pt;}
.x44{left:619.730667pt;}
.x1f{left:621.241333pt;}
.x20{left:627.882667pt;}
.x45{left:629.238667pt;}
.x21{left:631.246667pt;}
.x42{left:633.894667pt;}
.x1d{left:638.594667pt;}
.x1e{left:645.236000pt;}
.x27{left:646.236000pt;}
.x10{left:651.861333pt;}
.x11{left:658.504000pt;}
.x28{left:659.520000pt;}
.x43{left:668.689333pt;}
.xe{left:681.597333pt;}
.xf{left:687.309333pt;}
.x3d{left:722.092000pt;}
.x26{left:727.152000pt;}
.x29{left:728.082667pt;}
.x6c{left:731.540000pt;}
.xa{left:734.133333pt;}
.xb{left:740.576000pt;}
}




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