
    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_17b5c9257eda2d412d6a301d.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.691000;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_f8511a446b694f17f31ae63c.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_79cf805e5b0679dd8884b9fd.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_3dcf84f2015b0160025be760.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.723000;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_7fd04f15bdf905d1fe0c548b.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.761000;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_53140b8d9ccfcf65a5459558.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.151000;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_b3b5318ae31382356ac33b18.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.897000;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_d487b913328e08f1794ac3aa.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_3aec0ddedfc601a1235fd0e5.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_52521e14869355c48b53979a.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_27e13ad2299068448c891b16.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.665000;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_0811b057762aec192a5ba9c1.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.000000;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_48c15ccfadd9129898c3884b.woff2')format("woff");}.ffd{font-family:ffd;line-height:2.552000;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_e762ce4ba64852e9b83b9009.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.540000;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_953ce37dae4c839bd3ac7b2b.woff2')format("woff");}.fff{font-family:fff;line-height:1.151000;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_0a4f565c1d00258b61736716.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.651000;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_cfec7a397953e8a1588e6819.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.665000;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_4dfd59a0217f98c8218b7c69.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.726000;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_31af617b19c54dd358a063d9.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.869000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m4{transform:matrix(0.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);}
.m27{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);}
.m28{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);}
.m7{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);}
.m15{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);}
.m17{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);}
.m10{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);}
.m9{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);}
.m29{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);}
.m6{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);}
.m2{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);}
.m21{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);}
.m14{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);}
.m1c{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);}
.m1b{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);}
.m1{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);}
.mc{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);}
.m1a{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);}
.me{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);}
.m13{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);}
.m5{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);}
.m26{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);}
.mf{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);}
.m25{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);}
.m22{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);}
.m1f{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);}
.ma{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);}
.m19{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);}
.m11{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.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);}
.m18{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);}
.md{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);}
.m1d{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);}
.m8{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);}
.m1e{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);}
.m12{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);}
.m20{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);}
.m24{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);}
.m3{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);}
.mb{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);}
.v2{vertical-align:-19.524000px;}
.v6{vertical-align:-11.184000px;}
.v14{vertical-align:-8.964000px;}
.v15{vertical-align:-6.456000px;}
.v12{vertical-align:-4.572000px;}
.v0{vertical-align:0.000000px;}
.v11{vertical-align:9.414000px;}
.v13{vertical-align:11.190000px;}
.vb{vertical-align:14.106000px;}
.vc{vertical-align:16.326000px;}
.v1{vertical-align:21.702000px;}
.v4{vertical-align:25.296000px;}
.ve{vertical-align:29.328000px;}
.v3{vertical-align:31.452000px;}
.v10{vertical-align:35.952000px;}
.va{vertical-align:41.190000px;}
.v8{vertical-align:45.756000px;}
.vf{vertical-align:49.938000px;}
.v9{vertical-align:55.176000px;}
.v7{vertical-align:58.434000px;}
.vd{vertical-align:88.812000px;}
.v5{vertical-align:131.604000px;}
.lsa{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.000124px;}
.lsf{letter-spacing:0.000150px;}
.ls1{letter-spacing:0.000240px;}
.ls0{letter-spacing:0.000355px;}
.ls35{letter-spacing:0.000612px;}
.ls55{letter-spacing:0.001289px;}
.ls58{letter-spacing:0.001392px;}
.ls46{letter-spacing:0.001465px;}
.ls52{letter-spacing:0.001518px;}
.ls5b{letter-spacing:0.002074px;}
.ls49{letter-spacing:0.002183px;}
.ls56{letter-spacing:0.002721px;}
.ls4a{letter-spacing:0.002865px;}
.ls53{letter-spacing:0.002958px;}
.ls60{letter-spacing:0.002985px;}
.ls9{letter-spacing:0.003488px;}
.ls7{letter-spacing:0.003494px;}
.ls68{letter-spacing:0.004800px;}
.ls19{letter-spacing:0.004937px;}
.ls5f{letter-spacing:0.005438px;}
.ls1c{letter-spacing:0.670741px;}
.ls16{letter-spacing:0.676741px;}
.ls15{letter-spacing:0.746725px;}
.lsb{letter-spacing:1.275394px;}
.ls6{letter-spacing:1.861130px;}
.ls5e{letter-spacing:2.270559px;}
.ls11{letter-spacing:2.989200px;}
.ls12{letter-spacing:2.989474px;}
.ls1d{letter-spacing:2.991986px;}
.ls3{letter-spacing:2.998354px;}
.ls17{letter-spacing:3.733142px;}
.ls29{letter-spacing:3.735986px;}
.ls5a{letter-spacing:10.218048px;}
.ls57{letter-spacing:10.221142px;}
.ls5d{letter-spacing:10.221696px;}
.ls5c{letter-spacing:10.222608px;}
.ls62{letter-spacing:10.342237px;}
.ls45{letter-spacing:10.759096px;}
.ls4d{letter-spacing:10.759680px;}
.ls4b{letter-spacing:10.760640px;}
.ls4c{letter-spacing:10.763896px;}
.ls31{letter-spacing:11.224409px;}
.ls28{letter-spacing:11.621899px;}
.ls25{letter-spacing:11.622124px;}
.ls22{letter-spacing:11.627899px;}
.ls8{letter-spacing:11.954850px;}
.ls64{letter-spacing:12.104400px;}
.lse{letter-spacing:12.339483px;}
.ls2c{letter-spacing:12.345483px;}
.ls23{letter-spacing:12.366124px;}
.ls2b{letter-spacing:12.370200px;}
.ls59{letter-spacing:12.494079px;}
.ls1f{letter-spacing:12.871348px;}
.ls1b{letter-spacing:13.089483px;}
.ls4f{letter-spacing:13.090856px;}
.ls48{letter-spacing:13.146862px;}
.ls47{letter-spacing:13.151662px;}
.ls40{letter-spacing:13.389734px;}
.ls61{letter-spacing:13.448400px;}
.ls63{letter-spacing:13.454400px;}
.ls65{letter-spacing:13.675527px;}
.ls3f{letter-spacing:13.927715px;}
.ls66{letter-spacing:14.020988px;}
.ls3c{letter-spacing:14.465695px;}
.ls24{letter-spacing:14.607850px;}
.ls30{letter-spacing:14.613986px;}
.ls4e{letter-spacing:14.765795px;}
.ls51{letter-spacing:14.824349px;}
.ls43{letter-spacing:14.873482px;}
.ls36{letter-spacing:14.939146px;}
.ls32{letter-spacing:14.939899px;}
.ls33{letter-spacing:14.940562px;}
.ls3a{letter-spacing:14.943623px;}
.ls41{letter-spacing:14.943900px;}
.ls38{letter-spacing:14.944435px;}
.ls3b{letter-spacing:14.945146px;}
.ls37{letter-spacing:14.946124px;}
.ls21{letter-spacing:14.946562px;}
.ls50{letter-spacing:15.003676px;}
.ls2d{letter-spacing:15.013145px;}
.ls44{letter-spacing:15.123227px;}
.ls3e{letter-spacing:15.133653px;}
.ls3d{letter-spacing:15.134025px;}
.ls54{letter-spacing:15.362329px;}
.lsc{letter-spacing:15.491729px;}
.ls42{letter-spacing:16.044670px;}
.ls14{letter-spacing:16.602124px;}
.ls13{letter-spacing:16.602150px;}
.ls2a{letter-spacing:16.608124px;}
.ls67{letter-spacing:17.073929px;}
.lsd{letter-spacing:17.319483px;}
.ls1a{letter-spacing:17.325483px;}
.ls39{letter-spacing:17.930803px;}
.ls20{letter-spacing:17.931986px;}
.ls2e{letter-spacing:19.935986px;}
.ls18{letter-spacing:45.190741px;}
.ls2f{letter-spacing:45.508741px;}
.ls1e{letter-spacing:48.418741px;}
.ls2{letter-spacing:57.415200px;}
.ls27{letter-spacing:67.482845px;}
.ls4{letter-spacing:70.236600px;}
.ls5{letter-spacing:72.353510px;}
.ls34{letter-spacing:93.543361px;}
.ls26{letter-spacing:822.616741px;}
.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;}
}
.ws12{word-spacing:-17.394700px;}
.ws8{word-spacing:-15.655334px;}
.ws4f{word-spacing:-14.943900px;}
.ws23{word-spacing:-13.915795px;}
.ws7{word-spacing:-13.449600px;}
.ws21{word-spacing:-11.955150px;}
.ws3{word-spacing:-11.357400px;}
.ws57{word-spacing:-10.910550px;}
.ws8c{word-spacing:-10.759680px;}
.wsa0{word-spacing:-10.221696px;}
.ws93{word-spacing:-8.368560px;}
.ws55{word-spacing:-8.291850px;}
.ws86{word-spacing:-3.945190px;}
.ws6c{word-spacing:-3.706087px;}
.ws6e{word-spacing:-3.689693px;}
.ws41{word-spacing:-3.287658px;}
.wsbf{word-spacing:-3.281702px;}
.ws39{word-spacing:-3.227882px;}
.wsb9{word-spacing:-3.120307px;}
.wsa9{word-spacing:-3.108331px;}
.wscc{word-spacing:-3.066509px;}
.ws9b{word-spacing:-2.988780px;}
.ws6d{word-spacing:-2.929004px;}
.wsbb{word-spacing:-2.636122px;}
.wsc9{word-spacing:-2.582323px;}
.ws49{word-spacing:-2.510575px;}
.ws10{word-spacing:-2.391024px;}
.wsd{word-spacing:-2.331248px;}
.ws88{word-spacing:-2.271473px;}
.ws81{word-spacing:-2.151922px;}
.ws59{word-spacing:-2.092146px;}
.ws9d{word-spacing:-1.972595px;}
.wsb{word-spacing:-1.908367px;}
.ws99{word-spacing:-1.853044px;}
.ws1f{word-spacing:-1.733492px;}
.ws35{word-spacing:-1.673717px;}
.wsd9{word-spacing:-1.667750px;}
.ws5a{word-spacing:-1.613941px;}
.ws82{word-spacing:-1.554166px;}
.ws2d{word-spacing:-1.494390px;}
.wsc1{word-spacing:-1.344960px;}
.wsa{word-spacing:-1.322630px;}
.ws9c{word-spacing:-1.315063px;}
.wsdc{word-spacing:-1.291162px;}
.ws5c{word-spacing:-1.255288px;}
.wsf6{word-spacing:-1.237363px;}
.wsa6{word-spacing:-1.195512px;}
.ws83{word-spacing:-1.135736px;}
.ws80{word-spacing:-1.075961px;}
.ws33{word-spacing:-1.016185px;}
.ws7f{word-spacing:-0.956410px;}
.ws66{word-spacing:-0.896634px;}
.ws7e{word-spacing:-0.836858px;}
.wsb1{word-spacing:-0.806976px;}
.ws3b{word-spacing:-0.777083px;}
.wsa7{word-spacing:-0.717307px;}
.ws38{word-spacing:-0.657532px;}
.wsed{word-spacing:-0.645581px;}
.ws78{word-spacing:-0.597756px;}
.ws79{word-spacing:-0.537980px;}
.ws7d{word-spacing:-0.478205px;}
.ws26{word-spacing:-0.418429px;}
.wsc{word-spacing:-0.358654px;}
.ws2f{word-spacing:-0.298878px;}
.ws17{word-spacing:-0.239102px;}
.ws95{word-spacing:-0.215194px;}
.ws2c{word-spacing:-0.179327px;}
.ws96{word-spacing:-0.172155px;}
.wsca{word-spacing:-0.161395px;}
.ws2b{word-spacing:-0.119551px;}
.wsb2{word-spacing:-0.107597px;}
.ws2{word-spacing:-0.059776px;}
.wsb8{word-spacing:-0.053798px;}
.ws22{word-spacing:-0.047821px;}
.ws8f{word-spacing:-0.043039px;}
.wsa3{word-spacing:-0.040887px;}
.ws94{word-spacing:-0.004800px;}
.ws92{word-spacing:-0.004677px;}
.ws76{word-spacing:-0.003300px;}
.wsd1{word-spacing:-0.002448px;}
.ws72{word-spacing:-0.001500px;}
.ws74{word-spacing:-0.001484px;}
.wsa2{word-spacing:-0.000912px;}
.ws0{word-spacing:0.000000px;}
.wsa4{word-spacing:0.000117px;}
.ws90{word-spacing:0.000123px;}
.ws73{word-spacing:0.001228px;}
.ws77{word-spacing:0.003028px;}
.ws8e{word-spacing:0.003840px;}
.ws98{word-spacing:0.004500px;}
.ws63{word-spacing:0.046984px;}
.ws5{word-spacing:0.053798px;}
.wse{word-spacing:0.059776px;}
.ws9f{word-spacing:0.081774px;}
.ws8b{word-spacing:0.086077px;}
.ws6{word-spacing:0.107597px;}
.ws34{word-spacing:0.119551px;}
.wsc6{word-spacing:0.161395px;}
.ws31{word-spacing:0.179327px;}
.wsb4{word-spacing:0.215194px;}
.ws13{word-spacing:0.239102px;}
.ws14{word-spacing:0.298878px;}
.wsb5{word-spacing:0.322790px;}
.ws19{word-spacing:0.358654px;}
.wsde{word-spacing:0.376589px;}
.ws4d{word-spacing:0.418429px;}
.wsdf{word-spacing:0.430387px;}
.wsa8{word-spacing:0.478205px;}
.wsd3{word-spacing:0.484186px;}
.ws36{word-spacing:0.537980px;}
.wsf2{word-spacing:0.537984px;}
.wse1{word-spacing:0.591782px;}
.wsee{word-spacing:0.645581px;}
.ws27{word-spacing:0.717307px;}
.wscd{word-spacing:0.753178px;}
.ws15{word-spacing:0.836858px;}
.ws4b{word-spacing:0.896634px;}
.ws30{word-spacing:0.956410px;}
.ws7b{word-spacing:1.016185px;}
.ws89{word-spacing:1.075961px;}
.ws8a{word-spacing:1.135736px;}
.ws28{word-spacing:1.195512px;}
.ws3e{word-spacing:1.255288px;}
.ws18{word-spacing:1.315063px;}
.ws87{word-spacing:1.374839px;}
.wsd2{word-spacing:1.398758px;}
.wse2{word-spacing:1.452557px;}
.ws9e{word-spacing:1.554166px;}
.ws60{word-spacing:1.634567px;}
.ws54{word-spacing:1.638467px;}
.ws61{word-spacing:1.640567px;}
.ws64{word-spacing:1.673717px;}
.ws4a{word-spacing:1.733492px;}
.wsce{word-spacing:1.775347px;}
.ws29{word-spacing:1.793268px;}
.ws25{word-spacing:1.853044px;}
.wsd6{word-spacing:1.882944px;}
.ws45{word-spacing:1.972595px;}
.wsb0{word-spacing:2.044339px;}
.ws65{word-spacing:2.151922px;}
.ws1a{word-spacing:2.211697px;}
.wsaf{word-spacing:2.313331px;}
.ws5f{word-spacing:2.403523px;}
.ws37{word-spacing:2.450800px;}
.ws3a{word-spacing:2.570351px;}
.wsbc{word-spacing:2.582323px;}
.wsbd{word-spacing:2.636122px;}
.ws9a{word-spacing:2.809453px;}
.wse5{word-spacing:2.851315px;}
.ws70{word-spacing:2.869229px;}
.ws46{word-spacing:2.929004px;}
.wsae{word-spacing:3.108331px;}
.ws68{word-spacing:3.252329px;}
.ws69{word-spacing:3.252660px;}
.ws5e{word-spacing:3.258113px;}
.ws1e{word-spacing:3.407209px;}
.ws40{word-spacing:3.466985px;}
.wse7{word-spacing:3.604493px;}
.ws84{word-spacing:3.765863px;}
.ws43{word-spacing:3.885414px;}
.ws44{word-spacing:3.945190px;}
.ws5d{word-spacing:3.996660px;}
.ws51{word-spacing:4.002329px;}
.ws53{word-spacing:4.002660px;}
.wsf3{word-spacing:4.034880px;}
.wsa5{word-spacing:4.124516px;}
.ws3d{word-spacing:4.184292px;}
.ws2e{word-spacing:4.244068px;}
.wsaa{word-spacing:4.303843px;}
.wsf{word-spacing:4.423394px;}
.wsd0{word-spacing:4.519066px;}
.wsa1{word-spacing:4.542232px;}
.ws1d{word-spacing:4.542946px;}
.ws16{word-spacing:4.602721px;}
.wsf0{word-spacing:4.680461px;}
.ws7a{word-spacing:4.722272px;}
.ws8d{word-spacing:4.781297px;}
.ws91{word-spacing:4.786097px;}
.wsec{word-spacing:5.003251px;}
.ws3f{word-spacing:5.021150px;}
.ws32{word-spacing:5.200477px;}
.wsb6{word-spacing:5.374618px;}
.wsd7{word-spacing:5.374762px;}
.wsb3{word-spacing:5.378822px;}
.ws2a{word-spacing:5.379804px;}
.ws9{word-spacing:5.379840px;}
.wsea{word-spacing:5.433638px;}
.ws3c{word-spacing:5.439580px;}
.ws11{word-spacing:5.798233px;}
.ws7c{word-spacing:5.917784px;}
.ws1c{word-spacing:5.977560px;}
.wsad{word-spacing:6.276438px;}
.ws71{word-spacing:6.572011px;}
.wsf5{word-spacing:6.671002px;}
.wsf4{word-spacing:6.724800px;}
.ws85{word-spacing:6.933970px;}
.ws75{word-spacing:7.471950px;}
.ws4c{word-spacing:8.129482px;}
.ws42{word-spacing:8.249033px;}
.ws6f{word-spacing:8.607686px;}
.ws67{word-spacing:8.976660px;}
.ws50{word-spacing:8.982660px;}
.wsab{word-spacing:9.205442px;}
.ws5b{word-spacing:9.862974px;}
.ws52{word-spacing:9.982525px;}
.ws97{word-spacing:10.102076px;}
.wsba{word-spacing:10.275494px;}
.ws1b{word-spacing:10.998710px;}
.wsac{word-spacing:11.596466px;}
.wsda{word-spacing:11.781850px;}
.ws20{word-spacing:11.905687px;}
.wsc0{word-spacing:12.050842px;}
.wscb{word-spacing:13.234406px;}
.wsc8{word-spacing:13.288205px;}
.wscf{word-spacing:13.342003px;}
.wsc7{word-spacing:13.390022px;}
.wsd5{word-spacing:13.393862px;}
.wsdb{word-spacing:13.394784px;}
.wsbe{word-spacing:13.395802px;}
.wsc5{word-spacing:13.396022px;}
.wse3{word-spacing:13.449600px;}
.wsdd{word-spacing:13.610995px;}
.wse0{word-spacing:13.772390px;}
.wsd4{word-spacing:13.879987px;}
.wsc2{word-spacing:14.686963px;}
.ws4e{word-spacing:14.884124px;}
.wsef{word-spacing:15.440141px;}
.wsf7{word-spacing:18.668045px;}
.wsb7{word-spacing:18.770131px;}
.wse8{word-spacing:18.773674px;}
.wse4{word-spacing:18.775325px;}
.wsd8{word-spacing:18.775642px;}
.wseb{word-spacing:18.883238px;}
.wsc4{word-spacing:22.164941px;}
.wse6{word-spacing:27.759974px;}
.wsc3{word-spacing:28.082765px;}
.wse9{word-spacing:29.427725px;}
.wsf1{word-spacing:33.193613px;}
.ws1{word-spacing:40.042186px;}
.ws4{word-spacing:54.425734px;}
.ws48{word-spacing:64.988467px;}
.ws47{word-spacing:120.293222px;}
.ws6a{word-spacing:456.808334px;}
.ws6b{word-spacing:456.862334px;}
.ws56{word-spacing:525.495004px;}
.ws58{word-spacing:535.173004px;}
.ws62{word-spacing:759.787298px;}
.ws24{word-spacing:908.304476px;}
._26{margin-left:-7.854566px;}
._0{margin-left:-6.633757px;}
._3{margin-left:-4.949453px;}
._1{margin-left:-3.289576px;}
._4{margin-left:-1.936742px;}
._6{width:1.091170px;}
._2{width:3.001171px;}
._27{width:8.773405px;}
._1e{width:9.948438px;}
._1f{width:12.493100px;}
._8{width:13.569061px;}
._13{width:14.609170px;}
._f{width:16.043784px;}
._28{width:17.699674px;}
._5{width:18.829440px;}
._10{width:19.845499px;}
._7{width:20.861684px;}
._9{width:22.260446px;}
._a{width:23.850464px;}
._11{width:25.045976px;}
._12{width:26.600142px;}
._c{width:27.640250px;}
._14{width:28.811839px;}
._16{width:30.366005px;}
._d{width:31.681068px;}
._15{width:34.012316px;}
._b{width:36.068610px;}
._25{width:40.228979px;}
._29{width:48.871909px;}
._2a{width:57.779482px;}
._24{width:96.206603px;}
._23{width:98.537149px;}
._21{width:101.270108px;}
._20{width:103.723315px;}
._17{width:121.153997px;}
._19{width:129.277555px;}
._1b{width:132.236467px;}
._1a{width:141.220800px;}
._1d{width:154.724198px;}
._1c{width:157.683110px;}
._18{width:164.684776px;}
._22{width:2006.840700px;}
._e{width:2030.750700px;}
.fc4{color:rgb(8,117,183);}
.fc3{color:transparent;}
.fc2{color:rgb(12,11,11);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(137,92,52);}
.fs10{font-size:31.800528px;}
.fsc{font-size:33.167400px;}
.fse{font-size:33.474240px;}
.fs9{font-size:35.865600px;}
.fsf{font-size:40.886784px;}
.fs4{font-size:41.842800px;}
.fs7{font-size:41.936104px;}
.fsd{font-size:43.038720px;}
.fsb{font-size:43.642200px;}
.fs3{font-size:45.429600px;}
.fs6{font-size:47.236800px;}
.fs8{font-size:47.820600px;}
.fs5{font-size:53.798400px;}
.fs1{font-size:59.775600px;}
.fsa{font-size:62.286600px;}
.fs2{font-size:107.596800px;}
.fs0{font-size:147.405960px;}
.y0{bottom:0.000000px;}
.y16{bottom:3.425340px;}
.y15{bottom:14.151273px;}
.y2{bottom:15.837920px;}
.y31{bottom:63.780000px;}
.y195{bottom:110.497500px;}
.y119{bottom:111.093000px;}
.y162{bottom:111.171000px;}
.y165{bottom:111.856500px;}
.y161{bottom:113.413500px;}
.y30{bottom:120.652500px;}
.y68{bottom:123.121500px;}
.ya8{bottom:129.171000px;}
.y194{bottom:130.762500px;}
.y160{bottom:133.677000px;}
.y1e7{bottom:138.606000px;}
.y1b4{bottom:139.083000px;}
.ya7{bottom:139.305000px;}
.y2f{bottom:140.916000px;}
.yf4{bottom:141.015000px;}
.y117{bottom:141.858000px;}
.y67{bottom:143.386500px;}
.y193{bottom:151.026000px;}
.y15f{bottom:153.942000px;}
.y1e6{bottom:157.974000px;}
.y2e{bottom:161.181000px;}
.y116{bottom:162.121500px;}
.y1b3{bottom:163.246500px;}
.y66{bottom:163.650000px;}
.y192{bottom:171.289500px;}
.y15e{bottom:171.408000px;}
.y15d{bottom:171.964500px;}
.y15c{bottom:174.205500px;}
.y1e5{bottom:177.340500px;}
.y1b2{bottom:178.444500px;}
.y2d{bottom:181.444500px;}
.y115{bottom:182.386500px;}
.y65{bottom:183.913500px;}
.ya6{bottom:185.209500px;}
.ya5{bottom:191.533500px;}
.y191{bottom:191.554500px;}
.y1b1{bottom:193.642500px;}
.y15b{bottom:194.469000px;}
.y1e4{bottom:196.708500px;}
.y114{bottom:202.650000px;}
.y64{bottom:204.178500px;}
.y1b0{bottom:208.840500px;}
.y2c{bottom:210.675000px;}
.ye2{bottom:211.552500px;}
.y190{bottom:211.818000px;}
.y15a{bottom:211.936500px;}
.y159{bottom:214.734000px;}
.y1e3{bottom:216.076500px;}
.y113{bottom:222.913500px;}
.y63{bottom:224.442000px;}
.ya4{bottom:228.684000px;}
.ye1{bottom:229.020000px;}
.ye0{bottom:231.817500px;}
.y18f{bottom:232.083000px;}
.y157{bottom:232.200000px;}
.y158{bottom:232.756500px;}
.y1af{bottom:233.005500px;}
.y156{bottom:234.997500px;}
.y1e2{bottom:235.443000px;}
.y112{bottom:243.178500px;}
.y62{bottom:244.707000px;}
.ydf{bottom:252.081000px;}
.y18e{bottom:252.346500px;}
.y155{bottom:253.020000px;}
.y1e1{bottom:254.811000px;}
.y154{bottom:255.262500px;}
.y1ae{bottom:257.170500px;}
.ya3{bottom:257.914500px;}
.y111{bottom:263.442000px;}
.y61{bottom:264.970500px;}
.yde{bottom:272.344500px;}
.y1ad{bottom:272.368500px;}
.y18d{bottom:272.610000px;}
.y1e0{bottom:274.177500px;}
.y153{bottom:275.526000px;}
.y110{bottom:280.909500px;}
.y10f{bottom:281.464500px;}
.y10e{bottom:283.707000px;}
.y60{bottom:285.234000px;}
.y2b{bottom:287.091000px;}
.y1ac{bottom:287.566500px;}
.ydd{bottom:292.609500px;}
.ya2{bottom:292.734000px;}
.y18c{bottom:292.875000px;}
.y1df{bottom:293.545500px;}
.y152{bottom:295.789500px;}
.y1ab{bottom:302.764500px;}
.y10d{bottom:303.970500px;}
.y5f{bottom:305.499000px;}
.y2a{bottom:307.356000px;}
.y85{bottom:308.007000px;}
.ydc{bottom:312.873000px;}
.y1de{bottom:312.913500px;}
.ya1{bottom:312.997500px;}
.y18b{bottom:313.138500px;}
.y151{bottom:316.054500px;}
.y10c{bottom:324.234000px;}
.y5e{bottom:325.762500px;}
.y84{bottom:328.270500px;}
.ya0{bottom:331.020000px;}
.y1dd{bottom:332.280000px;}
.ydb{bottom:333.138000px;}
.y9f{bottom:333.262500px;}
.y18a{bottom:333.403500px;}
.y1aa{bottom:335.895000px;}
.y150{bottom:336.318000px;}
.y10b{bottom:344.499000px;}
.y29{bottom:345.552000px;}
.y5d{bottom:346.027500px;}
.y9e{bottom:347.202000px;}
.y83{bottom:348.535500px;}
.y1dc{bottom:351.648000px;}
.yda{bottom:353.401500px;}
.y9d{bottom:353.526000px;}
.y189{bottom:353.667000px;}
.y1a9{bottom:356.158500px;}
.y14f{bottom:356.583000px;}
.y5c{bottom:363.493500px;}
.y5b{bottom:364.050000px;}
.y10a{bottom:364.762500px;}
.y28{bottom:365.817000px;}
.y5a{bottom:366.291000px;}
.y82{bottom:368.799000px;}
.y1db{bottom:371.014500px;}
.y1a8{bottom:373.626000px;}
.yd9{bottom:373.665000px;}
.y188{bottom:373.930500px;}
.y1a7{bottom:376.423500px;}
.y14e{bottom:376.846500px;}
.y59{bottom:383.758500px;}
.y58{bottom:384.313500px;}
.y109{bottom:385.027500px;}
.y9c{bottom:385.299000px;}
.y27{bottom:386.080500px;}
.y57{bottom:386.554500px;}
.y9a{bottom:387.420000px;}
.y81{bottom:389.064000px;}
.y1da{bottom:390.382500px;}
.y94{bottom:390.414000px;}
.y99{bottom:391.515000px;}
.yd8{bottom:393.930000px;}
.y187{bottom:394.195500px;}
.y1a6{bottom:394.446000px;}
.y98{bottom:395.610000px;}
.y1a5{bottom:396.687000px;}
.y93{bottom:396.738000px;}
.y14d{bottom:397.110000px;}
.y108{bottom:405.291000px;}
.y97{bottom:405.367500px;}
.y26{bottom:406.344000px;}
.y56{bottom:406.819500px;}
.y9b{bottom:408.177000px;}
.y80{bottom:409.327500px;}
.y96{bottom:409.462500px;}
.y1d9{bottom:409.750500px;}
.y95{bottom:413.557500px;}
.yd7{bottom:414.193500px;}
.y1a4{bottom:416.952000px;}
.y14c{bottom:417.375000px;}
.y20a{bottom:418.630500px;}
.y107{bottom:425.554500px;}
.y25{bottom:426.609000px;}
.y55{bottom:427.083000px;}
.y1d8{bottom:429.117000px;}
.y7f{bottom:429.591000px;}
.yd6{bottom:434.457000px;}
.y1a3{bottom:437.215500px;}
.y14b{bottom:437.638500px;}
.y209{bottom:437.998500px;}
.y186{bottom:439.002720px;}
.y106{bottom:445.819500px;}
.y24{bottom:446.872500px;}
.y54{bottom:447.348000px;}
.y1d7{bottom:448.485000px;}
.y7e{bottom:449.856000px;}
.y92{bottom:450.499500px;}
.y185{bottom:451.495980px;}
.y90{bottom:452.620500px;}
.yd5{bottom:454.722000px;}
.y8a{bottom:455.614500px;}
.y8f{bottom:456.715500px;}
.y208{bottom:457.365000px;}
.y1a2{bottom:457.479000px;}
.y14a{bottom:457.903500px;}
.y8e{bottom:460.810500px;}
.y89{bottom:461.938500px;}
.y184{bottom:463.989240px;}
.y105{bottom:466.083000px;}
.y23{bottom:467.137500px;}
.y53{bottom:467.611500px;}
.y1d6{bottom:467.851500px;}
.y7d{bottom:470.119500px;}
.y8d{bottom:470.568000px;}
.yd4{bottom:472.189500px;}
.yd3{bottom:472.744500px;}
.y91{bottom:473.377500px;}
.y8c{bottom:474.663000px;}
.yd2{bottom:474.985500px;}
.y183{bottom:476.482500px;}
.yf3{bottom:476.764500px;}
.y1a1{bottom:477.744000px;}
.y164{bottom:477.996000px;}
.y149{bottom:478.167000px;}
.y8b{bottom:478.758000px;}
.y104{bottom:486.348000px;}
.y207{bottom:486.711000px;}
.y1d5{bottom:487.219500px;}
.y22{bottom:487.401000px;}
.y52{bottom:487.875000px;}
.y17e{bottom:488.975760px;}
.y7c{bottom:490.384500px;}
.yf2{bottom:497.029500px;}
.y1a0{bottom:498.007500px;}
.y148{bottom:498.430500px;}
.y17c{bottom:501.469020px;}
.y206{bottom:501.909000px;}
.y1d4{bottom:506.587500px;}
.y103{bottom:506.611500px;}
.yd1{bottom:507.205500px;}
.y21{bottom:507.664500px;}
.y51{bottom:508.140000px;}
.y7b{bottom:510.648000px;}
.y88{bottom:512.001000px;}
.y17d{bottom:513.962280px;}
.yf1{bottom:517.293000px;}
.y19f{bottom:518.272500px;}
.y147{bottom:518.695500px;}
.y1d3{bottom:525.954000px;}
.y182{bottom:526.455540px;}
.y102{bottom:526.875000px;}
.y20{bottom:527.929500px;}
.y50{bottom:528.403500px;}
.yd0{bottom:528.963000px;}
.y7a{bottom:530.911500px;}
.y205{bottom:535.041000px;}
.yf0{bottom:537.558000px;}
.y19e{bottom:538.536000px;}
.y181{bottom:538.947660px;}
.y146{bottom:538.959000px;}
.y87{bottom:541.231500px;}
.y1d2{bottom:545.322000px;}
.y101{bottom:547.140000px;}
.y1f{bottom:548.193000px;}
.y4f{bottom:548.667000px;}
.ycf{bottom:550.722000px;}
.y79{bottom:551.176500px;}
.y180{bottom:551.440920px;}
.y204{bottom:554.407500px;}
.yef{bottom:557.821500px;}
.y19d{bottom:558.799500px;}
.y145{bottom:559.224000px;}
.y17f{bottom:563.934180px;}
.y1d1{bottom:564.688500px;}
.y100{bottom:567.403500px;}
.y1e{bottom:568.458000px;}
.y4e{bottom:568.932000px;}
.y78{bottom:571.440000px;}
.y86{bottom:572.854500px;}
.y203{bottom:573.775500px;}
.y19c{bottom:576.267000px;}
.y19b{bottom:576.822000px;}
.yee{bottom:578.085000px;}
.y19a{bottom:579.064500px;}
.y144{bottom:579.487500px;}
.y17b{bottom:581.901720px;}
.yce{bottom:582.942000px;}
.y1d0{bottom:584.056500px;}
.yff{bottom:587.668500px;}
.y1d{bottom:588.721500px;}
.y4d{bottom:589.195500px;}
.y202{bottom:593.142000px;}
.y17a{bottom:594.394980px;}
.y118{bottom:597.256500px;}
.yed{bottom:598.350000px;}
.y199{bottom:599.328000px;}
.y143{bottom:599.751000px;}
.ycd{bottom:603.205500px;}
.y1cf{bottom:603.424500px;}
.y179{bottom:606.888240px;}
.yfe{bottom:607.932000px;}
.y1c{bottom:608.985000px;}
.y4c{bottom:609.460500px;}
.y201{bottom:612.510000px;}
.y175{bottom:613.134300px;}
.y141{bottom:617.218500px;}
.y142{bottom:617.773500px;}
.yec{bottom:618.613500px;}
.y77{bottom:618.694500px;}
.y172{bottom:619.380360px;}
.y198{bottom:619.593000px;}
.y140{bottom:620.016000px;}
.y1ce{bottom:622.791000px;}
.ycc{bottom:623.469000px;}
.y174{bottom:625.627560px;}
.yfd{bottom:628.195500px;}
.y1b{bottom:629.250000px;}
.y4b{bottom:629.724000px;}
.y171{bottom:631.873620px;}
.y200{bottom:631.878000px;}
.y13f{bottom:638.038500px;}
.y173{bottom:638.120820px;}
.yeb{bottom:638.878500px;}
.y13e{bottom:640.279500px;}
.y1cd{bottom:642.159000px;}
.y76{bottom:642.691500px;}
.y178{bottom:644.366880px;}
.yfc{bottom:648.460500px;}
.y197{bottom:648.823500px;}
.y1a{bottom:649.513500px;}
.y4a{bottom:649.987500px;}
.y1ff{bottom:651.244500px;}
.ycb{bottom:655.689000px;}
.y177{bottom:656.860140px;}
.yea{bottom:659.142000px;}
.y13d{bottom:660.544500px;}
.y1cc{bottom:661.527000px;}
.yfb{bottom:668.724000px;}
.y176{bottom:669.353400px;}
.y19{bottom:669.778500px;}
.y49{bottom:670.252500px;}
.y1fe{bottom:670.612500px;}
.y75{bottom:674.311500px;}
.yca{bottom:677.448000px;}
.ye9{bottom:679.405500px;}
.y196{bottom:680.446500px;}
.y13c{bottom:680.808000px;}
.y1cb{bottom:680.893500px;}
.y16c{bottom:687.319800px;}
.yfa{bottom:688.989000px;}
.y1fd{bottom:689.979000px;}
.y18{bottom:690.042000px;}
.y48{bottom:690.516000px;}
.y170{bottom:693.567000px;}
.ye8{bottom:696.873000px;}
.ye7{bottom:697.428000px;}
.yc9{bottom:699.205500px;}
.ye6{bottom:699.670500px;}
.y16b{bottom:699.813060px;}
.y1ca{bottom:700.261500px;}
.y13b{bottom:701.071500px;}
.y16f{bottom:706.060260px;}
.y74{bottom:707.523000px;}
.yf9{bottom:709.252500px;}
.y1fc{bottom:709.347000px;}
.y17{bottom:710.305500px;}
.y47{bottom:710.781000px;}
.y168{bottom:712.306320px;}
.y16e{bottom:718.553520px;}
.y1c9{bottom:719.628000px;}
.y13a{bottom:721.336500px;}
.y16a{bottom:724.799580px;}
.y73{bottom:727.786500px;}
.y1fb{bottom:728.715000px;}
.ye5{bottom:728.901000px;}
.yf8{bottom:729.516000px;}
.y46{bottom:731.044500px;}
.y16d{bottom:731.046780px;}
.yc8{bottom:731.425500px;}
.y169{bottom:737.292840px;}
.y1c8{bottom:738.996000px;}
.y139{bottom:741.600000px;}
.y14{bottom:745.738464px;}
.y13{bottom:746.505000px;}
.y72{bottom:748.051500px;}
.y1fa{bottom:748.081500px;}
.yf7{bottom:749.781000px;}
.y45{bottom:751.308000px;}
.yc7{bottom:751.689000px;}
.y1c7{bottom:758.364000px;}
.y138{bottom:761.865000px;}
.ye4{bottom:763.720500px;}
.y167{bottom:764.859000px;}
.y1f9{bottom:767.449500px;}
.y71{bottom:768.315000px;}
.yf6{bottom:770.044500px;}
.y44{bottom:771.573000px;}
.yc6{bottom:771.954000px;}
.y1c6{bottom:777.730500px;}
.y137{bottom:782.128500px;}
.y12{bottom:785.511000px;}
.y1f8{bottom:786.816000px;}
.y70{bottom:788.578500px;}
.y43{bottom:791.836500px;}
.yc5{bottom:792.217500px;}
.y166{bottom:794.553000px;}
.ye3{bottom:795.343500px;}
.y1c5{bottom:797.098500px;}
.y136{bottom:802.392000px;}
.y11{bottom:803.667000px;}
.yf5{bottom:805.045500px;}
.y6f{bottom:806.046000px;}
.y1f7{bottom:806.184000px;}
.y6e{bottom:808.843500px;}
.y42{bottom:812.101500px;}
.yc4{bottom:812.481000px;}
.y1c4{bottom:816.465000px;}
.y135{bottom:822.657000px;}
.y1f6{bottom:825.552000px;}
.yc3{bottom:826.422000px;}
.y10{bottom:826.707000px;}
.y6d{bottom:829.107000px;}
.y41{bottom:832.365000px;}
.yc2{bottom:832.746000px;}
.y1c3{bottom:835.833000px;}
.yf{bottom:839.982000px;}
.y1f5{bottom:844.918500px;}
.y6c{bottom:849.372000px;}
.y134{bottom:851.887500px;}
.y40{bottom:852.628500px;}
.y1c2{bottom:855.201000px;}
.ye{bottom:863.020500px;}
.y1f4{bottom:864.286500px;}
.yc1{bottom:864.517500px;}
.ybf{bottom:866.640000px;}
.yb9{bottom:869.634000px;}
.ybe{bottom:870.735000px;}
.y3f{bottom:872.893500px;}
.y1c1{bottom:874.567500px;}
.ybd{bottom:874.828500px;}
.yb8{bottom:875.958000px;}
.yd{bottom:876.295500px;}
.y6b{bottom:878.602500px;}
.y1f3{bottom:883.653000px;}
.ybc{bottom:884.587500px;}
.yc0{bottom:887.397000px;}
.ybb{bottom:888.682500px;}
.yba{bottom:892.777500px;}
.y3e{bottom:893.157000px;}
.y133{bottom:893.667300px;}
.y1c0{bottom:893.935500px;}
.yc{bottom:894.453000px;}
.yb{bottom:899.334000px;}
.y1f2{bottom:903.021000px;}
.y132{bottom:906.816900px;}
.ya{bottom:912.609000px;}
.y1bf{bottom:913.302000px;}
.y12d{bottom:913.392900px;}
.y3d{bottom:913.422000px;}
.y131{bottom:919.967700px;}
.y1f1{bottom:922.389000px;}
.y12b{bottom:926.543700px;}
.yb7{bottom:929.718000px;}
.y9{bottom:930.766500px;}
.yb5{bottom:931.840500px;}
.y1be{bottom:932.670000px;}
.y130{bottom:933.118500px;}
.y3c{bottom:933.685500px;}
.yaf{bottom:934.834500px;}
.yb4{bottom:935.935500px;}
.y12c{bottom:939.694500px;}
.yb3{bottom:940.030500px;}
.yae{bottom:941.158500px;}
.y1f0{bottom:941.755500px;}
.y12f{bottom:946.269300px;}
.yb2{bottom:949.788000px;}
.y1bd{bottom:952.038000px;}
.yb6{bottom:952.597500px;}
.y8{bottom:953.805000px;}
.yb1{bottom:953.883000px;}
.y3b{bottom:953.949000px;}
.yb0{bottom:957.978000px;}
.y12e{bottom:959.420100px;}
.y1ef{bottom:961.123500px;}
.y1bc{bottom:971.404500px;}
.y3a{bottom:974.214000px;}
.y7{bottom:976.047000px;}
.y12a{bottom:978.333300px;}
.y1ee{bottom:980.490000px;}
.y128{bottom:984.908100px;}
.y1bb{bottom:990.772500px;}
.yad{bottom:991.219500px;}
.y125{bottom:991.482900px;}
.y39{bottom:994.477500px;}
.y6{bottom:996.310500px;}
.y127{bottom:998.058900px;}
.y1ed{bottom:999.858000px;}
.y124{bottom:1004.633700px;}
.y1ba{bottom:1010.139000px;}
.y126{bottom:1011.209700px;}
.y38{bottom:1014.742500px;}
.y129{bottom:1017.784500px;}
.y1ec{bottom:1019.226000px;}
.yac{bottom:1020.450000px;}
.y1b9{bottom:1029.507000px;}
.y37{bottom:1035.006000px;}
.y11f{bottom:1036.697700px;}
.y1eb{bottom:1038.592500px;}
.y5{bottom:1040.848500px;}
.y123{bottom:1043.272500px;}
.y1b8{bottom:1048.875000px;}
.y11e{bottom:1049.848500px;}
.y36{bottom:1055.269500px;}
.y122{bottom:1056.423300px;}
.y1ea{bottom:1057.960500px;}
.y11b{bottom:1062.999300px;}
.y1b7{bottom:1068.241500px;}
.y121{bottom:1069.574100px;}
.y4{bottom:1071.244500px;}
.y69{bottom:1072.737000px;}
.y6a{bottom:1073.292000px;}
.y35{bottom:1075.534500px;}
.y11d{bottom:1076.148900px;}
.y1e9{bottom:1077.327000px;}
.y120{bottom:1082.724900px;}
.y1b6{bottom:1087.609500px;}
.y11c{bottom:1089.299700px;}
.yaa{bottom:1093.000500px;}
.yab{bottom:1093.557000px;}
.y34{bottom:1095.798000px;}
.y1e8{bottom:1096.695000px;}
.y3{bottom:1100.145000px;}
.ya9{bottom:1109.739000px;}
.y163{bottom:1113.265500px;}
.y1b5{bottom:1115.943000px;}
.y33{bottom:1116.063000px;}
.y11a{bottom:1117.543500px;}
.y1{bottom:1137.954000px;}
.y32{bottom:1168.366500px;}
.h14{height:3.526760px;}
.h24{height:20.056044px;}
.ha{height:25.508090px;}
.h21{height:27.855430px;}
.h25{height:29.438484px;}
.h22{height:30.987878px;}
.h19{height:31.979946px;}
.hc{height:33.112997px;}
.hb{height:34.199443px;}
.h26{height:35.489729px;}
.h1a{height:35.626258px;}
.h1b{height:36.104462px;}
.h8{height:36.319550px;}
.h23{height:37.357609px;}
.h29{height:37.927872px;}
.h28{height:38.412058px;}
.h11{height:38.734848px;}
.h10{height:39.432893px;}
.h27{height:39.434227px;}
.hf{height:41.508281px;}
.hd{height:43.038432px;}
.h4{height:43.815515px;}
.h9{height:46.697011px;}
.h1f{height:47.294462px;}
.h2{height:50.930649px;}
.he{height:51.885221px;}
.h12{height:53.114822px;}
.h7{height:54.405312px;}
.h6{height:54.411312px;}
.h18{height:61.960760px;}
.h15{height:64.368893px;}
.h1c{height:77.181221px;}
.h5{height:77.469696px;}
.h1d{height:92.403221px;}
.h1e{height:92.421221px;}
.h16{height:97.641221px;}
.h20{height:97.647221px;}
.h3{height:99.941241px;}
.h13{height:135.130760px;}
.h17{height:135.136760px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w3{width:75.364879px;}
.w2{width:198.822293px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x7{left:29.274117px;}
.x2{left:57.551633px;}
.x1{left:114.802500px;}
.x5{left:122.110500px;}
.x3{left:123.307500px;}
.xca{left:127.354680px;}
.xd3{left:131.665020px;}
.xa0{left:136.476900px;}
.xa8{left:141.014100px;}
.x3d{left:142.671000px;}
.x4{left:146.170500px;}
.x8c{left:152.109000px;}
.xcb{left:154.024980px;}
.xb7{left:155.992500px;}
.x4b{left:157.611000px;}
.x5e{left:158.724000px;}
.xe3{left:161.002500px;}
.x36{left:163.521000px;}
.xa1{left:164.550900px;}
.x4c{left:167.578500px;}
.x5f{left:168.691500px;}
.x8f{left:171.973500px;}
.x82{left:173.454000px;}
.x37{left:177.375000px;}
.xb4{left:178.395000px;}
.x6f{left:179.475000px;}
.x1a{left:180.973500px;}
.x7e{left:182.434500px;}
.x8{left:188.949000px;}
.xae{left:195.175500px;}
.xc0{left:199.552500px;}
.x9{left:207.784500px;}
.x91{left:209.992500px;}
.x9a{left:213.768000px;}
.xc3{left:216.471000px;}
.xcc{left:217.647240px;}
.x8e{left:219.256500px;}
.x31{left:223.263000px;}
.xdd{left:224.428500px;}
.xe7{left:225.619500px;}
.x7f{left:230.892000px;}
.x90{left:232.867500px;}
.x99{left:236.692500px;}
.x32{left:238.207500px;}
.x3c{left:239.625000px;}
.xe0{left:240.898500px;}
.xde{left:244.344000px;}
.x6b{left:247.365000px;}
.xbd{left:250.875000px;}
.x8b{left:251.971500px;}
.xdc{left:253.213500px;}
.x43{left:255.354000px;}
.x6c{left:257.332500px;}
.x44{left:264.535500px;}
.xbe{left:265.818000px;}
.x48{left:266.955000px;}
.xc2{left:269.112000px;}
.x3e{left:270.262500px;}
.x45{left:274.503000px;}
.x49{left:276.922500px;}
.x64{left:282.915000px;}
.xdf{left:283.969500px;}
.x6d{left:287.661000px;}
.xaf{left:290.992500px;}
.xc4{left:299.207400px;}
.xcd{left:301.795200px;}
.x6e{left:303.816000px;}
.x46{left:304.831500px;}
.xb0{left:305.937000px;}
.x4a{left:307.252500px;}
.xb1{left:309.729000px;}
.x12{left:316.612500px;}
.x98{left:318.105000px;}
.x47{left:320.986500px;}
.xa2{left:322.512900px;}
.x13{left:324.084000px;}
.x28{left:325.327500px;}
.x14{left:327.772500px;}
.x38{left:332.107500px;}
.x15{left:335.244000px;}
.x3f{left:336.465000px;}
.x5b{left:337.713000px;}
.x29{left:340.272000px;}
.x69{left:342.822000px;}
.x39{left:345.664500px;}
.x5c{left:347.680500px;}
.x40{left:351.408000px;}
.x41{left:355.137000px;}
.x6a{left:361.849500px;}
.x65{left:365.097000px;}
.x42{left:370.081500px;}
.x70{left:379.131000px;}
.x5d{left:380.800500px;}
.x4d{left:382.945500px;}
.xc5{left:384.069000px;}
.x66{left:386.052000px;}
.xd4{left:388.108020px;}
.x53{left:389.497500px;}
.x60{left:391.269000px;}
.x71{left:400.300500px;}
.x54{left:401.667000px;}
.x4e{left:404.115000px;}
.x9b{left:405.814500px;}
.xa3{left:407.811300px;}
.xaa{left:410.954100px;}
.x61{left:412.440000px;}
.xa9{left:413.919300px;}
.x25{left:424.611000px;}
.x55{left:436.407000px;}
.x26{left:438.169500px;}
.x56{left:457.576500px;}
.x35{left:459.834000px;}
.xc7{left:467.245680px;}
.x72{left:469.396500px;}
.xce{left:472.127160px;}
.xc8{left:473.352660px;}
.x21{left:474.696000px;}
.x2a{left:475.789500px;}
.x1f{left:477.406500px;}
.xc9{left:479.597580px;}
.xc6{left:485.557500px;}
.x62{left:487.371000px;}
.x22{left:489.639000px;}
.x2b{left:490.732500px;}
.x20{left:492.351000px;}
.x9d{left:494.255700px;}
.x23{left:497.185500px;}
.x57{left:498.847500px;}
.x9e{left:500.685300px;}
.x96{left:503.908500px;}
.x9f{left:507.258900px;}
.x63{left:508.540500px;}
.x24{left:512.130000px;}
.x9c{left:513.531300px;}
.xb8{left:517.357500px;}
.x97{left:518.853000px;}
.x73{left:523.023000px;}
.x58{left:524.902500px;}
.xd8{left:526.122000px;}
.xba{left:530.631000px;}
.xb9{left:532.302000px;}
.xe{left:536.164500px;}
.x78{left:540.063000px;}
.xd9{left:541.066500px;}
.xf{left:543.636000px;}
.xda{left:544.878000px;}
.x83{left:547.588500px;}
.xd0{left:548.949480px;}
.xd2{left:550.217160px;}
.xd5{left:552.169980px;}
.xd7{left:553.355580px;}
.xd1{left:554.475060px;}
.x79{left:557.203500px;}
.xd6{left:558.737520px;}
.xdb{left:559.821000px;}
.x74{left:561.546000px;}
.xc{left:563.163000px;}
.x84{left:564.457500px;}
.xcf{left:566.030100px;}
.xd{left:570.634500px;}
.x75{left:572.724000px;}
.x27{left:576.222000px;}
.x80{left:578.547000px;}
.x59{left:580.011000px;}
.xac{left:586.689300px;}
.xa4{left:588.502500px;}
.x5a{left:592.179000px;}
.xa6{left:594.102900px;}
.x93{left:595.747500px;}
.xa7{left:597.491700px;}
.x85{left:598.725000px;}
.xa5{left:600.554100px;}
.x7a{left:601.827000px;}
.x76{left:605.265000px;}
.x86{left:607.731000px;}
.xc1{left:611.211000px;}
.xbc{left:613.953000px;}
.x8a{left:615.823500px;}
.xad{left:622.792500px;}
.x7b{left:624.742500px;}
.x77{left:626.436000px;}
.x94{left:627.513000px;}
.x87{left:629.811000px;}
.xe1{left:631.767000px;}
.x92{left:635.590500px;}
.xbb{left:641.175000px;}
.x7c{left:642.780000px;}
.x95{left:645.040500px;}
.x88{left:647.464500px;}
.x4f{left:650.371500px;}
.xe4{left:652.257000px;}
.xa{left:654.318000px;}
.x1b{left:657.040500px;}
.x3a{left:658.308000px;}
.xb{left:661.789500px;}
.x1c{left:664.512000px;}
.x1d{left:668.256000px;}
.x2c{left:669.606000px;}
.xe2{left:674.391000px;}
.x3b{left:678.931500px;}
.x89{left:681.732000px;}
.x1e{left:683.200500px;}
.x7d{left:687.403500px;}
.x50{left:689.968500px;}
.x81{left:691.132500px;}
.x10{left:694.878000px;}
.x33{left:700.182000px;}
.x6{left:701.339982px;}
.x11{left:702.349500px;}
.xab{left:706.356900px;}
.xbf{left:707.722500px;}
.x34{left:715.126500px;}
.x2d{left:717.624000px;}
.xb2{left:718.744500px;}
.xb5{left:724.429500px;}
.x67{left:732.034500px;}
.x51{left:734.815500px;}
.x2e{left:735.918000px;}
.x68{left:741.834000px;}
.xb6{left:747.390000px;}
.xe5{left:749.463000px;}
.x16{left:753.084000px;}
.x52{left:755.986500px;}
.x8d{left:757.243500px;}
.x2f{left:758.274000px;}
.x17{left:760.557000px;}
.x18{left:764.367000px;}
.xb3{left:770.107500px;}
.x19{left:771.838500px;}
.x30{left:773.218500px;}
.xe6{left:776.362500px;}
@media print{
.v2{vertical-align:-17.354667pt;}
.v6{vertical-align:-9.941333pt;}
.v14{vertical-align:-7.968000pt;}
.v15{vertical-align:-5.738667pt;}
.v12{vertical-align:-4.064000pt;}
.v0{vertical-align:0.000000pt;}
.v11{vertical-align:8.368000pt;}
.v13{vertical-align:9.946667pt;}
.vb{vertical-align:12.538667pt;}
.vc{vertical-align:14.512000pt;}
.v1{vertical-align:19.290667pt;}
.v4{vertical-align:22.485333pt;}
.ve{vertical-align:26.069333pt;}
.v3{vertical-align:27.957333pt;}
.v10{vertical-align:31.957333pt;}
.va{vertical-align:36.613333pt;}
.v8{vertical-align:40.672000pt;}
.vf{vertical-align:44.389333pt;}
.v9{vertical-align:49.045333pt;}
.v7{vertical-align:51.941333pt;}
.vd{vertical-align:78.944000pt;}
.v5{vertical-align:116.981333pt;}
.lsa{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.000110pt;}
.lsf{letter-spacing:0.000133pt;}
.ls1{letter-spacing:0.000213pt;}
.ls0{letter-spacing:0.000316pt;}
.ls35{letter-spacing:0.000544pt;}
.ls55{letter-spacing:0.001145pt;}
.ls58{letter-spacing:0.001237pt;}
.ls46{letter-spacing:0.001302pt;}
.ls52{letter-spacing:0.001349pt;}
.ls5b{letter-spacing:0.001843pt;}
.ls49{letter-spacing:0.001940pt;}
.ls56{letter-spacing:0.002419pt;}
.ls4a{letter-spacing:0.002546pt;}
.ls53{letter-spacing:0.002630pt;}
.ls60{letter-spacing:0.002653pt;}
.ls9{letter-spacing:0.003100pt;}
.ls7{letter-spacing:0.003106pt;}
.ls68{letter-spacing:0.004267pt;}
.ls19{letter-spacing:0.004388pt;}
.ls5f{letter-spacing:0.004834pt;}
.ls1c{letter-spacing:0.596214pt;}
.ls16{letter-spacing:0.601548pt;}
.ls15{letter-spacing:0.663756pt;}
.lsb{letter-spacing:1.133683pt;}
.ls6{letter-spacing:1.654338pt;}
.ls5e{letter-spacing:2.018275pt;}
.ls11{letter-spacing:2.657067pt;}
.ls12{letter-spacing:2.657310pt;}
.ls1d{letter-spacing:2.659543pt;}
.ls3{letter-spacing:2.665203pt;}
.ls17{letter-spacing:3.318349pt;}
.ls29{letter-spacing:3.320877pt;}
.ls5a{letter-spacing:9.082709pt;}
.ls57{letter-spacing:9.085459pt;}
.ls5d{letter-spacing:9.085952pt;}
.ls5c{letter-spacing:9.086763pt;}
.ls62{letter-spacing:9.193099pt;}
.ls45{letter-spacing:9.563641pt;}
.ls4d{letter-spacing:9.564160pt;}
.ls4b{letter-spacing:9.565013pt;}
.ls4c{letter-spacing:9.567908pt;}
.ls31{letter-spacing:9.977253pt;}
.ls28{letter-spacing:10.330577pt;}
.ls25{letter-spacing:10.330777pt;}
.ls22{letter-spacing:10.335910pt;}
.ls8{letter-spacing:10.626533pt;}
.ls64{letter-spacing:10.759467pt;}
.lse{letter-spacing:10.968429pt;}
.ls2c{letter-spacing:10.973762pt;}
.ls23{letter-spacing:10.992110pt;}
.ls2b{letter-spacing:10.995733pt;}
.ls59{letter-spacing:11.105848pt;}
.ls1f{letter-spacing:11.441198pt;}
.ls1b{letter-spacing:11.635096pt;}
.ls4f{letter-spacing:11.636317pt;}
.ls48{letter-spacing:11.686100pt;}
.ls47{letter-spacing:11.690366pt;}
.ls40{letter-spacing:11.901986pt;}
.ls61{letter-spacing:11.954133pt;}
.ls63{letter-spacing:11.959467pt;}
.ls65{letter-spacing:12.156024pt;}
.ls3f{letter-spacing:12.380191pt;}
.ls66{letter-spacing:12.463101pt;}
.ls3c{letter-spacing:12.858396pt;}
.ls24{letter-spacing:12.984755pt;}
.ls30{letter-spacing:12.990210pt;}
.ls4e{letter-spacing:13.125151pt;}
.ls51{letter-spacing:13.177199pt;}
.ls43{letter-spacing:13.220873pt;}
.ls36{letter-spacing:13.279241pt;}
.ls32{letter-spacing:13.279910pt;}
.ls33{letter-spacing:13.280499pt;}
.ls3a{letter-spacing:13.283220pt;}
.ls41{letter-spacing:13.283467pt;}
.ls38{letter-spacing:13.283942pt;}
.ls3b{letter-spacing:13.284574pt;}
.ls37{letter-spacing:13.285443pt;}
.ls21{letter-spacing:13.285833pt;}
.ls50{letter-spacing:13.336601pt;}
.ls2d{letter-spacing:13.345018pt;}
.ls44{letter-spacing:13.442868pt;}
.ls3e{letter-spacing:13.452136pt;}
.ls3d{letter-spacing:13.452467pt;}
.ls54{letter-spacing:13.655404pt;}
.lsc{letter-spacing:13.770426pt;}
.ls42{letter-spacing:14.261929pt;}
.ls14{letter-spacing:14.757443pt;}
.ls13{letter-spacing:14.757467pt;}
.ls2a{letter-spacing:14.762777pt;}
.ls67{letter-spacing:15.176826pt;}
.lsd{letter-spacing:15.395096pt;}
.ls1a{letter-spacing:15.400429pt;}
.ls39{letter-spacing:15.938492pt;}
.ls20{letter-spacing:15.939543pt;}
.ls2e{letter-spacing:17.720877pt;}
.ls18{letter-spacing:40.169548pt;}
.ls2f{letter-spacing:40.452214pt;}
.ls1e{letter-spacing:43.038881pt;}
.ls2{letter-spacing:51.035733pt;}
.ls27{letter-spacing:59.984751pt;}
.ls4{letter-spacing:62.432533pt;}
.ls5{letter-spacing:64.314231pt;}
.ls34{letter-spacing:83.149654pt;}
.ls26{letter-spacing:731.214881pt;}
.ws12{word-spacing:-15.461955pt;}
.ws8{word-spacing:-13.915853pt;}
.ws4f{word-spacing:-13.283467pt;}
.ws23{word-spacing:-12.369595pt;}
.ws7{word-spacing:-11.955200pt;}
.ws21{word-spacing:-10.626800pt;}
.ws3{word-spacing:-10.095467pt;}
.ws57{word-spacing:-9.698267pt;}
.ws8c{word-spacing:-9.564160pt;}
.wsa0{word-spacing:-9.085952pt;}
.ws93{word-spacing:-7.438720pt;}
.ws55{word-spacing:-7.370533pt;}
.ws86{word-spacing:-3.506835pt;}
.ws6c{word-spacing:-3.294300pt;}
.ws6e{word-spacing:-3.279727pt;}
.ws41{word-spacing:-2.922363pt;}
.wsbf{word-spacing:-2.917069pt;}
.ws39{word-spacing:-2.869229pt;}
.wsb9{word-spacing:-2.773606pt;}
.wsa9{word-spacing:-2.762961pt;}
.wscc{word-spacing:-2.725786pt;}
.ws9b{word-spacing:-2.656693pt;}
.ws6d{word-spacing:-2.603559pt;}
.wsbb{word-spacing:-2.343219pt;}
.wsc9{word-spacing:-2.295398pt;}
.ws49{word-spacing:-2.231622pt;}
.ws10{word-spacing:-2.125355pt;}
.wsd{word-spacing:-2.072221pt;}
.ws88{word-spacing:-2.019087pt;}
.ws81{word-spacing:-1.912819pt;}
.ws59{word-spacing:-1.859685pt;}
.ws9d{word-spacing:-1.753418pt;}
.wsb{word-spacing:-1.696326pt;}
.ws99{word-spacing:-1.647150pt;}
.ws1f{word-spacing:-1.540882pt;}
.ws35{word-spacing:-1.487748pt;}
.wsd9{word-spacing:-1.482445pt;}
.ws5a{word-spacing:-1.434614pt;}
.ws82{word-spacing:-1.381481pt;}
.ws2d{word-spacing:-1.328347pt;}
.wsc1{word-spacing:-1.195520pt;}
.wsa{word-spacing:-1.175671pt;}
.ws9c{word-spacing:-1.168945pt;}
.wsdc{word-spacing:-1.147699pt;}
.ws5c{word-spacing:-1.115811pt;}
.wsf6{word-spacing:-1.099878pt;}
.wsa6{word-spacing:-1.062677pt;}
.ws83{word-spacing:-1.009543pt;}
.ws80{word-spacing:-0.956410pt;}
.ws33{word-spacing:-0.903276pt;}
.ws7f{word-spacing:-0.850142pt;}
.ws66{word-spacing:-0.797008pt;}
.ws7e{word-spacing:-0.743874pt;}
.wsb1{word-spacing:-0.717312pt;}
.ws3b{word-spacing:-0.690740pt;}
.wsa7{word-spacing:-0.637606pt;}
.ws38{word-spacing:-0.584473pt;}
.wsed{word-spacing:-0.573850pt;}
.ws78{word-spacing:-0.531339pt;}
.ws79{word-spacing:-0.478205pt;}
.ws7d{word-spacing:-0.425071pt;}
.ws26{word-spacing:-0.371937pt;}
.wsc{word-spacing:-0.318803pt;}
.ws2f{word-spacing:-0.265669pt;}
.ws17{word-spacing:-0.212535pt;}
.ws95{word-spacing:-0.191283pt;}
.ws2c{word-spacing:-0.159402pt;}
.ws96{word-spacing:-0.153027pt;}
.wsca{word-spacing:-0.143462pt;}
.ws2b{word-spacing:-0.106268pt;}
.wsb2{word-spacing:-0.095642pt;}
.ws2{word-spacing:-0.053134pt;}
.wsb8{word-spacing:-0.047821pt;}
.ws22{word-spacing:-0.042507pt;}
.ws8f{word-spacing:-0.038257pt;}
.wsa3{word-spacing:-0.036344pt;}
.ws94{word-spacing:-0.004267pt;}
.ws92{word-spacing:-0.004157pt;}
.ws76{word-spacing:-0.002933pt;}
.wsd1{word-spacing:-0.002176pt;}
.ws72{word-spacing:-0.001333pt;}
.ws74{word-spacing:-0.001319pt;}
.wsa2{word-spacing:-0.000811pt;}
.ws0{word-spacing:0.000000pt;}
.wsa4{word-spacing:0.000104pt;}
.ws90{word-spacing:0.000109pt;}
.ws73{word-spacing:0.001091pt;}
.ws77{word-spacing:0.002691pt;}
.ws8e{word-spacing:0.003413pt;}
.ws98{word-spacing:0.004000pt;}
.ws63{word-spacing:0.041763pt;}
.ws5{word-spacing:0.047821pt;}
.wse{word-spacing:0.053134pt;}
.ws9f{word-spacing:0.072688pt;}
.ws8b{word-spacing:0.076513pt;}
.ws6{word-spacing:0.095642pt;}
.ws34{word-spacing:0.106268pt;}
.wsc6{word-spacing:0.143462pt;}
.ws31{word-spacing:0.159402pt;}
.wsb4{word-spacing:0.191283pt;}
.ws13{word-spacing:0.212535pt;}
.ws14{word-spacing:0.265669pt;}
.wsb5{word-spacing:0.286925pt;}
.ws19{word-spacing:0.318803pt;}
.wsde{word-spacing:0.334746pt;}
.ws4d{word-spacing:0.371937pt;}
.wsdf{word-spacing:0.382566pt;}
.wsa8{word-spacing:0.425071pt;}
.wsd3{word-spacing:0.430387pt;}
.ws36{word-spacing:0.478205pt;}
.wsf2{word-spacing:0.478208pt;}
.wse1{word-spacing:0.526029pt;}
.wsee{word-spacing:0.573850pt;}
.ws27{word-spacing:0.637606pt;}
.wscd{word-spacing:0.669491pt;}
.ws15{word-spacing:0.743874pt;}
.ws4b{word-spacing:0.797008pt;}
.ws30{word-spacing:0.850142pt;}
.ws7b{word-spacing:0.903276pt;}
.ws89{word-spacing:0.956410pt;}
.ws8a{word-spacing:1.009543pt;}
.ws28{word-spacing:1.062677pt;}
.ws3e{word-spacing:1.115811pt;}
.ws18{word-spacing:1.168945pt;}
.ws87{word-spacing:1.222079pt;}
.wsd2{word-spacing:1.243341pt;}
.wse2{word-spacing:1.291162pt;}
.ws9e{word-spacing:1.381481pt;}
.ws60{word-spacing:1.452948pt;}
.ws54{word-spacing:1.456415pt;}
.ws61{word-spacing:1.458282pt;}
.ws64{word-spacing:1.487748pt;}
.ws4a{word-spacing:1.540882pt;}
.wsce{word-spacing:1.578086pt;}
.ws29{word-spacing:1.594016pt;}
.ws25{word-spacing:1.647150pt;}
.wsd6{word-spacing:1.673728pt;}
.ws45{word-spacing:1.753418pt;}
.wsb0{word-spacing:1.817190pt;}
.ws65{word-spacing:1.912819pt;}
.ws1a{word-spacing:1.965953pt;}
.wsaf{word-spacing:2.056294pt;}
.ws5f{word-spacing:2.136465pt;}
.ws37{word-spacing:2.178489pt;}
.ws3a{word-spacing:2.284756pt;}
.wsbc{word-spacing:2.295398pt;}
.wsbd{word-spacing:2.343219pt;}
.ws9a{word-spacing:2.497292pt;}
.wse5{word-spacing:2.534502pt;}
.ws70{word-spacing:2.550426pt;}
.ws46{word-spacing:2.603559pt;}
.wsae{word-spacing:2.762961pt;}
.ws68{word-spacing:2.890959pt;}
.ws69{word-spacing:2.891253pt;}
.ws5e{word-spacing:2.896100pt;}
.ws1e{word-spacing:3.028630pt;}
.ws40{word-spacing:3.081764pt;}
.wse7{word-spacing:3.203994pt;}
.ws84{word-spacing:3.347434pt;}
.ws43{word-spacing:3.453701pt;}
.ws44{word-spacing:3.506835pt;}
.ws5d{word-spacing:3.552587pt;}
.ws51{word-spacing:3.557626pt;}
.ws53{word-spacing:3.557920pt;}
.wsf3{word-spacing:3.586560pt;}
.wsa5{word-spacing:3.666237pt;}
.ws3d{word-spacing:3.719371pt;}
.ws2e{word-spacing:3.772505pt;}
.wsaa{word-spacing:3.825638pt;}
.wsf{word-spacing:3.931906pt;}
.wsd0{word-spacing:4.016947pt;}
.wsa1{word-spacing:4.037540pt;}
.ws1d{word-spacing:4.038174pt;}
.ws16{word-spacing:4.091308pt;}
.wsf0{word-spacing:4.160410pt;}
.ws7a{word-spacing:4.197575pt;}
.ws8d{word-spacing:4.250042pt;}
.ws91{word-spacing:4.254309pt;}
.wsec{word-spacing:4.447334pt;}
.ws3f{word-spacing:4.463245pt;}
.ws32{word-spacing:4.622646pt;}
.wsb6{word-spacing:4.777438pt;}
.wsd7{word-spacing:4.777566pt;}
.wsb3{word-spacing:4.781175pt;}
.ws2a{word-spacing:4.782048pt;}
.ws9{word-spacing:4.782080pt;}
.wsea{word-spacing:4.829901pt;}
.ws3c{word-spacing:4.835182pt;}
.ws11{word-spacing:5.153985pt;}
.ws7c{word-spacing:5.260253pt;}
.ws1c{word-spacing:5.313387pt;}
.wsad{word-spacing:5.579056pt;}
.ws71{word-spacing:5.841788pt;}
.wsf5{word-spacing:5.929779pt;}
.wsf4{word-spacing:5.977600pt;}
.ws85{word-spacing:6.163529pt;}
.ws75{word-spacing:6.641733pt;}
.ws4c{word-spacing:7.226206pt;}
.ws42{word-spacing:7.332474pt;}
.ws6f{word-spacing:7.651277pt;}
.ws67{word-spacing:7.979253pt;}
.ws50{word-spacing:7.984587pt;}
.wsab{word-spacing:8.182615pt;}
.ws5b{word-spacing:8.767088pt;}
.ws52{word-spacing:8.873356pt;}
.ws97{word-spacing:8.979623pt;}
.wsba{word-spacing:9.133773pt;}
.ws1b{word-spacing:9.776631pt;}
.wsac{word-spacing:10.307970pt;}
.wsda{word-spacing:10.472755pt;}
.ws20{word-spacing:10.582833pt;}
.wsc0{word-spacing:10.711859pt;}
.wscb{word-spacing:11.763917pt;}
.wsc8{word-spacing:11.811738pt;}
.wscf{word-spacing:11.859558pt;}
.wsc7{word-spacing:11.902242pt;}
.wsd5{word-spacing:11.905655pt;}
.wsdb{word-spacing:11.906475pt;}
.wsbe{word-spacing:11.907379pt;}
.wsc5{word-spacing:11.907575pt;}
.wse3{word-spacing:11.955200pt;}
.wsdd{word-spacing:12.098662pt;}
.wse0{word-spacing:12.242125pt;}
.wsd4{word-spacing:12.337766pt;}
.wsc2{word-spacing:13.055078pt;}
.ws4e{word-spacing:13.230333pt;}
.wsef{word-spacing:13.724570pt;}
.wsf7{word-spacing:16.593818pt;}
.wsb7{word-spacing:16.684561pt;}
.wse8{word-spacing:16.687710pt;}
.wse4{word-spacing:16.689178pt;}
.wsd8{word-spacing:16.689459pt;}
.wseb{word-spacing:16.785101pt;}
.wsc4{word-spacing:19.702170pt;}
.wse6{word-spacing:24.675533pt;}
.wsc3{word-spacing:24.962458pt;}
.wse9{word-spacing:26.157978pt;}
.wsf1{word-spacing:29.505434pt;}
.ws1{word-spacing:35.593054pt;}
.ws4{word-spacing:48.378430pt;}
.ws48{word-spacing:57.767526pt;}
.ws47{word-spacing:106.927309pt;}
.ws6a{word-spacing:406.051853pt;}
.ws6b{word-spacing:406.099853pt;}
.ws56{word-spacing:467.106670pt;}
.ws58{word-spacing:475.709337pt;}
.ws62{word-spacing:675.366487pt;}
.ws24{word-spacing:807.381757pt;}
._26{margin-left:-6.981837pt;}
._0{margin-left:-5.896673pt;}
._3{margin-left:-4.399514pt;}
._1{margin-left:-2.924067pt;}
._4{margin-left:-1.721549pt;}
._6{width:0.969929pt;}
._2{width:2.667708pt;}
._27{width:7.798582pt;}
._1e{width:8.843056pt;}
._1f{width:11.104978pt;}
._8{width:12.061388pt;}
._13{width:12.985929pt;}
._f{width:14.261141pt;}
._28{width:15.733043pt;}
._5{width:16.737280pt;}
._10{width:17.640444pt;}
._7{width:18.543719pt;}
._9{width:19.787063pt;}
._a{width:21.200413pt;}
._11{width:22.263090pt;}
._12{width:23.644571pt;}
._c{width:24.569111pt;}
._14{width:25.610524pt;}
._16{width:26.992004pt;}
._d{width:28.160949pt;}
._15{width:30.233170pt;}
._b{width:32.060987pt;}
._25{width:35.759092pt;}
._29{width:43.441697pt;}
._2a{width:51.359539pt;}
._24{width:85.516980pt;}
._23{width:87.588577pt;}
._21{width:90.017874pt;}
._20{width:92.198502pt;}
._17{width:107.692442pt;}
._19{width:114.913382pt;}
._1b{width:117.543526pt;}
._1a{width:125.529600pt;}
._1d{width:137.532621pt;}
._1c{width:140.162765pt;}
._18{width:146.386467pt;}
._22{width:1783.858400pt;}
._e{width:1805.111733pt;}
.fs10{font-size:28.267136pt;}
.fsc{font-size:29.482133pt;}
.fse{font-size:29.754880pt;}
.fs9{font-size:31.880533pt;}
.fsf{font-size:36.343808pt;}
.fs4{font-size:37.193600pt;}
.fs7{font-size:37.276537pt;}
.fsd{font-size:38.256640pt;}
.fsb{font-size:38.793067pt;}
.fs3{font-size:40.381867pt;}
.fs6{font-size:41.988267pt;}
.fs8{font-size:42.507200pt;}
.fs5{font-size:47.820800pt;}
.fs1{font-size:53.133867pt;}
.fsa{font-size:55.365867pt;}
.fs2{font-size:95.641600pt;}
.fs0{font-size:131.027520pt;}
.y0{bottom:0.000000pt;}
.y16{bottom:3.044747pt;}
.y15{bottom:12.578910pt;}
.y2{bottom:14.078151pt;}
.y31{bottom:56.693333pt;}
.y195{bottom:98.220000pt;}
.y119{bottom:98.749333pt;}
.y162{bottom:98.818667pt;}
.y165{bottom:99.428000pt;}
.y161{bottom:100.812000pt;}
.y30{bottom:107.246667pt;}
.y68{bottom:109.441333pt;}
.ya8{bottom:114.818667pt;}
.y194{bottom:116.233333pt;}
.y160{bottom:118.824000pt;}
.y1e7{bottom:123.205333pt;}
.y1b4{bottom:123.629333pt;}
.ya7{bottom:123.826667pt;}
.y2f{bottom:125.258667pt;}
.yf4{bottom:125.346667pt;}
.y117{bottom:126.096000pt;}
.y67{bottom:127.454667pt;}
.y193{bottom:134.245333pt;}
.y15f{bottom:136.837333pt;}
.y1e6{bottom:140.421333pt;}
.y2e{bottom:143.272000pt;}
.y116{bottom:144.108000pt;}
.y1b3{bottom:145.108000pt;}
.y66{bottom:145.466667pt;}
.y192{bottom:152.257333pt;}
.y15e{bottom:152.362667pt;}
.y15d{bottom:152.857333pt;}
.y15c{bottom:154.849333pt;}
.y1e5{bottom:157.636000pt;}
.y1b2{bottom:158.617333pt;}
.y2d{bottom:161.284000pt;}
.y115{bottom:162.121333pt;}
.y65{bottom:163.478667pt;}
.ya6{bottom:164.630667pt;}
.ya5{bottom:170.252000pt;}
.y191{bottom:170.270667pt;}
.y1b1{bottom:172.126667pt;}
.y15b{bottom:172.861333pt;}
.y1e4{bottom:174.852000pt;}
.y114{bottom:180.133333pt;}
.y64{bottom:181.492000pt;}
.y1b0{bottom:185.636000pt;}
.y2c{bottom:187.266667pt;}
.ye2{bottom:188.046667pt;}
.y190{bottom:188.282667pt;}
.y15a{bottom:188.388000pt;}
.y159{bottom:190.874667pt;}
.y1e3{bottom:192.068000pt;}
.y113{bottom:198.145333pt;}
.y63{bottom:199.504000pt;}
.ya4{bottom:203.274667pt;}
.ye1{bottom:203.573333pt;}
.ye0{bottom:206.060000pt;}
.y18f{bottom:206.296000pt;}
.y157{bottom:206.400000pt;}
.y158{bottom:206.894667pt;}
.y1af{bottom:207.116000pt;}
.y156{bottom:208.886667pt;}
.y1e2{bottom:209.282667pt;}
.y112{bottom:216.158667pt;}
.y62{bottom:217.517333pt;}
.ydf{bottom:224.072000pt;}
.y18e{bottom:224.308000pt;}
.y155{bottom:224.906667pt;}
.y1e1{bottom:226.498667pt;}
.y154{bottom:226.900000pt;}
.y1ae{bottom:228.596000pt;}
.ya3{bottom:229.257333pt;}
.y111{bottom:234.170667pt;}
.y61{bottom:235.529333pt;}
.yde{bottom:242.084000pt;}
.y1ad{bottom:242.105333pt;}
.y18d{bottom:242.320000pt;}
.y1e0{bottom:243.713333pt;}
.y153{bottom:244.912000pt;}
.y110{bottom:249.697333pt;}
.y10f{bottom:250.190667pt;}
.y10e{bottom:252.184000pt;}
.y60{bottom:253.541333pt;}
.y2b{bottom:255.192000pt;}
.y1ac{bottom:255.614667pt;}
.ydd{bottom:260.097333pt;}
.ya2{bottom:260.208000pt;}
.y18c{bottom:260.333333pt;}
.y1df{bottom:260.929333pt;}
.y152{bottom:262.924000pt;}
.y1ab{bottom:269.124000pt;}
.y10d{bottom:270.196000pt;}
.y5f{bottom:271.554667pt;}
.y2a{bottom:273.205333pt;}
.y85{bottom:273.784000pt;}
.ydc{bottom:278.109333pt;}
.y1de{bottom:278.145333pt;}
.ya1{bottom:278.220000pt;}
.y18b{bottom:278.345333pt;}
.y151{bottom:280.937333pt;}
.y10c{bottom:288.208000pt;}
.y5e{bottom:289.566667pt;}
.y84{bottom:291.796000pt;}
.ya0{bottom:294.240000pt;}
.y1dd{bottom:295.360000pt;}
.ydb{bottom:296.122667pt;}
.y9f{bottom:296.233333pt;}
.y18a{bottom:296.358667pt;}
.y1aa{bottom:298.573333pt;}
.y150{bottom:298.949333pt;}
.y10b{bottom:306.221333pt;}
.y29{bottom:307.157333pt;}
.y5d{bottom:307.580000pt;}
.y9e{bottom:308.624000pt;}
.y83{bottom:309.809333pt;}
.y1dc{bottom:312.576000pt;}
.yda{bottom:314.134667pt;}
.y9d{bottom:314.245333pt;}
.y189{bottom:314.370667pt;}
.y1a9{bottom:316.585333pt;}
.y14f{bottom:316.962667pt;}
.y5c{bottom:323.105333pt;}
.y5b{bottom:323.600000pt;}
.y10a{bottom:324.233333pt;}
.y28{bottom:325.170667pt;}
.y5a{bottom:325.592000pt;}
.y82{bottom:327.821333pt;}
.y1db{bottom:329.790667pt;}
.y1a8{bottom:332.112000pt;}
.yd9{bottom:332.146667pt;}
.y188{bottom:332.382667pt;}
.y1a7{bottom:334.598667pt;}
.y14e{bottom:334.974667pt;}
.y59{bottom:341.118667pt;}
.y58{bottom:341.612000pt;}
.y109{bottom:342.246667pt;}
.y9c{bottom:342.488000pt;}
.y27{bottom:343.182667pt;}
.y57{bottom:343.604000pt;}
.y9a{bottom:344.373333pt;}
.y81{bottom:345.834667pt;}
.y1da{bottom:347.006667pt;}
.y94{bottom:347.034667pt;}
.y99{bottom:348.013333pt;}
.yd8{bottom:350.160000pt;}
.y187{bottom:350.396000pt;}
.y1a6{bottom:350.618667pt;}
.y98{bottom:351.653333pt;}
.y1a5{bottom:352.610667pt;}
.y93{bottom:352.656000pt;}
.y14d{bottom:352.986667pt;}
.y108{bottom:360.258667pt;}
.y97{bottom:360.326667pt;}
.y26{bottom:361.194667pt;}
.y56{bottom:361.617333pt;}
.y9b{bottom:362.824000pt;}
.y80{bottom:363.846667pt;}
.y96{bottom:363.966667pt;}
.y1d9{bottom:364.222667pt;}
.y95{bottom:367.606667pt;}
.yd7{bottom:368.172000pt;}
.y1a4{bottom:370.624000pt;}
.y14c{bottom:371.000000pt;}
.y20a{bottom:372.116000pt;}
.y107{bottom:378.270667pt;}
.y25{bottom:379.208000pt;}
.y55{bottom:379.629333pt;}
.y1d8{bottom:381.437333pt;}
.y7f{bottom:381.858667pt;}
.yd6{bottom:386.184000pt;}
.y1a3{bottom:388.636000pt;}
.y14b{bottom:389.012000pt;}
.y209{bottom:389.332000pt;}
.y186{bottom:390.224640pt;}
.y106{bottom:396.284000pt;}
.y24{bottom:397.220000pt;}
.y54{bottom:397.642667pt;}
.y1d7{bottom:398.653333pt;}
.y7e{bottom:399.872000pt;}
.y92{bottom:400.444000pt;}
.y185{bottom:401.329760pt;}
.y90{bottom:402.329333pt;}
.yd5{bottom:404.197333pt;}
.y8a{bottom:404.990667pt;}
.y8f{bottom:405.969333pt;}
.y208{bottom:406.546667pt;}
.y1a2{bottom:406.648000pt;}
.y14a{bottom:407.025333pt;}
.y8e{bottom:409.609333pt;}
.y89{bottom:410.612000pt;}
.y184{bottom:412.434880pt;}
.y105{bottom:414.296000pt;}
.y23{bottom:415.233333pt;}
.y53{bottom:415.654667pt;}
.y1d6{bottom:415.868000pt;}
.y7d{bottom:417.884000pt;}
.y8d{bottom:418.282667pt;}
.yd4{bottom:419.724000pt;}
.yd3{bottom:420.217333pt;}
.y91{bottom:420.780000pt;}
.y8c{bottom:421.922667pt;}
.yd2{bottom:422.209333pt;}
.y183{bottom:423.540000pt;}
.yf3{bottom:423.790667pt;}
.y1a1{bottom:424.661333pt;}
.y164{bottom:424.885333pt;}
.y149{bottom:425.037333pt;}
.y8b{bottom:425.562667pt;}
.y104{bottom:432.309333pt;}
.y207{bottom:432.632000pt;}
.y1d5{bottom:433.084000pt;}
.y22{bottom:433.245333pt;}
.y52{bottom:433.666667pt;}
.y17e{bottom:434.645120pt;}
.y7c{bottom:435.897333pt;}
.yf2{bottom:441.804000pt;}
.y1a0{bottom:442.673333pt;}
.y148{bottom:443.049333pt;}
.y17c{bottom:445.750240pt;}
.y206{bottom:446.141333pt;}
.y1d4{bottom:450.300000pt;}
.y103{bottom:450.321333pt;}
.yd1{bottom:450.849333pt;}
.y21{bottom:451.257333pt;}
.y51{bottom:451.680000pt;}
.y7b{bottom:453.909333pt;}
.y88{bottom:455.112000pt;}
.y17d{bottom:456.855360pt;}
.yf1{bottom:459.816000pt;}
.y19f{bottom:460.686667pt;}
.y147{bottom:461.062667pt;}
.y1d3{bottom:467.514667pt;}
.y182{bottom:467.960480pt;}
.y102{bottom:468.333333pt;}
.y20{bottom:469.270667pt;}
.y50{bottom:469.692000pt;}
.yd0{bottom:470.189333pt;}
.y7a{bottom:471.921333pt;}
.y205{bottom:475.592000pt;}
.yf0{bottom:477.829333pt;}
.y19e{bottom:478.698667pt;}
.y181{bottom:479.064587pt;}
.y146{bottom:479.074667pt;}
.y87{bottom:481.094667pt;}
.y1d2{bottom:484.730667pt;}
.y101{bottom:486.346667pt;}
.y1f{bottom:487.282667pt;}
.y4f{bottom:487.704000pt;}
.ycf{bottom:489.530667pt;}
.y79{bottom:489.934667pt;}
.y180{bottom:490.169707pt;}
.y204{bottom:492.806667pt;}
.yef{bottom:495.841333pt;}
.y19d{bottom:496.710667pt;}
.y145{bottom:497.088000pt;}
.y17f{bottom:501.274827pt;}
.y1d1{bottom:501.945333pt;}
.y100{bottom:504.358667pt;}
.y1e{bottom:505.296000pt;}
.y4e{bottom:505.717333pt;}
.y78{bottom:507.946667pt;}
.y86{bottom:509.204000pt;}
.y203{bottom:510.022667pt;}
.y19c{bottom:512.237333pt;}
.y19b{bottom:512.730667pt;}
.yee{bottom:513.853333pt;}
.y19a{bottom:514.724000pt;}
.y144{bottom:515.100000pt;}
.y17b{bottom:517.245973pt;}
.yce{bottom:518.170667pt;}
.y1d0{bottom:519.161333pt;}
.yff{bottom:522.372000pt;}
.y1d{bottom:523.308000pt;}
.y4d{bottom:523.729333pt;}
.y202{bottom:527.237333pt;}
.y17a{bottom:528.351093pt;}
.y118{bottom:530.894667pt;}
.yed{bottom:531.866667pt;}
.y199{bottom:532.736000pt;}
.y143{bottom:533.112000pt;}
.ycd{bottom:536.182667pt;}
.y1cf{bottom:536.377333pt;}
.y179{bottom:539.456213pt;}
.yfe{bottom:540.384000pt;}
.y1c{bottom:541.320000pt;}
.y4c{bottom:541.742667pt;}
.y201{bottom:544.453333pt;}
.y175{bottom:545.008267pt;}
.y141{bottom:548.638667pt;}
.y142{bottom:549.132000pt;}
.yec{bottom:549.878667pt;}
.y77{bottom:549.950667pt;}
.y172{bottom:550.560320pt;}
.y198{bottom:550.749333pt;}
.y140{bottom:551.125333pt;}
.y1ce{bottom:553.592000pt;}
.ycc{bottom:554.194667pt;}
.y174{bottom:556.113387pt;}
.yfd{bottom:558.396000pt;}
.y1b{bottom:559.333333pt;}
.y4b{bottom:559.754667pt;}
.y171{bottom:561.665440pt;}
.y200{bottom:561.669333pt;}
.y13f{bottom:567.145333pt;}
.y173{bottom:567.218507pt;}
.yeb{bottom:567.892000pt;}
.y13e{bottom:569.137333pt;}
.y1cd{bottom:570.808000pt;}
.y76{bottom:571.281333pt;}
.y178{bottom:572.770560pt;}
.yfc{bottom:576.409333pt;}
.y197{bottom:576.732000pt;}
.y1a{bottom:577.345333pt;}
.y4a{bottom:577.766667pt;}
.y1ff{bottom:578.884000pt;}
.ycb{bottom:582.834667pt;}
.y177{bottom:583.875680pt;}
.yea{bottom:585.904000pt;}
.y13d{bottom:587.150667pt;}
.y1cc{bottom:588.024000pt;}
.yfb{bottom:594.421333pt;}
.y176{bottom:594.980800pt;}
.y19{bottom:595.358667pt;}
.y49{bottom:595.780000pt;}
.y1fe{bottom:596.100000pt;}
.y75{bottom:599.388000pt;}
.yca{bottom:602.176000pt;}
.ye9{bottom:603.916000pt;}
.y196{bottom:604.841333pt;}
.y13c{bottom:605.162667pt;}
.y1cb{bottom:605.238667pt;}
.y16c{bottom:610.950933pt;}
.yfa{bottom:612.434667pt;}
.y1fd{bottom:613.314667pt;}
.y18{bottom:613.370667pt;}
.y48{bottom:613.792000pt;}
.y170{bottom:616.504000pt;}
.ye8{bottom:619.442667pt;}
.ye7{bottom:619.936000pt;}
.yc9{bottom:621.516000pt;}
.ye6{bottom:621.929333pt;}
.y16b{bottom:622.056053pt;}
.y1ca{bottom:622.454667pt;}
.y13b{bottom:623.174667pt;}
.y16f{bottom:627.609120pt;}
.y74{bottom:628.909333pt;}
.yf9{bottom:630.446667pt;}
.y1fc{bottom:630.530667pt;}
.y17{bottom:631.382667pt;}
.y47{bottom:631.805333pt;}
.y168{bottom:633.161173pt;}
.y16e{bottom:638.714240pt;}
.y1c9{bottom:639.669333pt;}
.y13a{bottom:641.188000pt;}
.y16a{bottom:644.266293pt;}
.y73{bottom:646.921333pt;}
.y1fb{bottom:647.746667pt;}
.ye5{bottom:647.912000pt;}
.yf8{bottom:648.458667pt;}
.y46{bottom:649.817333pt;}
.y16d{bottom:649.819360pt;}
.yc8{bottom:650.156000pt;}
.y169{bottom:655.371413pt;}
.y1c8{bottom:656.885333pt;}
.y139{bottom:659.200000pt;}
.y14{bottom:662.878634pt;}
.y13{bottom:663.560000pt;}
.y72{bottom:664.934667pt;}
.y1fa{bottom:664.961333pt;}
.yf7{bottom:666.472000pt;}
.y45{bottom:667.829333pt;}
.yc7{bottom:668.168000pt;}
.y1c7{bottom:674.101333pt;}
.y138{bottom:677.213333pt;}
.ye4{bottom:678.862667pt;}
.y167{bottom:679.874667pt;}
.y1f9{bottom:682.177333pt;}
.y71{bottom:682.946667pt;}
.yf6{bottom:684.484000pt;}
.y44{bottom:685.842667pt;}
.yc6{bottom:686.181333pt;}
.y1c6{bottom:691.316000pt;}
.y137{bottom:695.225333pt;}
.y12{bottom:698.232000pt;}
.y1f8{bottom:699.392000pt;}
.y70{bottom:700.958667pt;}
.y43{bottom:703.854667pt;}
.yc5{bottom:704.193333pt;}
.y166{bottom:706.269333pt;}
.ye3{bottom:706.972000pt;}
.y1c5{bottom:708.532000pt;}
.y136{bottom:713.237333pt;}
.y11{bottom:714.370667pt;}
.yf5{bottom:715.596000pt;}
.y6f{bottom:716.485333pt;}
.y1f7{bottom:716.608000pt;}
.y6e{bottom:718.972000pt;}
.y42{bottom:721.868000pt;}
.yc4{bottom:722.205333pt;}
.y1c4{bottom:725.746667pt;}
.y135{bottom:731.250667pt;}
.y1f6{bottom:733.824000pt;}
.yc3{bottom:734.597333pt;}
.y10{bottom:734.850667pt;}
.y6d{bottom:736.984000pt;}
.y41{bottom:739.880000pt;}
.yc2{bottom:740.218667pt;}
.y1c3{bottom:742.962667pt;}
.yf{bottom:746.650667pt;}
.y1f5{bottom:751.038667pt;}
.y6c{bottom:754.997333pt;}
.y134{bottom:757.233333pt;}
.y40{bottom:757.892000pt;}
.y1c2{bottom:760.178667pt;}
.ye{bottom:767.129333pt;}
.y1f4{bottom:768.254667pt;}
.yc1{bottom:768.460000pt;}
.ybf{bottom:770.346667pt;}
.yb9{bottom:773.008000pt;}
.ybe{bottom:773.986667pt;}
.y3f{bottom:775.905333pt;}
.y1c1{bottom:777.393333pt;}
.ybd{bottom:777.625333pt;}
.yb8{bottom:778.629333pt;}
.yd{bottom:778.929333pt;}
.y6b{bottom:780.980000pt;}
.y1f3{bottom:785.469333pt;}
.ybc{bottom:786.300000pt;}
.yc0{bottom:788.797333pt;}
.ybb{bottom:789.940000pt;}
.yba{bottom:793.580000pt;}
.y3e{bottom:793.917333pt;}
.y133{bottom:794.370933pt;}
.y1c0{bottom:794.609333pt;}
.yc{bottom:795.069333pt;}
.yb{bottom:799.408000pt;}
.y1f2{bottom:802.685333pt;}
.y132{bottom:806.059467pt;}
.ya{bottom:811.208000pt;}
.y1bf{bottom:811.824000pt;}
.y12d{bottom:811.904800pt;}
.y3d{bottom:811.930667pt;}
.y131{bottom:817.749067pt;}
.y1f1{bottom:819.901333pt;}
.y12b{bottom:823.594400pt;}
.yb7{bottom:826.416000pt;}
.y9{bottom:827.348000pt;}
.yb5{bottom:828.302667pt;}
.y1be{bottom:829.040000pt;}
.y130{bottom:829.438667pt;}
.y3c{bottom:829.942667pt;}
.yaf{bottom:830.964000pt;}
.yb4{bottom:831.942667pt;}
.y12c{bottom:835.284000pt;}
.yb3{bottom:835.582667pt;}
.yae{bottom:836.585333pt;}
.y1f0{bottom:837.116000pt;}
.y12f{bottom:841.128267pt;}
.yb2{bottom:844.256000pt;}
.y1bd{bottom:846.256000pt;}
.yb6{bottom:846.753333pt;}
.y8{bottom:847.826667pt;}
.yb1{bottom:847.896000pt;}
.y3b{bottom:847.954667pt;}
.yb0{bottom:851.536000pt;}
.y12e{bottom:852.817867pt;}
.y1ef{bottom:854.332000pt;}
.y1bc{bottom:863.470667pt;}
.y3a{bottom:865.968000pt;}
.y7{bottom:867.597333pt;}
.y12a{bottom:869.629600pt;}
.y1ee{bottom:871.546667pt;}
.y128{bottom:875.473867pt;}
.y1bb{bottom:880.686667pt;}
.yad{bottom:881.084000pt;}
.y125{bottom:881.318133pt;}
.y39{bottom:883.980000pt;}
.y6{bottom:885.609333pt;}
.y127{bottom:887.163467pt;}
.y1ed{bottom:888.762667pt;}
.y124{bottom:893.007733pt;}
.y1ba{bottom:897.901333pt;}
.y126{bottom:898.853067pt;}
.y38{bottom:901.993333pt;}
.y129{bottom:904.697333pt;}
.y1ec{bottom:905.978667pt;}
.yac{bottom:907.066667pt;}
.y1b9{bottom:915.117333pt;}
.y37{bottom:920.005333pt;}
.y11f{bottom:921.509067pt;}
.y1eb{bottom:923.193333pt;}
.y5{bottom:925.198667pt;}
.y123{bottom:927.353333pt;}
.y1b8{bottom:932.333333pt;}
.y11e{bottom:933.198667pt;}
.y36{bottom:938.017333pt;}
.y122{bottom:939.042933pt;}
.y1ea{bottom:940.409333pt;}
.y11b{bottom:944.888267pt;}
.y1b7{bottom:949.548000pt;}
.y121{bottom:950.732533pt;}
.y4{bottom:952.217333pt;}
.y69{bottom:953.544000pt;}
.y6a{bottom:954.037333pt;}
.y35{bottom:956.030667pt;}
.y11d{bottom:956.576800pt;}
.y1e9{bottom:957.624000pt;}
.y120{bottom:962.422133pt;}
.y1b6{bottom:966.764000pt;}
.y11c{bottom:968.266400pt;}
.yaa{bottom:971.556000pt;}
.yab{bottom:972.050667pt;}
.y34{bottom:974.042667pt;}
.y1e8{bottom:974.840000pt;}
.y3{bottom:977.906667pt;}
.ya9{bottom:986.434667pt;}
.y163{bottom:989.569333pt;}
.y1b5{bottom:991.949333pt;}
.y33{bottom:992.056000pt;}
.y11a{bottom:993.372000pt;}
.y1{bottom:1011.514667pt;}
.y32{bottom:1038.548000pt;}
.h14{height:3.134898pt;}
.h24{height:17.827594pt;}
.ha{height:22.673858pt;}
.h21{height:24.760382pt;}
.h25{height:26.167542pt;}
.h22{height:27.544781pt;}
.h19{height:28.426619pt;}
.hc{height:29.433775pt;}
.hb{height:30.399505pt;}
.h26{height:31.546425pt;}
.h1a{height:31.667785pt;}
.h1b{height:32.092855pt;}
.h8{height:32.284045pt;}
.h23{height:33.206764pt;}
.h29{height:33.713664pt;}
.h28{height:34.144051pt;}
.h11{height:34.430976pt;}
.h10{height:35.051460pt;}
.h27{height:35.052646pt;}
.hf{height:36.896250pt;}
.hd{height:38.256384pt;}
.h4{height:38.947124pt;}
.h9{height:41.508454pt;}
.h1f{height:42.039522pt;}
.h2{height:45.271688pt;}
.he{height:46.120196pt;}
.h12{height:47.213175pt;}
.h7{height:48.360277pt;}
.h6{height:48.365611pt;}
.h18{height:55.076231pt;}
.h15{height:57.216794pt;}
.h1c{height:68.605530pt;}
.h5{height:68.861952pt;}
.h1d{height:82.136196pt;}
.h1e{height:82.152196pt;}
.h16{height:86.792196pt;}
.h20{height:86.797530pt;}
.h3{height:88.836659pt;}
.h13{height:120.116231pt;}
.h17{height:120.121565pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w3{width:66.991004pt;}
.w2{width:176.730927pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x7{left:26.021437pt;}
.x2{left:51.157007pt;}
.x1{left:102.046667pt;}
.x5{left:108.542667pt;}
.x3{left:109.606667pt;}
.xca{left:113.204160pt;}
.xd3{left:117.035573pt;}
.xa0{left:121.312800pt;}
.xa8{left:125.345867pt;}
.x3d{left:126.818667pt;}
.x4{left:129.929333pt;}
.x8c{left:135.208000pt;}
.xcb{left:136.911093pt;}
.xb7{left:138.660000pt;}
.x4b{left:140.098667pt;}
.x5e{left:141.088000pt;}
.xe3{left:143.113333pt;}
.x36{left:145.352000pt;}
.xa1{left:146.267467pt;}
.x4c{left:148.958667pt;}
.x5f{left:149.948000pt;}
.x8f{left:152.865333pt;}
.x82{left:154.181333pt;}
.x37{left:157.666667pt;}
.xb4{left:158.573333pt;}
.x6f{left:159.533333pt;}
.x1a{left:160.865333pt;}
.x7e{left:162.164000pt;}
.x8{left:167.954667pt;}
.xae{left:173.489333pt;}
.xc0{left:177.380000pt;}
.x9{left:184.697333pt;}
.x91{left:186.660000pt;}
.x9a{left:190.016000pt;}
.xc3{left:192.418667pt;}
.xcc{left:193.464213pt;}
.x8e{left:194.894667pt;}
.x31{left:198.456000pt;}
.xdd{left:199.492000pt;}
.xe7{left:200.550667pt;}
.x7f{left:205.237333pt;}
.x90{left:206.993333pt;}
.x99{left:210.393333pt;}
.x32{left:211.740000pt;}
.x3c{left:213.000000pt;}
.xe0{left:214.132000pt;}
.xde{left:217.194667pt;}
.x6b{left:219.880000pt;}
.xbd{left:223.000000pt;}
.x8b{left:223.974667pt;}
.xdc{left:225.078667pt;}
.x43{left:226.981333pt;}
.x6c{left:228.740000pt;}
.x44{left:235.142667pt;}
.xbe{left:236.282667pt;}
.x48{left:237.293333pt;}
.xc2{left:239.210667pt;}
.x3e{left:240.233333pt;}
.x45{left:244.002667pt;}
.x49{left:246.153333pt;}
.x64{left:251.480000pt;}
.xdf{left:252.417333pt;}
.x6d{left:255.698667pt;}
.xaf{left:258.660000pt;}
.xc4{left:265.962133pt;}
.xcd{left:268.262400pt;}
.x6e{left:270.058667pt;}
.x46{left:270.961333pt;}
.xb0{left:271.944000pt;}
.x4a{left:273.113333pt;}
.xb1{left:275.314667pt;}
.x12{left:281.433333pt;}
.x98{left:282.760000pt;}
.x47{left:285.321333pt;}
.xa2{left:286.678133pt;}
.x13{left:288.074667pt;}
.x28{left:289.180000pt;}
.x14{left:291.353333pt;}
.x38{left:295.206667pt;}
.x15{left:297.994667pt;}
.x3f{left:299.080000pt;}
.x5b{left:300.189333pt;}
.x29{left:302.464000pt;}
.x69{left:304.730667pt;}
.x39{left:307.257333pt;}
.x5c{left:309.049333pt;}
.x40{left:312.362667pt;}
.x41{left:315.677333pt;}
.x6a{left:321.644000pt;}
.x65{left:324.530667pt;}
.x42{left:328.961333pt;}
.x70{left:337.005333pt;}
.x5d{left:338.489333pt;}
.x4d{left:340.396000pt;}
.xc5{left:341.394667pt;}
.x66{left:343.157333pt;}
.xd4{left:344.984907pt;}
.x53{left:346.220000pt;}
.x60{left:347.794667pt;}
.x71{left:355.822667pt;}
.x54{left:357.037333pt;}
.x4e{left:359.213333pt;}
.x9b{left:360.724000pt;}
.xa3{left:362.498933pt;}
.xaa{left:365.292533pt;}
.x61{left:366.613333pt;}
.xa9{left:367.928267pt;}
.x25{left:377.432000pt;}
.x55{left:387.917333pt;}
.x26{left:389.484000pt;}
.x56{left:406.734667pt;}
.x35{left:408.741333pt;}
.xc7{left:415.329493pt;}
.x72{left:417.241333pt;}
.xce{left:419.668587pt;}
.xc8{left:420.757920pt;}
.x21{left:421.952000pt;}
.x2a{left:422.924000pt;}
.x1f{left:424.361333pt;}
.xc9{left:426.308960pt;}
.xc6{left:431.606667pt;}
.x62{left:433.218667pt;}
.x22{left:435.234667pt;}
.x2b{left:436.206667pt;}
.x20{left:437.645333pt;}
.x9d{left:439.338400pt;}
.x23{left:441.942667pt;}
.x57{left:443.420000pt;}
.x9e{left:445.053600pt;}
.x96{left:447.918667pt;}
.x9f{left:450.896800pt;}
.x63{left:452.036000pt;}
.x24{left:455.226667pt;}
.x9c{left:456.472267pt;}
.xb8{left:459.873333pt;}
.x97{left:461.202667pt;}
.x73{left:464.909333pt;}
.x58{left:466.580000pt;}
.xd8{left:467.664000pt;}
.xba{left:471.672000pt;}
.xb9{left:473.157333pt;}
.xe{left:476.590667pt;}
.x78{left:480.056000pt;}
.xd9{left:480.948000pt;}
.xf{left:483.232000pt;}
.xda{left:484.336000pt;}
.x83{left:486.745333pt;}
.xd0{left:487.955093pt;}
.xd2{left:489.081920pt;}
.xd5{left:490.817760pt;}
.xd7{left:491.871627pt;}
.xd1{left:492.866720pt;}
.x79{left:495.292000pt;}
.xd6{left:496.655573pt;}
.xdb{left:497.618667pt;}
.x74{left:499.152000pt;}
.xc{left:500.589333pt;}
.x84{left:501.740000pt;}
.xcf{left:503.137867pt;}
.xd{left:507.230667pt;}
.x75{left:509.088000pt;}
.x27{left:512.197333pt;}
.x80{left:514.264000pt;}
.x59{left:515.565333pt;}
.xac{left:521.501600pt;}
.xa4{left:523.113333pt;}
.x5a{left:526.381333pt;}
.xa6{left:528.091467pt;}
.x93{left:529.553333pt;}
.xa7{left:531.103733pt;}
.x85{left:532.200000pt;}
.xa5{left:533.825867pt;}
.x7a{left:534.957333pt;}
.x76{left:538.013333pt;}
.x86{left:540.205333pt;}
.xc1{left:543.298667pt;}
.xbc{left:545.736000pt;}
.x8a{left:547.398667pt;}
.xad{left:553.593333pt;}
.x7b{left:555.326667pt;}
.x77{left:556.832000pt;}
.x94{left:557.789333pt;}
.x87{left:559.832000pt;}
.xe1{left:561.570667pt;}
.x92{left:564.969333pt;}
.xbb{left:569.933333pt;}
.x7c{left:571.360000pt;}
.x95{left:573.369333pt;}
.x88{left:575.524000pt;}
.x4f{left:578.108000pt;}
.xe4{left:579.784000pt;}
.xa{left:581.616000pt;}
.x1b{left:584.036000pt;}
.x3a{left:585.162667pt;}
.xb{left:588.257333pt;}
.x1c{left:590.677333pt;}
.x1d{left:594.005333pt;}
.x2c{left:595.205333pt;}
.xe2{left:599.458667pt;}
.x3b{left:603.494667pt;}
.x89{left:605.984000pt;}
.x1e{left:607.289333pt;}
.x7d{left:611.025333pt;}
.x50{left:613.305333pt;}
.x81{left:614.340000pt;}
.x10{left:617.669333pt;}
.x33{left:622.384000pt;}
.x6{left:623.413317pt;}
.x11{left:624.310667pt;}
.xab{left:627.872800pt;}
.xbf{left:629.086667pt;}
.x34{left:635.668000pt;}
.x2d{left:637.888000pt;}
.xb2{left:638.884000pt;}
.xb5{left:643.937333pt;}
.x67{left:650.697333pt;}
.x51{left:653.169333pt;}
.x2e{left:654.149333pt;}
.x68{left:659.408000pt;}
.xb6{left:664.346667pt;}
.xe5{left:666.189333pt;}
.x16{left:669.408000pt;}
.x52{left:671.988000pt;}
.x8d{left:673.105333pt;}
.x2f{left:674.021333pt;}
.x17{left:676.050667pt;}
.x18{left:679.437333pt;}
.xb3{left:684.540000pt;}
.x19{left:686.078667pt;}
.x30{left:687.305333pt;}
.xe6{left:690.100000pt;}
}




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