
    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_c5dd88dcbeb74534e8a42d25.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.944824;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_2f53ef6521faeb4701c1690d.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.903809;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_3a45b1cb65e1e6a6d7a5dd59.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.862305;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_9939e43858ae3972b926f1de.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.959961;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_d2c73da974efa54badb43ab8.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.893555;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_6ab5cdc52fe927862ac8dfd3.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.666504;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_fea6787de17a784500c0eb00.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.687012;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_e64ad91ba7e049ac785cc144.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.919434;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_4c06a517af5ead963238ef59.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.997559;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_b0ce724ad67a22dd5117f3a9.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.997559;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_f3253612de012d5f21d1516f.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.052734;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_03c3c92098e8ad3639fba1fc.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.052734;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_946b7868f0d51b8f46764507.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.051270;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_a9147f4516b6b297ba02aca1.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.051270;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_d4d1c528c3a07f8782ee84c7.woff2')format("woff");}.fff{font-family:fff;line-height:1.093750;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_58a16a597131fefd1955ea5b.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.150391;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_9b02bca6d39fcaff3eee31d2.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.884277;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_02efed87a220fb888431cc7e.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.884277;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_1d2b66322ba05ac355689e8e.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_8f5e278905be863d7401f3b0.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.251465;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_990100a26c5048f3f0b2515d.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_1abcbbda370faf2299d6e446.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_7977d275ab0b43d3a8bfab22.woff2')format("woff");}.ff17{font-family:ff17;line-height:1.084961;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url('chunks/assets/font_b6a2afa24bc177dc7f08992d.woff2')format("woff");}.ff18{font-family:ff18;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19;src:url('chunks/assets/font_a91a7ed8d9faaa8a5dd3f02a.woff2')format("woff");}.ff19{font-family:ff19;line-height:1.051270;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a;src:url('chunks/assets/font_abe653b136531a24f8745b50.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.884277;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b;src:url('chunks/assets/font_514bfccf5bd18e06704b9723.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:1.051270;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:ff1c;src:url('chunks/assets/font_65dee3d0dfc537619aca662c.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.721191;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:ff1d;src:url('chunks/assets/font_74f6ac75e9afe6031ae3abde.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:1.435059;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:ff1e;src:url('chunks/assets/font_1bc1f6777569374b6e2013bb.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:0.914062;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:ff1f;src:url('chunks/assets/font_6b4898e8b4518cefbab0e944.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:0.962402;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:ff20;src:url('chunks/assets/font_78384e1f17580f444e0fb183.woff2')format("woff");}.ff20{font-family:ff20;line-height:1.435059;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:ff21;src:url('chunks/assets/font_4954806d32304013f1f65108.woff2')format("woff");}.ff21{font-family:ff21;line-height:0.745117;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:ff22;src:url('chunks/assets/font_3692b244fc63b71852dd8c51.woff2')format("woff");}.ff22{font-family:ff22;line-height:1.401855;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:ff23;src:url('chunks/assets/font_a9bbec65d24fca1e779c9a50.woff2')format("woff");}.ff23{font-family:ff23;line-height:1.104492;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:ff24;src:url('chunks/assets/font_cc75d28544dc126410581a93.woff2')format("woff");}.ff24{font-family:ff24;line-height:1.402354;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:ff25;src:url('chunks/assets/font_fa74f958f441b3b301a34845.woff2')format("woff");}.ff25{font-family:ff25;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff26;src:url('chunks/assets/font_54b40559745553b6155c070c.woff2')format("woff");}.ff26{font-family:ff26;line-height:1.372070;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;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m3{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,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);}
.m1{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);}
.v6{vertical-align:-87.960000px;}
.v5{vertical-align:-83.520000px;}
.v4{vertical-align:-82.080000px;}
.v3{vertical-align:-80.640000px;}
.v7{vertical-align:-76.320000px;}
.v2{vertical-align:-31.800000px;}
.v8{vertical-align:-1.440000px;}
.v0{vertical-align:0.000000px;}
.v9{vertical-align:1.440000px;}
.v1{vertical-align:37.200000px;}
.ls31{letter-spacing:-3.708000px;}
.ls17{letter-spacing:-0.720000px;}
.lsc{letter-spacing:-0.504000px;}
.lsd{letter-spacing:-0.432000px;}
.ls27{letter-spacing:-0.360000px;}
.ls16{letter-spacing:-0.216000px;}
.ls34{letter-spacing:-0.204600px;}
.ls5{letter-spacing:-0.155400px;}
.ls1{letter-spacing:-0.116400px;}
.ls25{letter-spacing:-0.000003px;}
.ls0{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.072000px;}
.ls2{letter-spacing:0.144000px;}
.ls28{letter-spacing:0.216000px;}
.ls2c{letter-spacing:0.264000px;}
.lsb{letter-spacing:0.288000px;}
.ls2e{letter-spacing:0.305280px;}
.ls14{letter-spacing:0.360000px;}
.ls32{letter-spacing:0.425280px;}
.ls6{letter-spacing:0.432000px;}
.ls2d{letter-spacing:0.466560px;}
.lsa{letter-spacing:0.504000px;}
.ls29{letter-spacing:0.538800px;}
.ls8{letter-spacing:0.576000px;}
.ls2a{letter-spacing:0.612000px;}
.ls13{letter-spacing:0.648000px;}
.ls7{letter-spacing:0.720000px;}
.ls10{letter-spacing:0.936000px;}
.ls3{letter-spacing:1.008000px;}
.ls4{letter-spacing:1.188000px;}
.ls12{letter-spacing:1.224000px;}
.ls30{letter-spacing:1.440000px;}
.ls2b{letter-spacing:1.584000px;}
.ls2f{letter-spacing:1.745280px;}
.ls33{letter-spacing:1.925280px;}
.ls23{letter-spacing:176.400000px;}
.ls20{letter-spacing:244.080000px;}
.ls21{letter-spacing:457.320000px;}
.ls1b{letter-spacing:481.800000px;}
.ls1f{letter-spacing:522.120000px;}
.lsf{letter-spacing:522.408000px;}
.ls1d{letter-spacing:617.160000px;}
.ls22{letter-spacing:636.060000px;}
.lse{letter-spacing:650.568000px;}
.ls11{letter-spacing:796.128000px;}
.ls35{letter-spacing:848.004000px;}
.ls1c{letter-spacing:896.700000px;}
.ls18{letter-spacing:1160.340000px;}
.ls26{letter-spacing:1209.300000px;}
.ls15{letter-spacing:1291.380000px;}
.ls19{letter-spacing:1373.640000px;}
.ls1e{letter-spacing:1709.100000px;}
.ls1a{letter-spacing:1732.140000px;}
.ls24{letter-spacing:1920.960000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws10{word-spacing:-72.000000px;}
.ws13{word-spacing:-71.496000px;}
.ws0{word-spacing:-52.560000px;}
.ws1e{word-spacing:-30.240000px;}
.ws15{word-spacing:-27.011520px;}
.ws9{word-spacing:-24.408000px;}
.ws5{word-spacing:-21.804480px;}
.ws1c{word-spacing:-20.232000px;}
.ws12{word-spacing:-20.016000px;}
.ws1b{word-spacing:-19.026720px;}
.ws17{word-spacing:-18.720000px;}
.ws11{word-spacing:-18.648000px;}
.ws18{word-spacing:-18.432000px;}
.ws21{word-spacing:-18.414720px;}
.ws14{word-spacing:-18.360000px;}
.wsc{word-spacing:-18.000000px;}
.ws19{word-spacing:-17.999997px;}
.ws16{word-spacing:-17.784000px;}
.wsf{word-spacing:-17.208000px;}
.ws7{word-spacing:-16.992000px;}
.ws8{word-spacing:-16.848000px;}
.ws1f{word-spacing:-16.813440px;}
.wsb{word-spacing:-16.776000px;}
.ws6{word-spacing:-16.704000px;}
.wsd{word-spacing:-16.560000px;}
.wsa{word-spacing:-16.344000px;}
.ws4{word-spacing:-16.272000px;}
.ws1a{word-spacing:-16.200000px;}
.wse{word-spacing:-15.768000px;}
.ws3{word-spacing:-15.120000px;}
.ws1d{word-spacing:-14.706720px;}
.ws1{word-spacing:-11.797200px;}
.ws2{word-spacing:0.000000px;}
.ws20{word-spacing:1948.820160px;}
._167{margin-left:-2435.496000px;}
._11{margin-left:-2388.614400px;}
._164{margin-left:-2380.956000px;}
._b5{margin-left:-2273.880000px;}
._86{margin-left:-2252.280000px;}
._ed{margin-left:-2246.520000px;}
._7a{margin-left:-2245.080000px;}
._176{margin-left:-2243.271360px;}
._16b{margin-left:-2218.134720px;}
._dc{margin-left:-2208.240000px;}
._72{margin-left:-2169.072000px;}
._10e{margin-left:-2151.060000px;}
._13b{margin-left:-2147.112000px;}
._a6{margin-left:-2114.496000px;}
._5e{margin-left:-2113.128000px;}
._4f{margin-left:-2108.736000px;}
._134{margin-left:-2105.952000px;}
._90{margin-left:-2103.840000px;}
._133{margin-left:-2089.560000px;}
._8a{margin-left:-2083.680000px;}
._5b{margin-left:-2054.928000px;}
._aa{margin-left:-2046.216000px;}
._f8{margin-left:-2045.052000px;}
._143{margin-left:-2043.432000px;}
._15c{margin-left:-2037.528000px;}
._16d{margin-left:-2024.756160px;}
._33{margin-left:-2013.312000px;}
._db{margin-left:-2000.160000px;}
._5a{margin-left:-1997.280000px;}
._15a{margin-left:-1960.752000px;}
._174{margin-left:-1946.243520px;}
._a9{margin-left:-1942.560000px;}
._147{margin-left:-1940.280000px;}
._93{margin-left:-1931.040000px;}
._175{margin-left:-1918.861440px;}
._172{margin-left:-1890.339840px;}
._115{margin-left:-1872.768000px;}
._bd{margin-left:-1850.316000px;}
._16e{margin-left:-1846.552800px;}
._156{margin-left:-1843.224000px;}
._22{margin-left:-1830.852000px;}
._e8{margin-left:-1818.900000px;}
._e7{margin-left:-1809.336000px;}
._155{margin-left:-1804.896000px;}
._116{margin-left:-1768.752000px;}
._e3{margin-left:-1766.808000px;}
._108{margin-left:-1763.304000px;}
._cf{margin-left:-1749.144000px;}
._e9{margin-left:-1735.980000px;}
._12f{margin-left:-1724.088000px;}
._159{margin-left:-1712.232000px;}
._12e{margin-left:-1709.892000px;}
._c5{margin-left:-1704.840000px;}
._144{margin-left:-1696.968000px;}
._15f{margin-left:-1695.720000px;}
._9e{margin-left:-1692.648000px;}
._fe{margin-left:-1677.480000px;}
._101{margin-left:-1672.536000px;}
._75{margin-left:-1662.072000px;}
._dd{margin-left:-1653.288000px;}
._9d{margin-left:-1640.040000px;}
._48{margin-left:-1613.160000px;}
._e1{margin-left:-1592.304000px;}
._a2{margin-left:-1586.088000px;}
._10{margin-left:-1574.809920px;}
._a1{margin-left:-1569.420000px;}
._10d{margin-left:-1560.504000px;}
._162{margin-left:-1554.360000px;}
._10c{margin-left:-1537.800000px;}
._14f{margin-left:-1536.005280px;}
._ca{margin-left:-1531.488000px;}
._122{margin-left:-1505.808000px;}
._38{margin-left:-1488.096000px;}
._ff{margin-left:-1471.152000px;}
._23{margin-left:-1444.176000px;}
._45{margin-left:-1434.720000px;}
._120{margin-left:-1426.320000px;}
._171{margin-left:-1420.929600px;}
._fc{margin-left:-1406.616000px;}
._141{margin-left:-1396.320000px;}
._14b{margin-left:-1364.016000px;}
._4c{margin-left:-1348.476000px;}
._112{margin-left:-1345.056000px;}
._a4{margin-left:-1327.164000px;}
._111{margin-left:-1321.728000px;}
._63{margin-left:-1317.984000px;}
._9f{margin-left:-1314.096000px;}
._ba{margin-left:-1307.208000px;}
._62{margin-left:-1292.820000px;}
._f3{margin-left:-1289.940000px;}
._ae{margin-left:-1268.424000px;}
._19{margin-left:-1248.516000px;}
._168{margin-left:-1245.944160px;}
._d3{margin-left:-1243.806720px;}
._73{margin-left:-1240.176000px;}
._173{margin-left:-1231.477920px;}
._b1{margin-left:-1230.324000px;}
._4d{margin-left:-1202.880000px;}
._a5{margin-left:-1162.356000px;}
._82{margin-left:-1154.580000px;}
._76{margin-left:-1150.368000px;}
._b2{margin-left:-1147.608000px;}
._1a{margin-left:-1145.880000px;}
._15b{margin-left:-1142.304000px;}
._f9{margin-left:-1136.424000px;}
._67{margin-left:-1128.936000px;}
._c6{margin-left:-1119.888000px;}
._3d{margin-left:-1114.896000px;}
._37{margin-left:-1097.280000px;}
._d1{margin-left:-1094.280000px;}
._d0{margin-left:-1076.700000px;}
._52{margin-left:-1070.604000px;}
._e{margin-left:-1065.504480px;}
._5f{margin-left:-1064.448000px;}
._11f{margin-left:-1061.448000px;}
._14d{margin-left:-1055.616000px;}
._26{margin-left:-1047.516000px;}
._166{margin-left:-1036.656000px;}
._fa{margin-left:-1029.576000px;}
._177{margin-left:-994.711680px;}
._11e{margin-left:-953.436000px;}
._126{margin-left:-914.592000px;}
._125{margin-left:-896.556000px;}
._7b{margin-left:-887.304000px;}
._7d{margin-left:-867.432000px;}
._7c{margin-left:-849.180000px;}
._131{margin-left:-847.752000px;}
._ea{margin-left:-843.900000px;}
._130{margin-left:-830.460000px;}
._91{margin-left:-818.688000px;}
._11b{margin-left:-816.720000px;}
._f4{margin-left:-814.116000px;}
._f1{margin-left:-800.316000px;}
._6a{margin-left:-798.288000px;}
._109{margin-left:-791.076000px;}
._8b{margin-left:-787.680000px;}
._df{margin-left:-782.064000px;}
._10a{margin-left:-750.792000px;}
._169{margin-left:-740.917920px;}
._64{margin-left:-737.916000px;}
._b7{margin-left:-724.668000px;}
._1c{margin-left:-718.344000px;}
._114{margin-left:-716.268000px;}
._6b{margin-left:-713.820000px;}
._11a{margin-left:-702.180000px;}
._24{margin-left:-697.140000px;}
._1b{margin-left:-693.660000px;}
._11d{margin-left:-690.600000px;}
._12c{margin-left:-676.836000px;}
._3e{margin-left:-675.696000px;}
._106{margin-left:-657.240000px;}
._56{margin-left:-647.232000px;}
._110{margin-left:-645.072000px;}
._54{margin-left:-643.584000px;}
._59{margin-left:-641.136000px;}
._f7{margin-left:-634.596000px;}
._8c{margin-left:-629.496000px;}
._4a{margin-left:-620.952000px;}
._35{margin-left:-618.576000px;}
._12d{margin-left:-614.472000px;}
._13d{margin-left:-606.828000px;}
._b6{margin-left:-602.760000px;}
._10f{margin-left:-600.456000px;}
._137{margin-left:-592.032000px;}
._fd{margin-left:-590.136000px;}
._14c{margin-left:-585.984000px;}
._ef{margin-left:-584.592000px;}
._f0{margin-left:-582.600000px;}
._ac{margin-left:-581.112000px;}
._13c{margin-left:-567.960000px;}
._135{margin-left:-565.608000px;}
._123{margin-left:-559.680000px;}
._30{margin-left:-553.416000px;}
._95{margin-left:-546.144000px;}
._31{margin-left:-543.804000px;}
._27{margin-left:-541.464000px;}
._3f{margin-left:-530.748000px;}
._87{margin-left:-526.224000px;}
._16f{margin-left:-523.777440px;}
._47{margin-left:-519.816000px;}
._de{margin-left:-515.616000px;}
._4e{margin-left:-513.744000px;}
._d5{margin-left:-510.840000px;}
._121{margin-left:-508.608000px;}
._113{margin-left:-503.400000px;}
._13f{margin-left:-501.816000px;}
._132{margin-left:-499.080000px;}
._163{margin-left:-497.472000px;}
._fb{margin-left:-492.624000px;}
._b0{margin-left:-491.424000px;}
._14{margin-left:-487.776000px;}
._15{margin-left:-485.640000px;}
._6e{margin-left:-482.016000px;}
._cc{margin-left:-479.520000px;}
._117{margin-left:-473.688000px;}
._145{margin-left:-468.840000px;}
._17{margin-left:-467.280000px;}
._e2{margin-left:-465.216000px;}
._146{margin-left:-458.592000px;}
._a0{margin-left:-451.560000px;}
._cb{margin-left:-449.616000px;}
._c3{margin-left:-448.272000px;}
._cd{margin-left:-445.848000px;}
._d9{margin-left:-442.896000px;}
._89{margin-left:-439.464000px;}
._c7{margin-left:-437.352000px;}
._58{margin-left:-429.960000px;}
._170{margin-left:-427.494720px;}
._af{margin-left:-421.932000px;}
._49{margin-left:-413.256000px;}
._128{margin-left:-409.800000px;}
._107{margin-left:-408.144000px;}
._34{margin-left:-406.920000px;}
._9a{margin-left:-405.408000px;}
._16{margin-left:-402.876000px;}
._157{margin-left:-401.736000px;}
._68{margin-left:-397.056000px;}
._42{margin-left:-392.400000px;}
._e4{margin-left:-390.576000px;}
._41{margin-left:-388.200000px;}
._99{margin-left:-385.320000px;}
._a7{margin-left:-382.008000px;}
._40{margin-left:-378.048000px;}
._16c{margin-left:-376.282560px;}
._80{margin-left:-372.744000px;}
._7f{margin-left:-371.424000px;}
._6d{margin-left:-369.192000px;}
._ee{margin-left:-363.624000px;}
._c1{margin-left:-362.280000px;}
._bb{margin-left:-357.192000px;}
._88{margin-left:-353.640000px;}
._c2{margin-left:-349.200000px;}
._92{margin-left:-344.184000px;}
._2a{margin-left:-341.400000px;}
._d2{margin-left:-340.128000px;}
._14e{margin-left:-338.876160px;}
._15d{margin-left:-337.092000px;}
._a3{margin-left:-334.752000px;}
._6f{margin-left:-330.768000px;}
._158{margin-left:-325.848000px;}
._140{margin-left:-319.704000px;}
._3b{margin-left:-316.752000px;}
._b9{margin-left:-315.576000px;}
._46{margin-left:-307.440000px;}
._85{margin-left:-305.520000px;}
._50{margin-left:-304.488000px;}
._142{margin-left:-300.240000px;}
._94{margin-left:-299.232000px;}
._ec{margin-left:-297.360000px;}
._1d{margin-left:-294.312000px;}
._3a{margin-left:-293.040000px;}
._13e{margin-left:-290.160000px;}
._a8{margin-left:-286.920000px;}
._e6{margin-left:-284.088000px;}
._66{margin-left:-282.297600px;}
._32{margin-left:-274.800000px;}
._36{margin-left:-273.360000px;}
._25{margin-left:-272.304000px;}
._100{margin-left:-269.688000px;}
._8f{margin-left:-266.784000px;}
._b4{margin-left:-263.904000px;}
._b3{margin-left:-262.800000px;}
._14a{margin-left:-260.520000px;}
._138{margin-left:-255.600000px;}
._f2{margin-left:-253.704000px;}
._139{margin-left:-250.632000px;}
._10b{margin-left:-249.264000px;}
._104{margin-left:-247.920000px;}
._102{margin-left:-246.288000px;}
._ab{margin-left:-242.568000px;}
._153{margin-left:-238.368000px;}
._18{margin-left:-235.560000px;}
._81{margin-left:-233.832000px;}
._44{margin-left:-232.776000px;}
._3c{margin-left:-231.048000px;}
._ce{margin-left:-229.512000px;}
._c9{margin-left:-228.264000px;}
._21{margin-left:-223.752000px;}
._51{margin-left:-217.752000px;}
._bf{margin-left:-216.000000px;}
._f6{margin-left:-214.848000px;}
._20{margin-left:-208.080000px;}
._43{margin-left:-206.520000px;}
._bc{margin-left:-205.200000px;}
._d6{margin-left:-202.968000px;}
._4b{margin-left:-201.456000px;}
._9c{margin-left:-198.168000px;}
._2e{margin-left:-196.560000px;}
._f5{margin-left:-194.400000px;}
._60{margin-left:-192.216000px;}
._c4{margin-left:-190.800000px;}
._65{margin-left:-188.328000px;}
._c0{margin-left:-185.976000px;}
._1e{margin-left:-182.376000px;}
._b8{margin-left:-177.816000px;}
._118{margin-left:-174.960000px;}
._70{margin-left:-170.280000px;}
._161{margin-left:-168.960000px;}
._78{margin-left:-167.184000px;}
._149{margin-left:-161.352000px;}
._148{margin-left:-159.600000px;}
._124{margin-left:-158.160000px;}
._127{margin-left:-156.240000px;}
._15e{margin-left:-152.496000px;}
._11c{margin-left:-150.840000px;}
._8e{margin-left:-148.752000px;}
._119{margin-left:-147.120000px;}
._98{margin-left:-144.180000px;}
._ad{margin-left:-141.000000px;}
._79{margin-left:-139.152000px;}
._d7{margin-left:-136.200000px;}
._2c{margin-left:-134.496000px;}
._5d{margin-left:-133.200000px;}
._8d{margin-left:-131.940000px;}
._61{margin-left:-124.488000px;}
._97{margin-left:-118.800000px;}
._2b{margin-left:-115.488000px;}
._160{margin-left:-112.536000px;}
._74{margin-left:-108.720000px;}
._f{margin-left:-106.515360px;}
._84{margin-left:-102.600000px;}
._83{margin-left:-101.340000px;}
._e0{margin-left:-98.640000px;}
._5c{margin-left:-96.960000px;}
._be{margin-left:-95.760000px;}
._96{margin-left:-90.720000px;}
._151{margin-left:-88.890240px;}
._105{margin-left:-87.696000px;}
._12a{margin-left:-86.291994px;}
._150{margin-left:-84.265920px;}
._103{margin-left:-82.080000px;}
._16a{margin-left:-79.257600px;}
._71{margin-left:-73.944000px;}
._129{margin-left:-72.468000px;}
._69{margin-left:-66.408000px;}
._77{margin-left:-64.440000px;}
._29{margin-left:-61.200000px;}
._9b{margin-left:-59.424000px;}
._e5{margin-left:-58.176000px;}
._39{margin-left:-55.944000px;}
._2d{margin-left:-54.720000px;}
._13a{margin-left:-52.560000px;}
._136{margin-left:-51.408000px;}
._12b{margin-left:-49.896000px;}
._2f{margin-left:-44.777404px;}
._28{margin-left:-41.376000px;}
._1f{margin-left:-40.368000px;}
._da{margin-left:-34.992000px;}
._7e{margin-left:-33.840000px;}
._12{margin-left:-11.664000px;}
._3{margin-left:-10.260000px;}
._c8{margin-left:-9.240000px;}
._7{margin-left:-7.488000px;}
._1{margin-left:-6.480000px;}
._13{margin-left:-5.472000px;}
._c{margin-left:-4.320000px;}
._2{margin-left:-3.240000px;}
._4{margin-left:-1.728000px;}
._0{width:1.056000px;}
._5{width:2.784000px;}
._9{width:4.248000px;}
._a{width:7.337400px;}
._8{width:9.600000px;}
._6{width:11.616000px;}
._6c{width:19.788000px;}
._154{width:110.976000px;}
._53{width:204.876000px;}
._55{width:356.268000px;}
._eb{width:398.364000px;}
._57{width:432.156000px;}
._d8{width:530.292000px;}
._165{width:607.836000px;}
._152{width:721.020000px;}
._b{width:743.040000px;}
._d{width:847.824000px;}
._d4{width:1194.900000px;}
.fc7{color:rgb(255,255,0);}
.fc6{color:rgb(0,0,255);}
.fc5{color:rgb(255,255,204);}
.fc3{color:rgb(238,0,0);}
.fc2{color:transparent;}
.fc1{color:rgb(207,177,93);}
.fc8{color:rgb(21,21,21);}
.fc4{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:52.200000px;}
.fs8{font-size:60.480000px;}
.fsf{font-size:66.240000px;}
.fs7{font-size:72.000000px;}
.fse{font-size:75.893905px;}
.fsb{font-size:83.520000px;}
.fs6{font-size:84.000000px;}
.fs4{font-size:90.000000px;}
.fs0{font-size:96.000000px;}
.fsa{font-size:96.480000px;}
.fs2{font-size:108.000000px;}
.fs9{font-size:119.520000px;}
.fs3{font-size:144.000000px;}
.fs1{font-size:180.000000px;}
.fsd{font-size:216.000000px;}
.fsc{font-size:288.144000px;}
.y2c{bottom:-98.325000px;}
.y2a{bottom:-93.600000px;}
.y1aa{bottom:-33.480000px;}
.y64{bottom:-29.160000px;}
.y11a{bottom:-27.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.042000px;}
.y20{bottom:1.080000px;}
.y118{bottom:2.160000px;}
.y1a9{bottom:3.240000px;}
.y21b{bottom:3.600000px;}
.y228{bottom:3.960000px;}
.y63{bottom:3.996000px;}
.yac{bottom:4.320000px;}
.yf5{bottom:4.674000px;}
.y6d{bottom:4.680000px;}
.y93{bottom:4.710000px;}
.y167{bottom:4.725000px;}
.y9a{bottom:5.040000px;}
.y18{bottom:5.760000px;}
.yec{bottom:7.200000px;}
.y67{bottom:7.560000px;}
.y1e{bottom:8.280000px;}
.y11f{bottom:9.000000px;}
.y1b1{bottom:9.360000px;}
.y5e{bottom:12.240000px;}
.y226{bottom:12.600000px;}
.y1fe{bottom:12.960000px;}
.y24a{bottom:12.990000px;}
.y11d{bottom:13.320000px;}
.y20d{bottom:13.674000px;}
.y1f8{bottom:13.680000px;}
.y202{bottom:13.725000px;}
.yad{bottom:14.400000px;}
.ybf{bottom:14.430000px;}
.y1c1{bottom:15.120000px;}
.y169{bottom:15.480000px;}
.y219{bottom:15.840000px;}
.y1ec{bottom:16.230000px;}
.y1f1{bottom:16.560000px;}
.y23d{bottom:17.640000px;}
.y24e{bottom:18.000000px;}
.y21a{bottom:20.880000px;}
.y247{bottom:21.960000px;}
.y249{bottom:21.990000px;}
.y22f{bottom:22.320000px;}
.y232{bottom:22.680000px;}
.y1da{bottom:23.040000px;}
.y1c8{bottom:24.480000px;}
.y150{bottom:24.525000px;}
.y1d1{bottom:24.834000px;}
.ya1{bottom:24.840000px;}
.yc0{bottom:24.870000px;}
.yef{bottom:24.885000px;}
.ya3{bottom:25.200000px;}
.yc5{bottom:25.230000px;}
.y152{bottom:25.245000px;}
.y146{bottom:25.560000px;}
.y6f{bottom:25.920000px;}
.y101{bottom:25.950000px;}
.y122{bottom:25.965000px;}
.y17{bottom:26.280000px;}
.y9e{bottom:26.310000px;}
.y166{bottom:26.325000px;}
.yb1{bottom:26.634000px;}
.y6c{bottom:26.640000px;}
.y82{bottom:26.670000px;}
.yfd{bottom:26.685000px;}
.y99{bottom:27.000000px;}
.y10a{bottom:27.045000px;}
.y230{bottom:27.354000px;}
.ye9{bottom:27.360000px;}
.yeb{bottom:27.720000px;}
.y206{bottom:28.440000px;}
.y20f{bottom:28.485000px;}
.y20b{bottom:28.794000px;}
.y225{bottom:31.320000px;}
.y158{bottom:31.680000px;}
.y23a{bottom:31.710000px;}
.y250{bottom:32.040000px;}
.y253{bottom:32.070000px;}
.y245{bottom:32.085000px;}
.yed{bottom:32.805000px;}
.y1f7{bottom:33.840000px;}
.y1fb{bottom:34.200000px;}
.y201{bottom:34.245000px;}
.y204{bottom:34.560000px;}
.y1ff{bottom:34.605000px;}
.ya9{bottom:34.920000px;}
.y1ce{bottom:34.950000px;}
.y124{bottom:35.280000px;}
.yc3{bottom:35.310000px;}
.yb7{bottom:35.640000px;}
.y128{bottom:36.000000px;}
.y132{bottom:36.360000px;}
.y13e{bottom:36.405000px;}
.y69{bottom:36.720000px;}
.y1e0{bottom:36.750000px;}
.ycb{bottom:37.074000px;}
.y72{bottom:37.080000px;}
.yf9{bottom:37.110000px;}
.y62{bottom:37.116000px;}
.y15d{bottom:37.125000px;}
.y16e{bottom:37.434000px;}
.y84{bottom:37.440000px;}
.y16b{bottom:37.470000px;}
.y173{bottom:37.485000px;}
.y86{bottom:37.800000px;}
.y7f{bottom:37.830000px;}
.ya5{bottom:37.845000px;}
.y78{bottom:38.880000px;}
.y1ee{bottom:39.240000px;}
.y1a8{bottom:39.600000px;}
.y1f0{bottom:39.960000px;}
.y1eb{bottom:40.350000px;}
.y243{bottom:41.085000px;}
.y238{bottom:41.400000px;}
.y231{bottom:41.754000px;}
.y255{bottom:41.760000px;}
.y23f{bottom:42.480000px;}
.y20c{bottom:42.834000px;}
.y209{bottom:42.840000px;}
.y207{bottom:42.870000px;}
.y210{bottom:42.885000px;}
.y1ae{bottom:44.634000px;}
.y1ac{bottom:44.640000px;}
.y21e{bottom:45.030000px;}
.y154{bottom:45.354000px;}
.y60{bottom:45.390000px;}
.y151{bottom:45.405000px;}
.yab{bottom:45.720000px;}
.y130{bottom:45.750000px;}
.y11e{bottom:45.756000px;}
.y135{bottom:45.765000px;}
.y1d2{bottom:46.074000px;}
.ya2{bottom:46.080000px;}
.y14e{bottom:46.110000px;}
.y110{bottom:46.800000px;}
.y70{bottom:47.160000px;}
.y102{bottom:47.190000px;}
.yb5{bottom:47.205000px;}
.y7d{bottom:47.520000px;}
.y9f{bottom:47.550000px;}
.y140{bottom:47.565000px;}
.y8f{bottom:47.880000px;}
.y15f{bottom:47.910000px;}
.y194{bottom:48.234000px;}
.y6b{bottom:48.240000px;}
.yea{bottom:48.270000px;}
.yd2{bottom:48.285000px;}
.ycd{bottom:48.594000px;}
.y74{bottom:48.600000px;}
.y81{bottom:48.630000px;}
.yf4{bottom:48.639000px;}
.ya7{bottom:48.645000px;}
.yb2{bottom:48.954000px;}
.y98{bottom:48.960000px;}
.y107{bottom:49.005000px;}
.y11c{bottom:49.680000px;}
.y5d{bottom:50.400000px;}
.y157{bottom:50.760000px;}
.y23b{bottom:50.790000px;}
.y244{bottom:50.805000px;}
.y1d9{bottom:51.120000px;}
.y241{bottom:54.030000px;}
.yee{bottom:54.045000px;}
.y1fa{bottom:54.360000px;}
.y1fd{bottom:54.390000px;}
.y1f6{bottom:54.720000px;}
.y200{bottom:54.765000px;}
.y1f3{bottom:55.080000px;}
.y224{bottom:57.600000px;}
.y1b3{bottom:57.630000px;}
.y104{bottom:59.790000px;}
.y77{bottom:60.840000px;}
.y21c{bottom:61.950000px;}
.y212{bottom:63.720000px;}
.y1ef{bottom:64.080000px;}
.y21d{bottom:64.110000px;}
.y1af{bottom:65.484000px;}
.y125{bottom:66.240000px;}
.yc4{bottom:66.270000px;}
.ye5{bottom:66.285000px;}
.yaa{bottom:66.600000px;}
.y14d{bottom:66.630000px;}
.y61{bottom:67.320000px;}
.y12b{bottom:67.365000px;}
.y129{bottom:67.680000px;}
.yb8{bottom:68.040000px;}
.y10e{bottom:68.070000px;}
.y133{bottom:68.760000px;}
.y13f{bottom:68.805000px;}
.ye3{bottom:69.120000px;}
.y1b6{bottom:69.150000px;}
.y193{bottom:69.159000px;}
.y6a{bottom:69.165000px;}
.y73{bottom:69.480000px;}
.yfa{bottom:69.510000px;}
.ycc{bottom:69.519000px;}
.ybc{bottom:69.525000px;}
.ydb{bottom:69.840000px;}
.y91{bottom:69.885000px;}
.y18f{bottom:70.200000px;}
.y160{bottom:70.230000px;}
.y7a{bottom:70.560000px;}
.y80{bottom:70.590000px;}
.y16f{bottom:70.599000px;}
.ya6{bottom:70.605000px;}
.y97{bottom:70.920000px;}
.y1ba{bottom:70.950000px;}
.y13c{bottom:70.959000px;}
.y109{bottom:70.965000px;}
.y240{bottom:72.750000px;}
.y1f5{bottom:75.240000px;}
.y1d8{bottom:78.480000px;}
.y156{bottom:78.885000px;}
.y15{bottom:83.587500px;}
.y14c{bottom:87.150000px;}
.y10d{bottom:88.230000px;}
.y1b5{bottom:89.670000px;}
.y18e{bottom:91.080000px;}
.y12e{bottom:91.110000px;}
.y90{bottom:91.125000px;}
.yda{bottom:91.440000px;}
.y15b{bottom:91.470000px;}
.y1dd{bottom:91.485000px;}
.y95{bottom:92.520000px;}
.y88{bottom:92.550000px;}
.yfc{bottom:92.565000px;}
.y13b{bottom:92.919000px;}
.y108{bottom:92.925000px;}
.yd0{bottom:93.270000px;}
.y1f4{bottom:96.120000px;}
.y153{bottom:108.036000px;}
.y14{bottom:108.187500px;}
.y1d3{bottom:108.396000px;}
.yce{bottom:109.836000px;}
.y1b4{bottom:110.550000px;}
.y1c0{bottom:110.556000px;}
.y24d{bottom:114.156000px;}
.y105{bottom:114.510000px;}
.y5a{bottom:114.516000px;}
.y65{bottom:116.028000px;}
.y1ad{bottom:116.316000px;}
.y182{bottom:122.076000px;}
.y13a{bottom:123.156000px;}
.y192{bottom:124.956000px;}
.y16d{bottom:126.396000px;}
.yb0{bottom:128.556000px;}
.y8e{bottom:131.796000px;}
.y1d0{bottom:132.516000px;}
.yca{bottom:133.956000px;}
.y59{bottom:136.836000px;}
.yde{bottom:141.516000px;}
.y20a{bottom:142.236000px;}
.y13{bottom:142.537500px;}
.y181{bottom:142.956000px;}
.yf3{bottom:147.636000px;}
.y8d{bottom:153.390000px;}
.y1bf{bottom:155.550000px;}
.y58{bottom:158.790000px;}
.y180{bottom:163.470000px;}
.ydd{bottom:165.630000px;}
.y14f{bottom:172.470000px;}
.y111{bottom:172.830000px;}
.y8c{bottom:174.270000px;}
.y24c{bottom:174.630000px;}
.y57{bottom:180.750000px;}
.y17f{bottom:184.350000px;}
.y10f{bottom:193.755000px;}
.y8b{bottom:194.835000px;}
.y22e{bottom:196.635000px;}
.yaf{bottom:196.995000px;}
.y56{bottom:202.755000px;}
.y11b{bottom:203.835000px;}
.y17e{bottom:204.915000px;}
.y24b{bottom:206.715000px;}
.y28{bottom:209.550000px;}
.y191{bottom:213.915000px;}
.y208{bottom:214.995000px;}
.y8a{bottom:215.715000px;}
.y16c{bottom:216.435000px;}
.yf2{bottom:217.875000px;}
.yc9{bottom:222.915000px;}
.y55{bottom:224.715000px;}
.y17d{bottom:225.795000px;}
.y139{bottom:235.515000px;}
.y89{bottom:236.595000px;}
.y1be{bottom:240.555000px;}
.y17c{bottom:243.075000px;}
.y26{bottom:244.770000px;}
.y12{bottom:245.962500px;}
.y54{bottom:246.675000px;}
.y87{bottom:254.955000px;}
.ydc{bottom:256.035000px;}
.y22d{bottom:256.755000px;}
.y10c{bottom:261.435000px;}
.y11{bottom:266.662500px;}
.y1cf{bottom:267.195000px;}
.yae{bottom:267.555000px;}
.y53{bottom:268.635000px;}
.y25{bottom:278.610000px;}
.y5f{bottom:285.915000px;}
.y205{bottom:287.715000px;}
.y52{bottom:290.595000px;}
.y10{bottom:297.412500px;}
.y14b{bottom:301.035000px;}
.y190{bottom:306.075000px;}
.y16a{bottom:306.795000px;}
.y1bd{bottom:307.515000px;}
.y17b{bottom:308.595000px;}
.y24{bottom:308.850000px;}
.y248{bottom:311.115000px;}
.y51{bottom:312.555000px;}
.yd9{bottom:324.105000px;}
.y18d{bottom:324.825000px;}
.yf{bottom:327.337500px;}
.y138{bottom:328.065000px;}
.y1ab{bottom:328.425000px;}
.ya8{bottom:329.505000px;}
.yf1{bottom:332.385000px;}
.y50{bottom:334.545000px;}
.yc8{bottom:335.265000px;}
.y23{bottom:337.290000px;}
.y22c{bottom:340.305000px;}
.y1e5{bottom:343.905000px;}
.y137{bottom:350.025000px;}
.y17a{bottom:352.545000px;}
.y4f{bottom:356.505000px;}
.y203{bottom:360.105000px;}
.ye{bottom:361.612500px;}
.y1e4{bottom:365.865000px;}
.y22{bottom:366.840000px;}
.y85{bottom:366.945000px;}
.y136{bottom:368.385000px;}
.y10b{bottom:370.905000px;}
.y246{bottom:371.265000px;}
.y1bc{bottom:371.985000px;}
.y119{bottom:377.025000px;}
.y4e{bottom:378.465000px;}
.y1e3{bottom:387.825000px;}
.yd{bottom:389.062500px;}
.y168{bottom:396.825000px;}
.y22b{bottom:397.185000px;}
.y4d{bottom:400.425000px;}
.y116{bottom:402.945000px;}
.y1e2{bottom:406.185000px;}
.y14a{bottom:406.905000px;}
.y134{bottom:411.945000px;}
.y19e{bottom:413.385000px;}
.ya4{bottom:414.465000px;}
.y179{bottom:418.065000px;}
.y4c{bottom:422.385000px;}
.y22a{bottom:424.545000px;}
.yf0{bottom:426.705000px;}
.y242{bottom:431.385000px;}
.y18c{bottom:434.265000px;}
.y19d{bottom:435.345000px;}
.yd8{bottom:438.585000px;}
.y115{bottom:440.385000px;}
.y106{bottom:441.105000px;}
.y165{bottom:442.905000px;}
.y4b{bottom:444.345000px;}
.y229{bottom:446.550000px;}
.yc{bottom:446.887500px;}
.yc7{bottom:447.270000px;}
.y1cd{bottom:455.910000px;}
.yd7{bottom:456.990000px;}
.y83{bottom:457.350000px;}
.y227{bottom:463.830000px;}
.y4a{bottom:466.350000px;}
.y1e1{bottom:473.190000px;}
.y19c{bottom:475.710000px;}
.y131{bottom:476.430000px;}
.y149{bottom:477.510000px;}
.yb{bottom:483.562500px;}
.y1bb{bottom:486.150000px;}
.y49{bottom:488.310000px;}
.y148{bottom:495.870000px;}
.y18b{bottom:498.750000px;}
.y19b{bottom:499.830000px;}
.y223{bottom:501.990000px;}
.ya0{bottom:504.510000px;}
.y178{bottom:508.110000px;}
.y48{bottom:510.270000px;}
.y5c{bottom:511.350000px;}
.ya{bottom:511.612500px;}
.y164{bottom:513.510000px;}
.y1a7{bottom:518.910000px;}
.ye8{bottom:525.030000px;}
.y1fc{bottom:528.990000px;}
.y23e{bottom:529.710000px;}
.y163{bottom:531.870000px;}
.y47{bottom:532.230000px;}
.y9{bottom:539.662500px;}
.yc6{bottom:539.790000px;}
.y1cc{bottom:540.870000px;}
.y7e{bottom:547.350000px;}
.y46{bottom:554.190000px;}
.y103{bottom:555.630000px;}
.yc2{bottom:558.150000px;}
.y1d{bottom:559.230000px;}
.y1df{bottom:562.110000px;}
.y12f{bottom:563.910000px;}
.y9d{bottom:568.950000px;}
.y8{bottom:570.787500px;}
.y45{bottom:576.180000px;}
.y117{bottom:576.540000px;}
.y147{bottom:581.940000px;}
.y222{bottom:583.380000px;}
.y18a{bottom:583.740000px;}
.ye7{bottom:594.900000px;}
.y44{bottom:598.140000px;}
.y162{bottom:599.940000px;}
.y177{bottom:600.660000px;}
.y221{bottom:611.460000px;}
.y19a{bottom:612.180000px;}
.y1f9{bottom:613.260000px;}
.y257{bottom:620.820000px;}
.y43{bottom:621.180000px;}
.y1f{bottom:622.260000px;}
.y176{bottom:622.620000px;}
.y7{bottom:622.987500px;}
.y1cb{bottom:626.220000px;}
.y189{bottom:627.300000px;}
.y12d{bottom:628.380000px;}
.y23c{bottom:631.260000px;}
.y7c{bottom:637.380000px;}
.y9c{bottom:639.540000px;}
.y220{bottom:640.260000px;}
.y175{bottom:640.980000px;}
.yc1{bottom:643.140000px;}
.y42{bottom:645.660000px;}
.y145{bottom:648.900000px;}
.y1de{bottom:650.700000px;}
.y9b{bottom:657.900000px;}
.yd6{bottom:659.340000px;}
.y6{bottom:660.862500px;}
.y1b0{bottom:665.820000px;}
.y161{bottom:666.900000px;}
.y21f{bottom:667.620000px;}
.y41{bottom:667.980000px;}
.y199{bottom:680.220000px;}
.y239{bottom:682.380000px;}
.ye6{bottom:684.900000px;}
.ybe{bottom:686.700000px;}
.y40{bottom:689.940000px;}
.y15e{bottom:691.380000px;}
.y100{bottom:692.100000px;}
.y188{bottom:697.860000px;}
.y256{bottom:701.130000px;}
.y5{bottom:705.862500px;}
.y7b{bottom:707.970000px;}
.y120{bottom:710.130000px;}
.y3f{bottom:711.930000px;}
.y66{bottom:713.370000px;}
.y144{bottom:714.810000px;}
.y187{bottom:716.250000px;}
.y1f2{bottom:718.050000px;}
.y1ca{bottom:718.410000px;}
.y174{bottom:725.970000px;}
.y76{bottom:726.330000px;}
.ybd{bottom:730.650000px;}
.y3e{bottom:733.890000px;}
.y1c9{bottom:736.770000px;}
.y1dc{bottom:739.650000px;}
.y12c{bottom:742.890000px;}
.y96{bottom:747.930000px;}
.yd5{bottom:749.370000px;}
.y1b9{bottom:753.330000px;}
.y3d{bottom:755.850000px;}
.y12a{bottom:761.250000px;}
.y218{bottom:764.130000px;}
.yff{bottom:764.490000px;}
.y4{bottom:764.812500px;}
.ybb{bottom:774.210000px;}
.ye4{bottom:775.290000px;}
.y3c{bottom:777.810000px;}
.y1c7{bottom:780.690000px;}
.y186{bottom:783.210000px;}
.yfe{bottom:785.370000px;}
.y198{bottom:792.210000px;}
.y3b{bottom:799.770000px;}
.y3{bottom:799.987500px;}
.y15c{bottom:801.930000px;}
.yfb{bottom:806.250000px;}
.y172{bottom:816.330000px;}
.y79{bottom:816.690000px;}
.y1b8{bottom:821.370000px;}
.y3a{bottom:821.730000px;}
.y185{bottom:826.815000px;}
.y217{bottom:828.975000px;}
.y2{bottom:835.162500px;}
.y94{bottom:838.335000px;}
.yd4{bottom:839.415000px;}
.y39{bottom:843.735000px;}
.y1ed{bottom:844.095000px;}
.y75{bottom:844.455000px;}
.y1c6{bottom:844.815000px;}
.y127{bottom:847.335000px;}
.y254{bottom:848.775000px;}
.y1db{bottom:854.175000px;}
.y237{bottom:859.575000px;}
.ye2{bottom:860.295000px;}
.y216{bottom:860.655000px;}
.y71{bottom:862.815000px;}
.y27{bottom:865.335000px;}
.y21{bottom:865.440000px;}
.y38{bottom:865.695000px;}
.yba{bottom:866.775000px;}
.y143{bottom:870.375000px;}
.y1d7{bottom:872.535000px;}
.y2b{bottom:877.215000px;}
.y197{bottom:882.615000px;}
.yb9{bottom:885.135000px;}
.y37{bottom:887.655000px;}
.y142{bottom:888.735000px;}
.y15a{bottom:890.895000px;}
.y215{bottom:894.135000px;}
.y171{bottom:906.375000px;}
.y1c5{bottom:909.255000px;}
.y36{bottom:909.615000px;}
.yd3{bottom:909.975000px;}
.y184{bottom:911.775000px;}
.y1a6{bottom:913.215000px;}
.y1b7{bottom:913.935000px;}
.y252{bottom:919.335000px;}
.yf8{bottom:920.415000px;}
.y214{bottom:923.295000px;}
.ycf{bottom:928.335000px;}
.y35{bottom:931.575000px;}
.y1b2{bottom:932.295000px;}
.y126{bottom:933.735000px;}
.y1a5{bottom:935.175000px;}
.y1ea{bottom:938.055000px;}
.y29{bottom:944.535000px;}
.y213{bottom:945.255000px;}
.y236{bottom:947.775000px;}
.y196{bottom:949.575000px;}
.y92{bottom:950.295000px;}
.y6e{bottom:951.765000px;}
.ye1{bottom:952.845000px;}
.yb6{bottom:953.205000px;}
.y34{bottom:953.565000px;}
.y141{bottom:954.285000px;}
.y1a4{bottom:957.165000px;}
.y211{bottom:964.365000px;}
.ye0{bottom:971.205000px;}
.y1c4{bottom:973.725000px;}
.y33{bottom:975.525000px;}
.y183{bottom:976.245000px;}
.y123{bottom:977.325000px;}
.y1d6{bottom:977.685000px;}
.y1a3{bottom:979.125000px;}
.y235{bottom:980.205000px;}
.y170{bottom:996.765000px;}
.y32{bottom:997.485000px;}
.y251{bottom:999.285000px;}
.y1a2{bottom:1001.085000px;}
.y159{bottom:1005.405000px;}
.y114{bottom:1007.565000px;}
.yf7{bottom:1011.525000px;}
.y234{bottom:1013.685000px;}
.y195{bottom:1016.205000px;}
.y68{bottom:1018.725000px;}
.y31{bottom:1019.445000px;}
.y155{bottom:1022.685000px;}
.y1a1{bottom:1023.045000px;}
.y113{bottom:1029.525000px;}
.ydf{bottom:1039.245000px;}
.yb4{bottom:1039.605000px;}
.yd1{bottom:1040.685000px;}
.y30{bottom:1041.405000px;}
.y13d{bottom:1041.765000px;}
.y1d5{bottom:1042.125000px;}
.y1e9{bottom:1042.485000px;}
.y1a0{bottom:1045.005000px;}
.y112{bottom:1051.485000px;}
.y20e{bottom:1057.965000px;}
.y233{bottom:1059.405000px;}
.y121{bottom:1062.645000px;}
.y2f{bottom:1063.365000px;}
.y1c3{bottom:1066.245000px;}
.y19f{bottom:1066.965000px;}
.y1e6{bottom:1073.445000px;}
.y1e8{bottom:1074.165000px;}
.y24f{bottom:1079.250000px;}
.yf6{bottom:1082.130000px;}
.y1c2{bottom:1084.650000px;}
.y2e{bottom:1085.370000px;}
.y5b{bottom:1088.970000px;}
.yb3{bottom:1105.170000px;}
.y258{bottom:1105.530000px;}
.y1e7{bottom:1106.250000px;}
.y1d4{bottom:1106.610000px;}
.y2d{bottom:1108.410000px;}
.y1c{bottom:1110.930000px;}
.y1b{bottom:1148.370000px;}
.y1a{bottom:1170.330000px;}
.y19{bottom:1192.650000px;}
.y16{bottom:1204.200000px;}
.h70{height:20.520000px;}
.h3f{height:21.960000px;}
.h2f{height:21.996000px;}
.h17{height:29.880000px;}
.h15{height:37.116000px;}
.h88{height:38.160000px;}
.h44{height:41.400000px;}
.h3d{height:41.436000px;}
.h12{height:41.760000px;}
.h27{height:42.120000px;}
.h6f{height:42.480000px;}
.h6e{height:42.840000px;}
.h57{height:43.560000px;}
.h4f{height:43.920000px;}
.h6c{height:43.956000px;}
.h13{height:44.149219px;}
.h8e{height:46.800000px;}
.h92{height:47.160000px;}
.hd{height:47.988281px;}
.h5f{height:50.273438px;}
.h4c{height:54.597656px;}
.h81{height:55.080000px;}
.h89{height:55.800000px;}
.h90{height:56.160000px;}
.h91{height:56.196000px;}
.he{height:57.052734px;}
.hc{height:57.462891px;}
.h62{height:58.283437px;}
.hf{height:58.898438px;}
.h8c{height:59.221406px;}
.h82{height:59.383125px;}
.hb{height:61.567383px;}
.h60{height:61.920000px;}
.h5b{height:61.956000px;}
.h72{height:62.164687px;}
.h3a{height:62.280000px;}
.h59{height:62.316000px;}
.h24{height:62.676000px;}
.h2a{height:62.859375px;}
.h14{height:62.964844px;}
.h2b{height:63.351562px;}
.h54{height:63.360000px;}
.h40{height:63.396000px;}
.h2c{height:64.440000px;}
.h50{height:64.476000px;}
.h78{height:64.546875px;}
.h48{height:64.800000px;}
.h31{height:64.836000px;}
.h9{height:65.062500px;}
.h6{height:65.671875px;}
.h42{height:65.880000px;}
.h37{height:65.916000px;}
.h8d{height:66.078281px;}
.h3{height:66.140625px;}
.h3e{height:66.276000px;}
.h5d{height:66.777743px;}
.h32{height:67.570312px;}
.h55{height:67.680000px;}
.h4d{height:67.716000px;}
.h83{height:68.084282px;}
.h7f{height:68.400000px;}
.h67{height:68.436000px;}
.h85{height:68.859844px;}
.h76{height:68.956875px;}
.h3c{height:71.224651px;}
.h23{height:71.316000px;}
.h8{height:72.000000px;}
.h7e{height:72.562500px;}
.ha{height:72.909082px;}
.h1a{height:72.916875px;}
.h6a{height:73.080000px;}
.h69{height:73.440000px;}
.h35{height:74.004654px;}
.h1f{height:74.556000px;}
.h45{height:74.847656px;}
.h8a{height:74.880000px;}
.h87{height:74.916000px;}
.h49{height:74.953125px;}
.h93{height:75.276000px;}
.h21{height:76.356000px;}
.h4e{height:78.156000px;}
.h20{height:78.381563px;}
.h56{height:78.480000px;}
.h5{height:78.521484px;}
.h84{height:79.236000px;}
.h1d{height:79.596000px;}
.h7b{height:79.956000px;}
.h7d{height:80.280000px;}
.h7c{height:80.316000px;}
.h3b{height:82.800000px;}
.h46{height:82.836000px;}
.h65{height:83.880000px;}
.h58{height:83.916000px;}
.h1c{height:84.231562px;}
.h41{height:84.240000px;}
.h19{height:84.891094px;}
.h5a{height:85.320000px;}
.h5c{height:85.356000px;}
.h4b{height:86.400000px;}
.h29{height:86.436000px;}
.h2d{height:86.760000px;}
.h43{height:86.796000px;}
.h30{height:87.840000px;}
.h33{height:87.876000px;}
.h64{height:88.200000px;}
.h39{height:88.236000px;}
.h80{height:89.280000px;}
.h77{height:89.640000px;}
.h86{height:90.544219px;}
.h75{height:92.196000px;}
.h8b{height:93.996000px;}
.h22{height:94.289062px;}
.h74{height:97.233750px;}
.h8f{height:97.236000px;}
.h73{height:100.437187px;}
.h7a{height:100.836000px;}
.h71{height:102.996000px;}
.h5e{height:103.716000px;}
.h16{height:104.346562px;}
.h61{height:104.436000px;}
.h68{height:104.521641px;}
.h53{height:104.796000px;}
.h66{height:107.280000px;}
.h7{height:108.000000px;}
.h36{height:108.396000px;}
.h4a{height:108.720000px;}
.h63{height:108.756000px;}
.h38{height:109.800000px;}
.h34{height:109.836000px;}
.h52{height:110.196000px;}
.h2e{height:112.356000px;}
.h79{height:121.716000px;}
.h28{height:125.718750px;}
.h6d{height:127.836000px;}
.h4{height:130.869141px;}
.h51{height:131.796000px;}
.h26{height:188.578125px;}
.h47{height:198.795000px;}
.h1e{height:251.985305px;}
.h18{height:390.600000px;}
.h1b{height:390.705000px;}
.h6b{height:662.760000px;}
.h25{height:759.600000px;}
.h2{height:892.912500px;}
.h0{height:892.955906px;}
.h1{height:893.250000px;}
.h10{height:1262.880000px;}
.h11{height:1263.000000px;}
.w36{width:49.716000px;}
.w38{width:52.956000px;}
.w3c{width:55.476000px;}
.w2e{width:63.360000px;}
.w3a{width:64.836000px;}
.w24{width:66.960000px;}
.we{width:87.480000px;}
.w18{width:101.196000px;}
.w1b{width:104.076000px;}
.w14{width:104.436000px;}
.w34{width:105.516000px;}
.w32{width:106.236000px;}
.w29{width:106.596000px;}
.w1d{width:109.476000px;}
.w16{width:112.716000px;}
.w27{width:114.876000px;}
.w10{width:115.596000px;}
.w12{width:116.676000px;}
.w30{width:120.636000px;}
.w5{width:196.995000px;}
.w8{width:211.755000px;}
.wd{width:271.185000px;}
.wc{width:271.545000px;}
.w22{width:275.145000px;}
.w21{width:276.945000px;}
.w20{width:278.385000px;}
.w23{width:284.865000px;}
.w2c{width:290.985000px;}
.w2d{width:294.585000px;}
.w7{width:317.985000px;}
.w2b{width:319.425000px;}
.w25{width:491.580000px;}
.w31{width:560.010000px;}
.w13{width:563.970000px;}
.w1e{width:564.690000px;}
.w11{width:565.050000px;}
.w28{width:565.770000px;}
.w17{width:567.930000px;}
.w26{width:571.170000px;}
.w2a{width:574.050000px;}
.w33{width:574.410000px;}
.w35{width:575.130000px;}
.w15{width:576.210000px;}
.w1c{width:576.570000px;}
.w19{width:579.450000px;}
.w2f{width:587.730000px;}
.w3e{width:614.730000px;}
.w3b{width:615.450000px;}
.wf{width:623.730000px;}
.w3d{width:625.170000px;}
.w39{width:626.970000px;}
.w37{width:632.730000px;}
.w1a{width:680.655000px;}
.wb{width:807.804000px;}
.wa{width:869.370000px;}
.w4{width:892.500000px;}
.w1f{width:892.799968px;}
.w9{width:892.799973px;}
.w6{width:892.799987px;}
.w3{width:892.800000px;}
.w2{width:1262.791500px;}
.w0{width:1262.834646px;}
.w1{width:1263.000000px;}
.x5a{left:-12.600032px;}
.x98{left:-1.080000px;}
.x0{left:0.000000px;}
.x2a{left:1.080000px;}
.xae{left:7.920000px;}
.x18{left:10.800000px;}
.x3f{left:11.880000px;}
.x33{left:13.710000px;}
.x20{left:15.480000px;}
.xd{left:17.025000px;}
.xb5{left:18.360000px;}
.x14{left:21.240000px;}
.xaa{left:23.040000px;}
.x15{left:25.560000px;}
.x54{left:27.390000px;}
.x87{left:29.910000px;}
.x60{left:32.430000px;}
.x90{left:34.485000px;}
.x79{left:37.830000px;}
.x97{left:38.910000px;}
.xb3{left:42.840000px;}
.x47{left:48.990000px;}
.x28{left:51.735000px;}
.x46{left:55.470000px;}
.x99{left:64.110000px;}
.x38{left:68.790000px;}
.x45{left:73.470000px;}
.x7a{left:81.750000px;}
.x21{left:84.996000px;}
.x16{left:106.235987px;}
.x4d{left:108.396000px;}
.x9b{left:109.830000px;}
.x7e{left:113.115000px;}
.x31{left:115.635000px;}
.x76{left:120.675000px;}
.xc{left:122.550000px;}
.x7c{left:127.155000px;}
.x91{left:132.915000px;}
.x78{left:136.875000px;}
.xe{left:138.825000px;}
.x8a{left:140.115000px;}
.xa5{left:141.510000px;}
.xb7{left:144.030000px;}
.x1c{left:149.111987px;}
.xb{left:154.500000px;}
.x56{left:156.315000px;}
.xad{left:159.555000px;}
.x7b{left:161.355000px;}
.xb1{left:164.955000px;}
.x2f{left:166.035000px;}
.x85{left:168.555000px;}
.xb0{left:171.435000px;}
.x41{left:172.875000px;}
.x4f{left:175.035000px;}
.x23{left:186.914987px;}
.x22{left:189.074987px;}
.x75{left:195.915000px;}
.x86{left:199.515000px;}
.x1e{left:202.034987px;}
.x3c{left:203.505000px;}
.x44{left:207.435000px;}
.x2d{left:210.675000px;}
.x9f{left:211.755000px;}
.x8b{left:212.835000px;}
.x61{left:215.715000px;}
.x40{left:217.545000px;}
.x39{left:218.955000px;}
.x4e{left:220.035000px;}
.x2b{left:221.835000px;}
.x2c{left:222.915000px;}
.x92{left:226.875000px;}
.x84{left:227.985000px;}
.xa2{left:229.754987px;}
.xa0{left:237.344987px;}
.x9c{left:240.945000px;}
.xa9{left:243.075000px;}
.xab{left:244.184987px;}
.x1b{left:251.024987px;}
.xb4{left:258.945000px;}
.x6e{left:264.345000px;}
.x29{left:269.025000px;}
.x55{left:271.545000px;}
.x27{left:273.600000px;}
.x8{left:281.325000px;}
.x58{left:284.865000px;}
.xb8{left:287.744987px;}
.x4c{left:290.985000px;}
.x81{left:293.145000px;}
.x82{left:297.105000px;}
.x3d{left:298.935000px;}
.x94{left:302.175000px;}
.x3b{left:303.255000px;}
.x95{left:304.335000px;}
.x48{left:305.415000px;}
.x74{left:308.295000px;}
.x1d{left:310.064987px;}
.xb6{left:315.825000px;}
.x73{left:317.655000px;}
.x7f{left:319.095000px;}
.x1a{left:320.504987px;}
.x72{left:321.975000px;}
.x5e{left:329.760000px;}
.xa1{left:332.429987px;}
.xac{left:336.029987px;}
.xaf{left:338.549987px;}
.xa6{left:346.785000px;}
.x2{left:351.450000px;}
.x9{left:358.800000px;}
.xb9{left:364.095000px;}
.x36{left:365.535000px;}
.x69{left:374.895000px;}
.x9d{left:381.735000px;}
.x66{left:384.255000px;}
.x35{left:385.695000px;}
.x3{left:389.025000px;}
.x5f{left:400.830000px;}
.x9e{left:403.020000px;}
.x89{left:415.620000px;}
.x4a{left:420.660000px;}
.x67{left:422.100000px;}
.x6{left:431.700000px;}
.x6c{left:436.140000px;}
.x1f{left:440.819973px;}
.x1{left:445.200000px;}
.x3e{left:446.940000px;}
.x64{left:449.460000px;}
.xa{left:451.575000px;}
.x83{left:457.020000px;}
.x77{left:463.140000px;}
.x65{left:464.940000px;}
.x93{left:466.380000px;}
.x6f{left:470.340000px;}
.x4{left:475.875000px;}
.x34{left:477.540000px;}
.x7{left:481.350000px;}
.x53{left:482.580000px;}
.x6b{left:484.380000px;}
.x71{left:485.460000px;}
.x19{left:487.260000px;}
.x80{left:488.700000px;}
.xf{left:489.900000px;}
.x6a{left:491.250000px;}
.x42{left:495.930000px;}
.x63{left:498.810000px;}
.x5{left:500.775000px;}
.x37{left:503.490000px;}
.x4b{left:505.290000px;}
.x68{left:507.810000px;}
.x51{left:508.890000px;}
.x52{left:515.010000px;}
.x9a{left:516.090000px;}
.x59{left:517.169968px;}
.x96{left:524.730000px;}
.x30{left:529.050000px;}
.x49{left:533.370000px;}
.x6d{left:534.450000px;}
.x43{left:536.250000px;}
.x7d{left:539.490000px;}
.xa4{left:545.220000px;}
.xb2{left:551.370000px;}
.x88{left:552.450000px;}
.x57{left:554.610000px;}
.x2e{left:557.130000px;}
.x32{left:558.210000px;}
.x50{left:560.010000px;}
.x70{left:561.090000px;}
.x3a{left:562.170000px;}
.x8c{left:563.970000px;}
.x62{left:565.770000px;}
.x17{left:569.010000px;}
.x8d{left:573.330000px;}
.x8f{left:574.770000px;}
.x8e{left:579.090000px;}
.x5c{left:582.330000px;}
.x25{left:583.410000px;}
.x24{left:584.850000px;}
.x26{left:587.370000px;}
.x5b{left:588.450000px;}
.x5d{left:590.610000px;}
.xa7{left:592.410000px;}
.xa8{left:598.890000px;}
.xa3{left:616.890000px;}
.x13{left:677.415000px;}
.x10{left:768.450000px;}
.x12{left:770.025000px;}
.x11{left:796.875000px;}
@media print{
.v6{vertical-align:-78.186667pt;}
.v5{vertical-align:-74.240000pt;}
.v4{vertical-align:-72.960000pt;}
.v3{vertical-align:-71.680000pt;}
.v7{vertical-align:-67.840000pt;}
.v2{vertical-align:-28.266667pt;}
.v8{vertical-align:-1.280000pt;}
.v0{vertical-align:0.000000pt;}
.v9{vertical-align:1.280000pt;}
.v1{vertical-align:33.066667pt;}
.ls31{letter-spacing:-3.296000pt;}
.ls17{letter-spacing:-0.640000pt;}
.lsc{letter-spacing:-0.448000pt;}
.lsd{letter-spacing:-0.384000pt;}
.ls27{letter-spacing:-0.320000pt;}
.ls16{letter-spacing:-0.192000pt;}
.ls34{letter-spacing:-0.181867pt;}
.ls5{letter-spacing:-0.138133pt;}
.ls1{letter-spacing:-0.103467pt;}
.ls25{letter-spacing:-0.000003pt;}
.ls0{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.064000pt;}
.ls2{letter-spacing:0.128000pt;}
.ls28{letter-spacing:0.192000pt;}
.ls2c{letter-spacing:0.234667pt;}
.lsb{letter-spacing:0.256000pt;}
.ls2e{letter-spacing:0.271360pt;}
.ls14{letter-spacing:0.320000pt;}
.ls32{letter-spacing:0.378027pt;}
.ls6{letter-spacing:0.384000pt;}
.ls2d{letter-spacing:0.414720pt;}
.lsa{letter-spacing:0.448000pt;}
.ls29{letter-spacing:0.478933pt;}
.ls8{letter-spacing:0.512000pt;}
.ls2a{letter-spacing:0.544000pt;}
.ls13{letter-spacing:0.576000pt;}
.ls7{letter-spacing:0.640000pt;}
.ls10{letter-spacing:0.832000pt;}
.ls3{letter-spacing:0.896000pt;}
.ls4{letter-spacing:1.056000pt;}
.ls12{letter-spacing:1.088000pt;}
.ls30{letter-spacing:1.280000pt;}
.ls2b{letter-spacing:1.408000pt;}
.ls2f{letter-spacing:1.551360pt;}
.ls33{letter-spacing:1.711360pt;}
.ls23{letter-spacing:156.800000pt;}
.ls20{letter-spacing:216.960000pt;}
.ls21{letter-spacing:406.506667pt;}
.ls1b{letter-spacing:428.266667pt;}
.ls1f{letter-spacing:464.106667pt;}
.lsf{letter-spacing:464.362667pt;}
.ls1d{letter-spacing:548.586667pt;}
.ls22{letter-spacing:565.386667pt;}
.lse{letter-spacing:578.282667pt;}
.ls11{letter-spacing:707.669333pt;}
.ls35{letter-spacing:753.781333pt;}
.ls1c{letter-spacing:797.066667pt;}
.ls18{letter-spacing:1031.413333pt;}
.ls26{letter-spacing:1074.933333pt;}
.ls15{letter-spacing:1147.893333pt;}
.ls19{letter-spacing:1221.013333pt;}
.ls1e{letter-spacing:1519.200000pt;}
.ls1a{letter-spacing:1539.680000pt;}
.ls24{letter-spacing:1707.520000pt;}
.ws10{word-spacing:-64.000000pt;}
.ws13{word-spacing:-63.552000pt;}
.ws0{word-spacing:-46.720000pt;}
.ws1e{word-spacing:-26.880000pt;}
.ws15{word-spacing:-24.010240pt;}
.ws9{word-spacing:-21.696000pt;}
.ws5{word-spacing:-19.381760pt;}
.ws1c{word-spacing:-17.984000pt;}
.ws12{word-spacing:-17.792000pt;}
.ws1b{word-spacing:-16.912640pt;}
.ws17{word-spacing:-16.640000pt;}
.ws11{word-spacing:-16.576000pt;}
.ws18{word-spacing:-16.384000pt;}
.ws21{word-spacing:-16.368640pt;}
.ws14{word-spacing:-16.320000pt;}
.wsc{word-spacing:-16.000000pt;}
.ws19{word-spacing:-15.999997pt;}
.ws16{word-spacing:-15.808000pt;}
.wsf{word-spacing:-15.296000pt;}
.ws7{word-spacing:-15.104000pt;}
.ws8{word-spacing:-14.976000pt;}
.ws1f{word-spacing:-14.945280pt;}
.wsb{word-spacing:-14.912000pt;}
.ws6{word-spacing:-14.848000pt;}
.wsd{word-spacing:-14.720000pt;}
.wsa{word-spacing:-14.528000pt;}
.ws4{word-spacing:-14.464000pt;}
.ws1a{word-spacing:-14.400000pt;}
.wse{word-spacing:-14.016000pt;}
.ws3{word-spacing:-13.440000pt;}
.ws1d{word-spacing:-13.072640pt;}
.ws1{word-spacing:-10.486400pt;}
.ws2{word-spacing:0.000000pt;}
.ws20{word-spacing:1732.284587pt;}
._167{margin-left:-2164.885333pt;}
._11{margin-left:-2123.212800pt;}
._164{margin-left:-2116.405333pt;}
._b5{margin-left:-2021.226667pt;}
._86{margin-left:-2002.026667pt;}
._ed{margin-left:-1996.906667pt;}
._7a{margin-left:-1995.626667pt;}
._176{margin-left:-1994.018987pt;}
._16b{margin-left:-1971.675307pt;}
._dc{margin-left:-1962.880000pt;}
._72{margin-left:-1928.064000pt;}
._10e{margin-left:-1912.053333pt;}
._13b{margin-left:-1908.544000pt;}
._a6{margin-left:-1879.552000pt;}
._5e{margin-left:-1878.336000pt;}
._4f{margin-left:-1874.432000pt;}
._134{margin-left:-1871.957333pt;}
._90{margin-left:-1870.080000pt;}
._133{margin-left:-1857.386667pt;}
._8a{margin-left:-1852.160000pt;}
._5b{margin-left:-1826.602667pt;}
._aa{margin-left:-1818.858667pt;}
._f8{margin-left:-1817.824000pt;}
._143{margin-left:-1816.384000pt;}
._15c{margin-left:-1811.136000pt;}
._16d{margin-left:-1799.783253pt;}
._33{margin-left:-1789.610667pt;}
._db{margin-left:-1777.920000pt;}
._5a{margin-left:-1775.360000pt;}
._15a{margin-left:-1742.890667pt;}
._174{margin-left:-1729.994240pt;}
._a9{margin-left:-1726.720000pt;}
._147{margin-left:-1724.693333pt;}
._93{margin-left:-1716.480000pt;}
._175{margin-left:-1705.654613pt;}
._172{margin-left:-1680.302080pt;}
._115{margin-left:-1664.682667pt;}
._bd{margin-left:-1644.725333pt;}
._16e{margin-left:-1641.380267pt;}
._156{margin-left:-1638.421333pt;}
._22{margin-left:-1627.424000pt;}
._e8{margin-left:-1616.800000pt;}
._e7{margin-left:-1608.298667pt;}
._155{margin-left:-1604.352000pt;}
._116{margin-left:-1572.224000pt;}
._e3{margin-left:-1570.496000pt;}
._108{margin-left:-1567.381333pt;}
._cf{margin-left:-1554.794667pt;}
._e9{margin-left:-1543.093333pt;}
._12f{margin-left:-1532.522667pt;}
._159{margin-left:-1521.984000pt;}
._12e{margin-left:-1519.904000pt;}
._c5{margin-left:-1515.413333pt;}
._144{margin-left:-1508.416000pt;}
._15f{margin-left:-1507.306667pt;}
._9e{margin-left:-1504.576000pt;}
._fe{margin-left:-1491.093333pt;}
._101{margin-left:-1486.698667pt;}
._75{margin-left:-1477.397333pt;}
._dd{margin-left:-1469.589333pt;}
._9d{margin-left:-1457.813333pt;}
._48{margin-left:-1433.920000pt;}
._e1{margin-left:-1415.381333pt;}
._a2{margin-left:-1409.856000pt;}
._10{margin-left:-1399.831040pt;}
._a1{margin-left:-1395.040000pt;}
._10d{margin-left:-1387.114667pt;}
._162{margin-left:-1381.653333pt;}
._10c{margin-left:-1366.933333pt;}
._14f{margin-left:-1365.338027pt;}
._ca{margin-left:-1361.322667pt;}
._122{margin-left:-1338.496000pt;}
._38{margin-left:-1322.752000pt;}
._ff{margin-left:-1307.690667pt;}
._23{margin-left:-1283.712000pt;}
._45{margin-left:-1275.306667pt;}
._120{margin-left:-1267.840000pt;}
._171{margin-left:-1263.048533pt;}
._fc{margin-left:-1250.325333pt;}
._141{margin-left:-1241.173333pt;}
._14b{margin-left:-1212.458667pt;}
._4c{margin-left:-1198.645333pt;}
._112{margin-left:-1195.605333pt;}
._a4{margin-left:-1179.701333pt;}
._111{margin-left:-1174.869333pt;}
._63{margin-left:-1171.541333pt;}
._9f{margin-left:-1168.085333pt;}
._ba{margin-left:-1161.962667pt;}
._62{margin-left:-1149.173333pt;}
._f3{margin-left:-1146.613333pt;}
._ae{margin-left:-1127.488000pt;}
._19{margin-left:-1109.792000pt;}
._168{margin-left:-1107.505920pt;}
._d3{margin-left:-1105.605973pt;}
._73{margin-left:-1102.378667pt;}
._173{margin-left:-1094.647040pt;}
._b1{margin-left:-1093.621333pt;}
._4d{margin-left:-1069.226667pt;}
._a5{margin-left:-1033.205333pt;}
._82{margin-left:-1026.293333pt;}
._76{margin-left:-1022.549333pt;}
._b2{margin-left:-1020.096000pt;}
._1a{margin-left:-1018.560000pt;}
._15b{margin-left:-1015.381333pt;}
._f9{margin-left:-1010.154667pt;}
._67{margin-left:-1003.498667pt;}
._c6{margin-left:-995.456000pt;}
._3d{margin-left:-991.018667pt;}
._37{margin-left:-975.360000pt;}
._d1{margin-left:-972.693333pt;}
._d0{margin-left:-957.066667pt;}
._52{margin-left:-951.648000pt;}
._e{margin-left:-947.115093pt;}
._5f{margin-left:-946.176000pt;}
._11f{margin-left:-943.509333pt;}
._14d{margin-left:-938.325333pt;}
._26{margin-left:-931.125333pt;}
._166{margin-left:-921.472000pt;}
._fa{margin-left:-915.178667pt;}
._177{margin-left:-884.188160pt;}
._11e{margin-left:-847.498667pt;}
._126{margin-left:-812.970667pt;}
._125{margin-left:-796.938667pt;}
._7b{margin-left:-788.714667pt;}
._7d{margin-left:-771.050667pt;}
._7c{margin-left:-754.826667pt;}
._131{margin-left:-753.557333pt;}
._ea{margin-left:-750.133333pt;}
._130{margin-left:-738.186667pt;}
._91{margin-left:-727.722667pt;}
._11b{margin-left:-725.973333pt;}
._f4{margin-left:-723.658667pt;}
._f1{margin-left:-711.392000pt;}
._6a{margin-left:-709.589333pt;}
._109{margin-left:-703.178667pt;}
._8b{margin-left:-700.160000pt;}
._df{margin-left:-695.168000pt;}
._10a{margin-left:-667.370667pt;}
._169{margin-left:-658.593707pt;}
._64{margin-left:-655.925333pt;}
._b7{margin-left:-644.149333pt;}
._1c{margin-left:-638.528000pt;}
._114{margin-left:-636.682667pt;}
._6b{margin-left:-634.506667pt;}
._11a{margin-left:-624.160000pt;}
._24{margin-left:-619.680000pt;}
._1b{margin-left:-616.586667pt;}
._11d{margin-left:-613.866667pt;}
._12c{margin-left:-601.632000pt;}
._3e{margin-left:-600.618667pt;}
._106{margin-left:-584.213333pt;}
._56{margin-left:-575.317333pt;}
._110{margin-left:-573.397333pt;}
._54{margin-left:-572.074667pt;}
._59{margin-left:-569.898667pt;}
._f7{margin-left:-564.085333pt;}
._8c{margin-left:-559.552000pt;}
._4a{margin-left:-551.957333pt;}
._35{margin-left:-549.845333pt;}
._12d{margin-left:-546.197333pt;}
._13d{margin-left:-539.402667pt;}
._b6{margin-left:-535.786667pt;}
._10f{margin-left:-533.738667pt;}
._137{margin-left:-526.250667pt;}
._fd{margin-left:-524.565333pt;}
._14c{margin-left:-520.874667pt;}
._ef{margin-left:-519.637333pt;}
._f0{margin-left:-517.866667pt;}
._ac{margin-left:-516.544000pt;}
._13c{margin-left:-504.853333pt;}
._135{margin-left:-502.762667pt;}
._123{margin-left:-497.493333pt;}
._30{margin-left:-491.925333pt;}
._95{margin-left:-485.461333pt;}
._31{margin-left:-483.381333pt;}
._27{margin-left:-481.301333pt;}
._3f{margin-left:-471.776000pt;}
._87{margin-left:-467.754667pt;}
._16f{margin-left:-465.579947pt;}
._47{margin-left:-462.058667pt;}
._de{margin-left:-458.325333pt;}
._4e{margin-left:-456.661333pt;}
._d5{margin-left:-454.080000pt;}
._121{margin-left:-452.096000pt;}
._113{margin-left:-447.466667pt;}
._13f{margin-left:-446.058667pt;}
._132{margin-left:-443.626667pt;}
._163{margin-left:-442.197333pt;}
._fb{margin-left:-437.888000pt;}
._b0{margin-left:-436.821333pt;}
._14{margin-left:-433.578667pt;}
._15{margin-left:-431.680000pt;}
._6e{margin-left:-428.458667pt;}
._cc{margin-left:-426.240000pt;}
._117{margin-left:-421.056000pt;}
._145{margin-left:-416.746667pt;}
._17{margin-left:-415.360000pt;}
._e2{margin-left:-413.525333pt;}
._146{margin-left:-407.637333pt;}
._a0{margin-left:-401.386667pt;}
._cb{margin-left:-399.658667pt;}
._c3{margin-left:-398.464000pt;}
._cd{margin-left:-396.309333pt;}
._d9{margin-left:-393.685333pt;}
._89{margin-left:-390.634667pt;}
._c7{margin-left:-388.757333pt;}
._58{margin-left:-382.186667pt;}
._170{margin-left:-379.995307pt;}
._af{margin-left:-375.050667pt;}
._49{margin-left:-367.338667pt;}
._128{margin-left:-364.266667pt;}
._107{margin-left:-362.794667pt;}
._34{margin-left:-361.706667pt;}
._9a{margin-left:-360.362667pt;}
._16{margin-left:-358.112000pt;}
._157{margin-left:-357.098667pt;}
._68{margin-left:-352.938667pt;}
._42{margin-left:-348.800000pt;}
._e4{margin-left:-347.178667pt;}
._41{margin-left:-345.066667pt;}
._99{margin-left:-342.506667pt;}
._a7{margin-left:-339.562667pt;}
._40{margin-left:-336.042667pt;}
._16c{margin-left:-334.473387pt;}
._80{margin-left:-331.328000pt;}
._7f{margin-left:-330.154667pt;}
._6d{margin-left:-328.170667pt;}
._ee{margin-left:-323.221333pt;}
._c1{margin-left:-322.026667pt;}
._bb{margin-left:-317.504000pt;}
._88{margin-left:-314.346667pt;}
._c2{margin-left:-310.400000pt;}
._92{margin-left:-305.941333pt;}
._2a{margin-left:-303.466667pt;}
._d2{margin-left:-302.336000pt;}
._14e{margin-left:-301.223253pt;}
._15d{margin-left:-299.637333pt;}
._a3{margin-left:-297.557333pt;}
._6f{margin-left:-294.016000pt;}
._158{margin-left:-289.642667pt;}
._140{margin-left:-284.181333pt;}
._3b{margin-left:-281.557333pt;}
._b9{margin-left:-280.512000pt;}
._46{margin-left:-273.280000pt;}
._85{margin-left:-271.573333pt;}
._50{margin-left:-270.656000pt;}
._142{margin-left:-266.880000pt;}
._94{margin-left:-265.984000pt;}
._ec{margin-left:-264.320000pt;}
._1d{margin-left:-261.610667pt;}
._3a{margin-left:-260.480000pt;}
._13e{margin-left:-257.920000pt;}
._a8{margin-left:-255.040000pt;}
._e6{margin-left:-252.522667pt;}
._66{margin-left:-250.931200pt;}
._32{margin-left:-244.266667pt;}
._36{margin-left:-242.986667pt;}
._25{margin-left:-242.048000pt;}
._100{margin-left:-239.722667pt;}
._8f{margin-left:-237.141333pt;}
._b4{margin-left:-234.581333pt;}
._b3{margin-left:-233.600000pt;}
._14a{margin-left:-231.573333pt;}
._138{margin-left:-227.200000pt;}
._f2{margin-left:-225.514667pt;}
._139{margin-left:-222.784000pt;}
._10b{margin-left:-221.568000pt;}
._104{margin-left:-220.373333pt;}
._102{margin-left:-218.922667pt;}
._ab{margin-left:-215.616000pt;}
._153{margin-left:-211.882667pt;}
._18{margin-left:-209.386667pt;}
._81{margin-left:-207.850667pt;}
._44{margin-left:-206.912000pt;}
._3c{margin-left:-205.376000pt;}
._ce{margin-left:-204.010667pt;}
._c9{margin-left:-202.901333pt;}
._21{margin-left:-198.890667pt;}
._51{margin-left:-193.557333pt;}
._bf{margin-left:-192.000000pt;}
._f6{margin-left:-190.976000pt;}
._20{margin-left:-184.960000pt;}
._43{margin-left:-183.573333pt;}
._bc{margin-left:-182.400000pt;}
._d6{margin-left:-180.416000pt;}
._4b{margin-left:-179.072000pt;}
._9c{margin-left:-176.149333pt;}
._2e{margin-left:-174.720000pt;}
._f5{margin-left:-172.800000pt;}
._60{margin-left:-170.858667pt;}
._c4{margin-left:-169.600000pt;}
._65{margin-left:-167.402667pt;}
._c0{margin-left:-165.312000pt;}
._1e{margin-left:-162.112000pt;}
._b8{margin-left:-158.058667pt;}
._118{margin-left:-155.520000pt;}
._70{margin-left:-151.360000pt;}
._161{margin-left:-150.186667pt;}
._78{margin-left:-148.608000pt;}
._149{margin-left:-143.424000pt;}
._148{margin-left:-141.866667pt;}
._124{margin-left:-140.586667pt;}
._127{margin-left:-138.880000pt;}
._15e{margin-left:-135.552000pt;}
._11c{margin-left:-134.080000pt;}
._8e{margin-left:-132.224000pt;}
._119{margin-left:-130.773333pt;}
._98{margin-left:-128.160000pt;}
._ad{margin-left:-125.333333pt;}
._79{margin-left:-123.690667pt;}
._d7{margin-left:-121.066667pt;}
._2c{margin-left:-119.552000pt;}
._5d{margin-left:-118.400000pt;}
._8d{margin-left:-117.280000pt;}
._61{margin-left:-110.656000pt;}
._97{margin-left:-105.600000pt;}
._2b{margin-left:-102.656000pt;}
._160{margin-left:-100.032000pt;}
._74{margin-left:-96.640000pt;}
._f{margin-left:-94.680320pt;}
._84{margin-left:-91.200000pt;}
._83{margin-left:-90.080000pt;}
._e0{margin-left:-87.680000pt;}
._5c{margin-left:-86.186667pt;}
._be{margin-left:-85.120000pt;}
._96{margin-left:-80.640000pt;}
._151{margin-left:-79.013547pt;}
._105{margin-left:-77.952000pt;}
._12a{margin-left:-76.703995pt;}
._150{margin-left:-74.903040pt;}
._103{margin-left:-72.960000pt;}
._16a{margin-left:-70.451200pt;}
._71{margin-left:-65.728000pt;}
._129{margin-left:-64.416000pt;}
._69{margin-left:-59.029333pt;}
._77{margin-left:-57.280000pt;}
._29{margin-left:-54.400000pt;}
._9b{margin-left:-52.821333pt;}
._e5{margin-left:-51.712000pt;}
._39{margin-left:-49.728000pt;}
._2d{margin-left:-48.640000pt;}
._13a{margin-left:-46.720000pt;}
._136{margin-left:-45.696000pt;}
._12b{margin-left:-44.352000pt;}
._2f{margin-left:-39.802137pt;}
._28{margin-left:-36.778667pt;}
._1f{margin-left:-35.882667pt;}
._da{margin-left:-31.104000pt;}
._7e{margin-left:-30.080000pt;}
._12{margin-left:-10.368000pt;}
._3{margin-left:-9.120000pt;}
._c8{margin-left:-8.213333pt;}
._7{margin-left:-6.656000pt;}
._1{margin-left:-5.760000pt;}
._13{margin-left:-4.864000pt;}
._c{margin-left:-3.840000pt;}
._2{margin-left:-2.880000pt;}
._4{margin-left:-1.536000pt;}
._0{width:0.938667pt;}
._5{width:2.474667pt;}
._9{width:3.776000pt;}
._a{width:6.522133pt;}
._8{width:8.533333pt;}
._6{width:10.325333pt;}
._6c{width:17.589333pt;}
._154{width:98.645333pt;}
._53{width:182.112000pt;}
._55{width:316.682667pt;}
._eb{width:354.101333pt;}
._57{width:384.138667pt;}
._d8{width:471.370667pt;}
._165{width:540.298667pt;}
._152{width:640.906667pt;}
._b{width:660.480000pt;}
._d{width:753.621333pt;}
._d4{width:1062.133333pt;}
.fs5{font-size:46.400000pt;}
.fs8{font-size:53.760000pt;}
.fsf{font-size:58.880000pt;}
.fs7{font-size:64.000000pt;}
.fse{font-size:67.461249pt;}
.fsb{font-size:74.240000pt;}
.fs6{font-size:74.666667pt;}
.fs4{font-size:80.000000pt;}
.fs0{font-size:85.333333pt;}
.fsa{font-size:85.760000pt;}
.fs2{font-size:96.000000pt;}
.fs9{font-size:106.240000pt;}
.fs3{font-size:128.000000pt;}
.fs1{font-size:160.000000pt;}
.fsd{font-size:192.000000pt;}
.fsc{font-size:256.128000pt;}
.y2c{bottom:-87.400000pt;}
.y2a{bottom:-83.200000pt;}
.y1aa{bottom:-29.760000pt;}
.y64{bottom:-25.920000pt;}
.y11a{bottom:-24.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.037333pt;}
.y20{bottom:0.960000pt;}
.y118{bottom:1.920000pt;}
.y1a9{bottom:2.880000pt;}
.y21b{bottom:3.200000pt;}
.y228{bottom:3.520000pt;}
.y63{bottom:3.552000pt;}
.yac{bottom:3.840000pt;}
.yf5{bottom:4.154667pt;}
.y6d{bottom:4.160000pt;}
.y93{bottom:4.186667pt;}
.y167{bottom:4.200000pt;}
.y9a{bottom:4.480000pt;}
.y18{bottom:5.120000pt;}
.yec{bottom:6.400000pt;}
.y67{bottom:6.720000pt;}
.y1e{bottom:7.360000pt;}
.y11f{bottom:8.000000pt;}
.y1b1{bottom:8.320000pt;}
.y5e{bottom:10.880000pt;}
.y226{bottom:11.200000pt;}
.y1fe{bottom:11.520000pt;}
.y24a{bottom:11.546667pt;}
.y11d{bottom:11.840000pt;}
.y20d{bottom:12.154667pt;}
.y1f8{bottom:12.160000pt;}
.y202{bottom:12.200000pt;}
.yad{bottom:12.800000pt;}
.ybf{bottom:12.826667pt;}
.y1c1{bottom:13.440000pt;}
.y169{bottom:13.760000pt;}
.y219{bottom:14.080000pt;}
.y1ec{bottom:14.426667pt;}
.y1f1{bottom:14.720000pt;}
.y23d{bottom:15.680000pt;}
.y24e{bottom:16.000000pt;}
.y21a{bottom:18.560000pt;}
.y247{bottom:19.520000pt;}
.y249{bottom:19.546667pt;}
.y22f{bottom:19.840000pt;}
.y232{bottom:20.160000pt;}
.y1da{bottom:20.480000pt;}
.y1c8{bottom:21.760000pt;}
.y150{bottom:21.800000pt;}
.y1d1{bottom:22.074667pt;}
.ya1{bottom:22.080000pt;}
.yc0{bottom:22.106667pt;}
.yef{bottom:22.120000pt;}
.ya3{bottom:22.400000pt;}
.yc5{bottom:22.426667pt;}
.y152{bottom:22.440000pt;}
.y146{bottom:22.720000pt;}
.y6f{bottom:23.040000pt;}
.y101{bottom:23.066667pt;}
.y122{bottom:23.080000pt;}
.y17{bottom:23.360000pt;}
.y9e{bottom:23.386667pt;}
.y166{bottom:23.400000pt;}
.yb1{bottom:23.674667pt;}
.y6c{bottom:23.680000pt;}
.y82{bottom:23.706667pt;}
.yfd{bottom:23.720000pt;}
.y99{bottom:24.000000pt;}
.y10a{bottom:24.040000pt;}
.y230{bottom:24.314667pt;}
.ye9{bottom:24.320000pt;}
.yeb{bottom:24.640000pt;}
.y206{bottom:25.280000pt;}
.y20f{bottom:25.320000pt;}
.y20b{bottom:25.594667pt;}
.y225{bottom:27.840000pt;}
.y158{bottom:28.160000pt;}
.y23a{bottom:28.186667pt;}
.y250{bottom:28.480000pt;}
.y253{bottom:28.506667pt;}
.y245{bottom:28.520000pt;}
.yed{bottom:29.160000pt;}
.y1f7{bottom:30.080000pt;}
.y1fb{bottom:30.400000pt;}
.y201{bottom:30.440000pt;}
.y204{bottom:30.720000pt;}
.y1ff{bottom:30.760000pt;}
.ya9{bottom:31.040000pt;}
.y1ce{bottom:31.066667pt;}
.y124{bottom:31.360000pt;}
.yc3{bottom:31.386667pt;}
.yb7{bottom:31.680000pt;}
.y128{bottom:32.000000pt;}
.y132{bottom:32.320000pt;}
.y13e{bottom:32.360000pt;}
.y69{bottom:32.640000pt;}
.y1e0{bottom:32.666667pt;}
.ycb{bottom:32.954667pt;}
.y72{bottom:32.960000pt;}
.yf9{bottom:32.986667pt;}
.y62{bottom:32.992000pt;}
.y15d{bottom:33.000000pt;}
.y16e{bottom:33.274667pt;}
.y84{bottom:33.280000pt;}
.y16b{bottom:33.306667pt;}
.y173{bottom:33.320000pt;}
.y86{bottom:33.600000pt;}
.y7f{bottom:33.626667pt;}
.ya5{bottom:33.640000pt;}
.y78{bottom:34.560000pt;}
.y1ee{bottom:34.880000pt;}
.y1a8{bottom:35.200000pt;}
.y1f0{bottom:35.520000pt;}
.y1eb{bottom:35.866667pt;}
.y243{bottom:36.520000pt;}
.y238{bottom:36.800000pt;}
.y231{bottom:37.114667pt;}
.y255{bottom:37.120000pt;}
.y23f{bottom:37.760000pt;}
.y20c{bottom:38.074667pt;}
.y209{bottom:38.080000pt;}
.y207{bottom:38.106667pt;}
.y210{bottom:38.120000pt;}
.y1ae{bottom:39.674667pt;}
.y1ac{bottom:39.680000pt;}
.y21e{bottom:40.026667pt;}
.y154{bottom:40.314667pt;}
.y60{bottom:40.346667pt;}
.y151{bottom:40.360000pt;}
.yab{bottom:40.640000pt;}
.y130{bottom:40.666667pt;}
.y11e{bottom:40.672000pt;}
.y135{bottom:40.680000pt;}
.y1d2{bottom:40.954667pt;}
.ya2{bottom:40.960000pt;}
.y14e{bottom:40.986667pt;}
.y110{bottom:41.600000pt;}
.y70{bottom:41.920000pt;}
.y102{bottom:41.946667pt;}
.yb5{bottom:41.960000pt;}
.y7d{bottom:42.240000pt;}
.y9f{bottom:42.266667pt;}
.y140{bottom:42.280000pt;}
.y8f{bottom:42.560000pt;}
.y15f{bottom:42.586667pt;}
.y194{bottom:42.874667pt;}
.y6b{bottom:42.880000pt;}
.yea{bottom:42.906667pt;}
.yd2{bottom:42.920000pt;}
.ycd{bottom:43.194667pt;}
.y74{bottom:43.200000pt;}
.y81{bottom:43.226667pt;}
.yf4{bottom:43.234667pt;}
.ya7{bottom:43.240000pt;}
.yb2{bottom:43.514667pt;}
.y98{bottom:43.520000pt;}
.y107{bottom:43.560000pt;}
.y11c{bottom:44.160000pt;}
.y5d{bottom:44.800000pt;}
.y157{bottom:45.120000pt;}
.y23b{bottom:45.146667pt;}
.y244{bottom:45.160000pt;}
.y1d9{bottom:45.440000pt;}
.y241{bottom:48.026667pt;}
.yee{bottom:48.040000pt;}
.y1fa{bottom:48.320000pt;}
.y1fd{bottom:48.346667pt;}
.y1f6{bottom:48.640000pt;}
.y200{bottom:48.680000pt;}
.y1f3{bottom:48.960000pt;}
.y224{bottom:51.200000pt;}
.y1b3{bottom:51.226667pt;}
.y104{bottom:53.146667pt;}
.y77{bottom:54.080000pt;}
.y21c{bottom:55.066667pt;}
.y212{bottom:56.640000pt;}
.y1ef{bottom:56.960000pt;}
.y21d{bottom:56.986667pt;}
.y1af{bottom:58.208000pt;}
.y125{bottom:58.880000pt;}
.yc4{bottom:58.906667pt;}
.ye5{bottom:58.920000pt;}
.yaa{bottom:59.200000pt;}
.y14d{bottom:59.226667pt;}
.y61{bottom:59.840000pt;}
.y12b{bottom:59.880000pt;}
.y129{bottom:60.160000pt;}
.yb8{bottom:60.480000pt;}
.y10e{bottom:60.506667pt;}
.y133{bottom:61.120000pt;}
.y13f{bottom:61.160000pt;}
.ye3{bottom:61.440000pt;}
.y1b6{bottom:61.466667pt;}
.y193{bottom:61.474667pt;}
.y6a{bottom:61.480000pt;}
.y73{bottom:61.760000pt;}
.yfa{bottom:61.786667pt;}
.ycc{bottom:61.794667pt;}
.ybc{bottom:61.800000pt;}
.ydb{bottom:62.080000pt;}
.y91{bottom:62.120000pt;}
.y18f{bottom:62.400000pt;}
.y160{bottom:62.426667pt;}
.y7a{bottom:62.720000pt;}
.y80{bottom:62.746667pt;}
.y16f{bottom:62.754667pt;}
.ya6{bottom:62.760000pt;}
.y97{bottom:63.040000pt;}
.y1ba{bottom:63.066667pt;}
.y13c{bottom:63.074667pt;}
.y109{bottom:63.080000pt;}
.y240{bottom:64.666667pt;}
.y1f5{bottom:66.880000pt;}
.y1d8{bottom:69.760000pt;}
.y156{bottom:70.120000pt;}
.y15{bottom:74.300000pt;}
.y14c{bottom:77.466667pt;}
.y10d{bottom:78.426667pt;}
.y1b5{bottom:79.706667pt;}
.y18e{bottom:80.960000pt;}
.y12e{bottom:80.986667pt;}
.y90{bottom:81.000000pt;}
.yda{bottom:81.280000pt;}
.y15b{bottom:81.306667pt;}
.y1dd{bottom:81.320000pt;}
.y95{bottom:82.240000pt;}
.y88{bottom:82.266667pt;}
.yfc{bottom:82.280000pt;}
.y13b{bottom:82.594667pt;}
.y108{bottom:82.600000pt;}
.yd0{bottom:82.906667pt;}
.y1f4{bottom:85.440000pt;}
.y153{bottom:96.032000pt;}
.y14{bottom:96.166667pt;}
.y1d3{bottom:96.352000pt;}
.yce{bottom:97.632000pt;}
.y1b4{bottom:98.266667pt;}
.y1c0{bottom:98.272000pt;}
.y24d{bottom:101.472000pt;}
.y105{bottom:101.786667pt;}
.y5a{bottom:101.792000pt;}
.y65{bottom:103.136000pt;}
.y1ad{bottom:103.392000pt;}
.y182{bottom:108.512000pt;}
.y13a{bottom:109.472000pt;}
.y192{bottom:111.072000pt;}
.y16d{bottom:112.352000pt;}
.yb0{bottom:114.272000pt;}
.y8e{bottom:117.152000pt;}
.y1d0{bottom:117.792000pt;}
.yca{bottom:119.072000pt;}
.y59{bottom:121.632000pt;}
.yde{bottom:125.792000pt;}
.y20a{bottom:126.432000pt;}
.y13{bottom:126.700000pt;}
.y181{bottom:127.072000pt;}
.yf3{bottom:131.232000pt;}
.y8d{bottom:136.346667pt;}
.y1bf{bottom:138.266667pt;}
.y58{bottom:141.146667pt;}
.y180{bottom:145.306667pt;}
.ydd{bottom:147.226667pt;}
.y14f{bottom:153.306667pt;}
.y111{bottom:153.626667pt;}
.y8c{bottom:154.906667pt;}
.y24c{bottom:155.226667pt;}
.y57{bottom:160.666667pt;}
.y17f{bottom:163.866667pt;}
.y10f{bottom:172.226667pt;}
.y8b{bottom:173.186667pt;}
.y22e{bottom:174.786667pt;}
.yaf{bottom:175.106667pt;}
.y56{bottom:180.226667pt;}
.y11b{bottom:181.186667pt;}
.y17e{bottom:182.146667pt;}
.y24b{bottom:183.746667pt;}
.y28{bottom:186.266667pt;}
.y191{bottom:190.146667pt;}
.y208{bottom:191.106667pt;}
.y8a{bottom:191.746667pt;}
.y16c{bottom:192.386667pt;}
.yf2{bottom:193.666667pt;}
.yc9{bottom:198.146667pt;}
.y55{bottom:199.746667pt;}
.y17d{bottom:200.706667pt;}
.y139{bottom:209.346667pt;}
.y89{bottom:210.306667pt;}
.y1be{bottom:213.826667pt;}
.y17c{bottom:216.066667pt;}
.y26{bottom:217.573333pt;}
.y12{bottom:218.633333pt;}
.y54{bottom:219.266667pt;}
.y87{bottom:226.626667pt;}
.ydc{bottom:227.586667pt;}
.y22d{bottom:228.226667pt;}
.y10c{bottom:232.386667pt;}
.y11{bottom:237.033333pt;}
.y1cf{bottom:237.506667pt;}
.yae{bottom:237.826667pt;}
.y53{bottom:238.786667pt;}
.y25{bottom:247.653333pt;}
.y5f{bottom:254.146667pt;}
.y205{bottom:255.746667pt;}
.y52{bottom:258.306667pt;}
.y10{bottom:264.366667pt;}
.y14b{bottom:267.586667pt;}
.y190{bottom:272.066667pt;}
.y16a{bottom:272.706667pt;}
.y1bd{bottom:273.346667pt;}
.y17b{bottom:274.306667pt;}
.y24{bottom:274.533333pt;}
.y248{bottom:276.546667pt;}
.y51{bottom:277.826667pt;}
.yd9{bottom:288.093333pt;}
.y18d{bottom:288.733333pt;}
.yf{bottom:290.966667pt;}
.y138{bottom:291.613333pt;}
.y1ab{bottom:291.933333pt;}
.ya8{bottom:292.893333pt;}
.yf1{bottom:295.453333pt;}
.y50{bottom:297.373333pt;}
.yc8{bottom:298.013333pt;}
.y23{bottom:299.813333pt;}
.y22c{bottom:302.493333pt;}
.y1e5{bottom:305.693333pt;}
.y137{bottom:311.133333pt;}
.y17a{bottom:313.373333pt;}
.y4f{bottom:316.893333pt;}
.y203{bottom:320.093333pt;}
.ye{bottom:321.433333pt;}
.y1e4{bottom:325.213333pt;}
.y22{bottom:326.080000pt;}
.y85{bottom:326.173333pt;}
.y136{bottom:327.453333pt;}
.y10b{bottom:329.693333pt;}
.y246{bottom:330.013333pt;}
.y1bc{bottom:330.653333pt;}
.y119{bottom:335.133333pt;}
.y4e{bottom:336.413333pt;}
.y1e3{bottom:344.733333pt;}
.yd{bottom:345.833333pt;}
.y168{bottom:352.733333pt;}
.y22b{bottom:353.053333pt;}
.y4d{bottom:355.933333pt;}
.y116{bottom:358.173333pt;}
.y1e2{bottom:361.053333pt;}
.y14a{bottom:361.693333pt;}
.y134{bottom:366.173333pt;}
.y19e{bottom:367.453333pt;}
.ya4{bottom:368.413333pt;}
.y179{bottom:371.613333pt;}
.y4c{bottom:375.453333pt;}
.y22a{bottom:377.373333pt;}
.yf0{bottom:379.293333pt;}
.y242{bottom:383.453333pt;}
.y18c{bottom:386.013333pt;}
.y19d{bottom:386.973333pt;}
.yd8{bottom:389.853333pt;}
.y115{bottom:391.453333pt;}
.y106{bottom:392.093333pt;}
.y165{bottom:393.693333pt;}
.y4b{bottom:394.973333pt;}
.y229{bottom:396.933333pt;}
.yc{bottom:397.233333pt;}
.yc7{bottom:397.573333pt;}
.y1cd{bottom:405.253333pt;}
.yd7{bottom:406.213333pt;}
.y83{bottom:406.533333pt;}
.y227{bottom:412.293333pt;}
.y4a{bottom:414.533333pt;}
.y1e1{bottom:420.613333pt;}
.y19c{bottom:422.853333pt;}
.y131{bottom:423.493333pt;}
.y149{bottom:424.453333pt;}
.yb{bottom:429.833333pt;}
.y1bb{bottom:432.133333pt;}
.y49{bottom:434.053333pt;}
.y148{bottom:440.773333pt;}
.y18b{bottom:443.333333pt;}
.y19b{bottom:444.293333pt;}
.y223{bottom:446.213333pt;}
.ya0{bottom:448.453333pt;}
.y178{bottom:451.653333pt;}
.y48{bottom:453.573333pt;}
.y5c{bottom:454.533333pt;}
.ya{bottom:454.766667pt;}
.y164{bottom:456.453333pt;}
.y1a7{bottom:461.253333pt;}
.ye8{bottom:466.693333pt;}
.y1fc{bottom:470.213333pt;}
.y23e{bottom:470.853333pt;}
.y163{bottom:472.773333pt;}
.y47{bottom:473.093333pt;}
.y9{bottom:479.700000pt;}
.yc6{bottom:479.813333pt;}
.y1cc{bottom:480.773333pt;}
.y7e{bottom:486.533333pt;}
.y46{bottom:492.613333pt;}
.y103{bottom:493.893333pt;}
.yc2{bottom:496.133333pt;}
.y1d{bottom:497.093333pt;}
.y1df{bottom:499.653333pt;}
.y12f{bottom:501.253333pt;}
.y9d{bottom:505.733333pt;}
.y8{bottom:507.366667pt;}
.y45{bottom:512.160000pt;}
.y117{bottom:512.480000pt;}
.y147{bottom:517.280000pt;}
.y222{bottom:518.560000pt;}
.y18a{bottom:518.880000pt;}
.ye7{bottom:528.800000pt;}
.y44{bottom:531.680000pt;}
.y162{bottom:533.280000pt;}
.y177{bottom:533.920000pt;}
.y221{bottom:543.520000pt;}
.y19a{bottom:544.160000pt;}
.y1f9{bottom:545.120000pt;}
.y257{bottom:551.840000pt;}
.y43{bottom:552.160000pt;}
.y1f{bottom:553.120000pt;}
.y176{bottom:553.440000pt;}
.y7{bottom:553.766667pt;}
.y1cb{bottom:556.640000pt;}
.y189{bottom:557.600000pt;}
.y12d{bottom:558.560000pt;}
.y23c{bottom:561.120000pt;}
.y7c{bottom:566.560000pt;}
.y9c{bottom:568.480000pt;}
.y220{bottom:569.120000pt;}
.y175{bottom:569.760000pt;}
.yc1{bottom:571.680000pt;}
.y42{bottom:573.920000pt;}
.y145{bottom:576.800000pt;}
.y1de{bottom:578.400000pt;}
.y9b{bottom:584.800000pt;}
.yd6{bottom:586.080000pt;}
.y6{bottom:587.433333pt;}
.y1b0{bottom:591.840000pt;}
.y161{bottom:592.800000pt;}
.y21f{bottom:593.440000pt;}
.y41{bottom:593.760000pt;}
.y199{bottom:604.640000pt;}
.y239{bottom:606.560000pt;}
.ye6{bottom:608.800000pt;}
.ybe{bottom:610.400000pt;}
.y40{bottom:613.280000pt;}
.y15e{bottom:614.560000pt;}
.y100{bottom:615.200000pt;}
.y188{bottom:620.320000pt;}
.y256{bottom:623.226667pt;}
.y5{bottom:627.433333pt;}
.y7b{bottom:629.306667pt;}
.y120{bottom:631.226667pt;}
.y3f{bottom:632.826667pt;}
.y66{bottom:634.106667pt;}
.y144{bottom:635.386667pt;}
.y187{bottom:636.666667pt;}
.y1f2{bottom:638.266667pt;}
.y1ca{bottom:638.586667pt;}
.y174{bottom:645.306667pt;}
.y76{bottom:645.626667pt;}
.ybd{bottom:649.466667pt;}
.y3e{bottom:652.346667pt;}
.y1c9{bottom:654.906667pt;}
.y1dc{bottom:657.466667pt;}
.y12c{bottom:660.346667pt;}
.y96{bottom:664.826667pt;}
.yd5{bottom:666.106667pt;}
.y1b9{bottom:669.626667pt;}
.y3d{bottom:671.866667pt;}
.y12a{bottom:676.666667pt;}
.y218{bottom:679.226667pt;}
.yff{bottom:679.546667pt;}
.y4{bottom:679.833333pt;}
.ybb{bottom:688.186667pt;}
.ye4{bottom:689.146667pt;}
.y3c{bottom:691.386667pt;}
.y1c7{bottom:693.946667pt;}
.y186{bottom:696.186667pt;}
.yfe{bottom:698.106667pt;}
.y198{bottom:704.186667pt;}
.y3b{bottom:710.906667pt;}
.y3{bottom:711.100000pt;}
.y15c{bottom:712.826667pt;}
.yfb{bottom:716.666667pt;}
.y172{bottom:725.626667pt;}
.y79{bottom:725.946667pt;}
.y1b8{bottom:730.106667pt;}
.y3a{bottom:730.426667pt;}
.y185{bottom:734.946667pt;}
.y217{bottom:736.866667pt;}
.y2{bottom:742.366667pt;}
.y94{bottom:745.186667pt;}
.yd4{bottom:746.146667pt;}
.y39{bottom:749.986667pt;}
.y1ed{bottom:750.306667pt;}
.y75{bottom:750.626667pt;}
.y1c6{bottom:750.946667pt;}
.y127{bottom:753.186667pt;}
.y254{bottom:754.466667pt;}
.y1db{bottom:759.266667pt;}
.y237{bottom:764.066667pt;}
.ye2{bottom:764.706667pt;}
.y216{bottom:765.026667pt;}
.y71{bottom:766.946667pt;}
.y27{bottom:769.186667pt;}
.y21{bottom:769.280000pt;}
.y38{bottom:769.506667pt;}
.yba{bottom:770.466667pt;}
.y143{bottom:773.666667pt;}
.y1d7{bottom:775.586667pt;}
.y2b{bottom:779.746667pt;}
.y197{bottom:784.546667pt;}
.yb9{bottom:786.786667pt;}
.y37{bottom:789.026667pt;}
.y142{bottom:789.986667pt;}
.y15a{bottom:791.906667pt;}
.y215{bottom:794.786667pt;}
.y171{bottom:805.666667pt;}
.y1c5{bottom:808.226667pt;}
.y36{bottom:808.546667pt;}
.yd3{bottom:808.866667pt;}
.y184{bottom:810.466667pt;}
.y1a6{bottom:811.746667pt;}
.y1b7{bottom:812.386667pt;}
.y252{bottom:817.186667pt;}
.yf8{bottom:818.146667pt;}
.y214{bottom:820.706667pt;}
.ycf{bottom:825.186667pt;}
.y35{bottom:828.066667pt;}
.y1b2{bottom:828.706667pt;}
.y126{bottom:829.986667pt;}
.y1a5{bottom:831.266667pt;}
.y1ea{bottom:833.826667pt;}
.y29{bottom:839.586667pt;}
.y213{bottom:840.226667pt;}
.y236{bottom:842.466667pt;}
.y196{bottom:844.066667pt;}
.y92{bottom:844.706667pt;}
.y6e{bottom:846.013333pt;}
.ye1{bottom:846.973333pt;}
.yb6{bottom:847.293333pt;}
.y34{bottom:847.613333pt;}
.y141{bottom:848.253333pt;}
.y1a4{bottom:850.813333pt;}
.y211{bottom:857.213333pt;}
.ye0{bottom:863.293333pt;}
.y1c4{bottom:865.533333pt;}
.y33{bottom:867.133333pt;}
.y183{bottom:867.773333pt;}
.y123{bottom:868.733333pt;}
.y1d6{bottom:869.053333pt;}
.y1a3{bottom:870.333333pt;}
.y235{bottom:871.293333pt;}
.y170{bottom:886.013333pt;}
.y32{bottom:886.653333pt;}
.y251{bottom:888.253333pt;}
.y1a2{bottom:889.853333pt;}
.y159{bottom:893.693333pt;}
.y114{bottom:895.613333pt;}
.yf7{bottom:899.133333pt;}
.y234{bottom:901.053333pt;}
.y195{bottom:903.293333pt;}
.y68{bottom:905.533333pt;}
.y31{bottom:906.173333pt;}
.y155{bottom:909.053333pt;}
.y1a1{bottom:909.373333pt;}
.y113{bottom:915.133333pt;}
.ydf{bottom:923.773333pt;}
.yb4{bottom:924.093333pt;}
.yd1{bottom:925.053333pt;}
.y30{bottom:925.693333pt;}
.y13d{bottom:926.013333pt;}
.y1d5{bottom:926.333333pt;}
.y1e9{bottom:926.653333pt;}
.y1a0{bottom:928.893333pt;}
.y112{bottom:934.653333pt;}
.y20e{bottom:940.413333pt;}
.y233{bottom:941.693333pt;}
.y121{bottom:944.573333pt;}
.y2f{bottom:945.213333pt;}
.y1c3{bottom:947.773333pt;}
.y19f{bottom:948.413333pt;}
.y1e6{bottom:954.173333pt;}
.y1e8{bottom:954.813333pt;}
.y24f{bottom:959.333333pt;}
.yf6{bottom:961.893333pt;}
.y1c2{bottom:964.133333pt;}
.y2e{bottom:964.773333pt;}
.y5b{bottom:967.973333pt;}
.yb3{bottom:982.373333pt;}
.y258{bottom:982.693333pt;}
.y1e7{bottom:983.333333pt;}
.y1d4{bottom:983.653333pt;}
.y2d{bottom:985.253333pt;}
.y1c{bottom:987.493333pt;}
.y1b{bottom:1020.773333pt;}
.y1a{bottom:1040.293333pt;}
.y19{bottom:1060.133333pt;}
.y16{bottom:1070.400000pt;}
.h70{height:18.240000pt;}
.h3f{height:19.520000pt;}
.h2f{height:19.552000pt;}
.h17{height:26.560000pt;}
.h15{height:32.992000pt;}
.h88{height:33.920000pt;}
.h44{height:36.800000pt;}
.h3d{height:36.832000pt;}
.h12{height:37.120000pt;}
.h27{height:37.440000pt;}
.h6f{height:37.760000pt;}
.h6e{height:38.080000pt;}
.h57{height:38.720000pt;}
.h4f{height:39.040000pt;}
.h6c{height:39.072000pt;}
.h13{height:39.243750pt;}
.h8e{height:41.600000pt;}
.h92{height:41.920000pt;}
.hd{height:42.656250pt;}
.h5f{height:44.687500pt;}
.h4c{height:48.531250pt;}
.h81{height:48.960000pt;}
.h89{height:49.600000pt;}
.h90{height:49.920000pt;}
.h91{height:49.952000pt;}
.he{height:50.713542pt;}
.hc{height:51.078125pt;}
.h62{height:51.807500pt;}
.hf{height:52.354167pt;}
.h8c{height:52.641250pt;}
.h82{height:52.785000pt;}
.hb{height:54.726562pt;}
.h60{height:55.040000pt;}
.h5b{height:55.072000pt;}
.h72{height:55.257500pt;}
.h3a{height:55.360000pt;}
.h59{height:55.392000pt;}
.h24{height:55.712000pt;}
.h2a{height:55.875000pt;}
.h14{height:55.968750pt;}
.h2b{height:56.312500pt;}
.h54{height:56.320000pt;}
.h40{height:56.352000pt;}
.h2c{height:57.280000pt;}
.h50{height:57.312000pt;}
.h78{height:57.375000pt;}
.h48{height:57.600000pt;}
.h31{height:57.632000pt;}
.h9{height:57.833333pt;}
.h6{height:58.375000pt;}
.h42{height:58.560000pt;}
.h37{height:58.592000pt;}
.h8d{height:58.736250pt;}
.h3{height:58.791667pt;}
.h3e{height:58.912000pt;}
.h5d{height:59.357993pt;}
.h32{height:60.062500pt;}
.h55{height:60.160000pt;}
.h4d{height:60.192000pt;}
.h83{height:60.519362pt;}
.h7f{height:60.800000pt;}
.h67{height:60.832000pt;}
.h85{height:61.208750pt;}
.h76{height:61.295000pt;}
.h3c{height:63.310801pt;}
.h23{height:63.392000pt;}
.h8{height:64.000000pt;}
.h7e{height:64.500000pt;}
.ha{height:64.808073pt;}
.h1a{height:64.815000pt;}
.h6a{height:64.960000pt;}
.h69{height:65.280000pt;}
.h35{height:65.781915pt;}
.h1f{height:66.272000pt;}
.h45{height:66.531250pt;}
.h8a{height:66.560000pt;}
.h87{height:66.592000pt;}
.h49{height:66.625000pt;}
.h93{height:66.912000pt;}
.h21{height:67.872000pt;}
.h4e{height:69.472000pt;}
.h20{height:69.672500pt;}
.h56{height:69.760000pt;}
.h5{height:69.796875pt;}
.h84{height:70.432000pt;}
.h1d{height:70.752000pt;}
.h7b{height:71.072000pt;}
.h7d{height:71.360000pt;}
.h7c{height:71.392000pt;}
.h3b{height:73.600000pt;}
.h46{height:73.632000pt;}
.h65{height:74.560000pt;}
.h58{height:74.592000pt;}
.h1c{height:74.872500pt;}
.h41{height:74.880000pt;}
.h19{height:75.458750pt;}
.h5a{height:75.840000pt;}
.h5c{height:75.872000pt;}
.h4b{height:76.800000pt;}
.h29{height:76.832000pt;}
.h2d{height:77.120000pt;}
.h43{height:77.152000pt;}
.h30{height:78.080000pt;}
.h33{height:78.112000pt;}
.h64{height:78.400000pt;}
.h39{height:78.432000pt;}
.h80{height:79.360000pt;}
.h77{height:79.680000pt;}
.h86{height:80.483750pt;}
.h75{height:81.952000pt;}
.h8b{height:83.552000pt;}
.h22{height:83.812500pt;}
.h74{height:86.430000pt;}
.h8f{height:86.432000pt;}
.h73{height:89.277500pt;}
.h7a{height:89.632000pt;}
.h71{height:91.552000pt;}
.h5e{height:92.192000pt;}
.h16{height:92.752500pt;}
.h61{height:92.832000pt;}
.h68{height:92.908125pt;}
.h53{height:93.152000pt;}
.h66{height:95.360000pt;}
.h7{height:96.000000pt;}
.h36{height:96.352000pt;}
.h4a{height:96.640000pt;}
.h63{height:96.672000pt;}
.h38{height:97.600000pt;}
.h34{height:97.632000pt;}
.h52{height:97.952000pt;}
.h2e{height:99.872000pt;}
.h79{height:108.192000pt;}
.h28{height:111.750000pt;}
.h6d{height:113.632000pt;}
.h4{height:116.328125pt;}
.h51{height:117.152000pt;}
.h26{height:167.625000pt;}
.h47{height:176.706667pt;}
.h1e{height:223.986938pt;}
.h18{height:347.200000pt;}
.h1b{height:347.293333pt;}
.h6b{height:589.120000pt;}
.h25{height:675.200000pt;}
.h2{height:793.700000pt;}
.h0{height:793.738583pt;}
.h1{height:794.000000pt;}
.h10{height:1122.560000pt;}
.h11{height:1122.666667pt;}
.w36{width:44.192000pt;}
.w38{width:47.072000pt;}
.w3c{width:49.312000pt;}
.w2e{width:56.320000pt;}
.w3a{width:57.632000pt;}
.w24{width:59.520000pt;}
.we{width:77.760000pt;}
.w18{width:89.952000pt;}
.w1b{width:92.512000pt;}
.w14{width:92.832000pt;}
.w34{width:93.792000pt;}
.w32{width:94.432000pt;}
.w29{width:94.752000pt;}
.w1d{width:97.312000pt;}
.w16{width:100.192000pt;}
.w27{width:102.112000pt;}
.w10{width:102.752000pt;}
.w12{width:103.712000pt;}
.w30{width:107.232000pt;}
.w5{width:175.106667pt;}
.w8{width:188.226667pt;}
.wd{width:241.053333pt;}
.wc{width:241.373333pt;}
.w22{width:244.573333pt;}
.w21{width:246.173333pt;}
.w20{width:247.453333pt;}
.w23{width:253.213333pt;}
.w2c{width:258.653333pt;}
.w2d{width:261.853333pt;}
.w7{width:282.653333pt;}
.w2b{width:283.933333pt;}
.w25{width:436.960000pt;}
.w31{width:497.786667pt;}
.w13{width:501.306667pt;}
.w1e{width:501.946667pt;}
.w11{width:502.266667pt;}
.w28{width:502.906667pt;}
.w17{width:504.826667pt;}
.w26{width:507.706667pt;}
.w2a{width:510.266667pt;}
.w33{width:510.586667pt;}
.w35{width:511.226667pt;}
.w15{width:512.186667pt;}
.w1c{width:512.506667pt;}
.w19{width:515.066667pt;}
.w2f{width:522.426667pt;}
.w3e{width:546.426667pt;}
.w3b{width:547.066667pt;}
.wf{width:554.426667pt;}
.w3d{width:555.706667pt;}
.w39{width:557.306667pt;}
.w37{width:562.426667pt;}
.w1a{width:605.026667pt;}
.wb{width:718.048000pt;}
.wa{width:772.773333pt;}
.w4{width:793.333333pt;}
.w1f{width:793.599971pt;}
.w9{width:793.599976pt;}
.w6{width:793.599988pt;}
.w3{width:793.600000pt;}
.w2{width:1122.481333pt;}
.w0{width:1122.519685pt;}
.w1{width:1122.666667pt;}
.x5a{left:-11.200029pt;}
.x98{left:-0.960000pt;}
.x0{left:0.000000pt;}
.x2a{left:0.960000pt;}
.xae{left:7.040000pt;}
.x18{left:9.600000pt;}
.x3f{left:10.560000pt;}
.x33{left:12.186667pt;}
.x20{left:13.760000pt;}
.xd{left:15.133333pt;}
.xb5{left:16.320000pt;}
.x14{left:18.880000pt;}
.xaa{left:20.480000pt;}
.x15{left:22.720000pt;}
.x54{left:24.346667pt;}
.x87{left:26.586667pt;}
.x60{left:28.826667pt;}
.x90{left:30.653333pt;}
.x79{left:33.626667pt;}
.x97{left:34.586667pt;}
.xb3{left:38.080000pt;}
.x47{left:43.546667pt;}
.x28{left:45.986667pt;}
.x46{left:49.306667pt;}
.x99{left:56.986667pt;}
.x38{left:61.146667pt;}
.x45{left:65.306667pt;}
.x7a{left:72.666667pt;}
.x21{left:75.552000pt;}
.x16{left:94.431988pt;}
.x4d{left:96.352000pt;}
.x9b{left:97.626667pt;}
.x7e{left:100.546667pt;}
.x31{left:102.786667pt;}
.x76{left:107.266667pt;}
.xc{left:108.933333pt;}
.x7c{left:113.026667pt;}
.x91{left:118.146667pt;}
.x78{left:121.666667pt;}
.xe{left:123.400000pt;}
.x8a{left:124.546667pt;}
.xa5{left:125.786667pt;}
.xb7{left:128.026667pt;}
.x1c{left:132.543988pt;}
.xb{left:137.333333pt;}
.x56{left:138.946667pt;}
.xad{left:141.826667pt;}
.x7b{left:143.426667pt;}
.xb1{left:146.626667pt;}
.x2f{left:147.586667pt;}
.x85{left:149.826667pt;}
.xb0{left:152.386667pt;}
.x41{left:153.666667pt;}
.x4f{left:155.586667pt;}
.x23{left:166.146655pt;}
.x22{left:168.066655pt;}
.x75{left:174.146667pt;}
.x86{left:177.346667pt;}
.x1e{left:179.586655pt;}
.x3c{left:180.893333pt;}
.x44{left:184.386667pt;}
.x2d{left:187.266667pt;}
.x9f{left:188.226667pt;}
.x8b{left:189.186667pt;}
.x61{left:191.746667pt;}
.x40{left:193.373333pt;}
.x39{left:194.626667pt;}
.x4e{left:195.586667pt;}
.x2b{left:197.186667pt;}
.x2c{left:198.146667pt;}
.x92{left:201.666667pt;}
.x84{left:202.653333pt;}
.xa2{left:204.226655pt;}
.xa0{left:210.973322pt;}
.x9c{left:214.173333pt;}
.xa9{left:216.066667pt;}
.xab{left:217.053322pt;}
.x1b{left:223.133322pt;}
.xb4{left:230.173333pt;}
.x6e{left:234.973333pt;}
.x29{left:239.133333pt;}
.x55{left:241.373333pt;}
.x27{left:243.200000pt;}
.x8{left:250.066667pt;}
.x58{left:253.213333pt;}
.xb8{left:255.773322pt;}
.x4c{left:258.653333pt;}
.x81{left:260.573333pt;}
.x82{left:264.093333pt;}
.x3d{left:265.720000pt;}
.x94{left:268.600000pt;}
.x3b{left:269.560000pt;}
.x95{left:270.520000pt;}
.x48{left:271.480000pt;}
.x74{left:274.040000pt;}
.x1d{left:275.613322pt;}
.xb6{left:280.733333pt;}
.x73{left:282.360000pt;}
.x7f{left:283.640000pt;}
.x1a{left:284.893322pt;}
.x72{left:286.200000pt;}
.x5e{left:293.120000pt;}
.xa1{left:295.493322pt;}
.xac{left:298.693322pt;}
.xaf{left:300.933322pt;}
.xa6{left:308.253333pt;}
.x2{left:312.400000pt;}
.x9{left:318.933333pt;}
.xb9{left:323.640000pt;}
.x36{left:324.920000pt;}
.x69{left:333.240000pt;}
.x9d{left:339.320000pt;}
.x66{left:341.560000pt;}
.x35{left:342.840000pt;}
.x3{left:345.800000pt;}
.x5f{left:356.293333pt;}
.x9e{left:358.240000pt;}
.x89{left:369.440000pt;}
.x4a{left:373.920000pt;}
.x67{left:375.200000pt;}
.x6{left:383.733333pt;}
.x6c{left:387.680000pt;}
.x1f{left:391.839976pt;}
.x1{left:395.733333pt;}
.x3e{left:397.280000pt;}
.x64{left:399.520000pt;}
.xa{left:401.400000pt;}
.x83{left:406.240000pt;}
.x77{left:411.680000pt;}
.x65{left:413.280000pt;}
.x93{left:414.560000pt;}
.x6f{left:418.080000pt;}
.x4{left:423.000000pt;}
.x34{left:424.480000pt;}
.x7{left:427.866667pt;}
.x53{left:428.960000pt;}
.x6b{left:430.560000pt;}
.x71{left:431.520000pt;}
.x19{left:433.120000pt;}
.x80{left:434.400000pt;}
.xf{left:435.466667pt;}
.x6a{left:436.666667pt;}
.x42{left:440.826667pt;}
.x63{left:443.386667pt;}
.x5{left:445.133333pt;}
.x37{left:447.546667pt;}
.x4b{left:449.146667pt;}
.x68{left:451.386667pt;}
.x51{left:452.346667pt;}
.x52{left:457.786667pt;}
.x9a{left:458.746667pt;}
.x59{left:459.706638pt;}
.x96{left:466.426667pt;}
.x30{left:470.266667pt;}
.x49{left:474.106667pt;}
.x6d{left:475.066667pt;}
.x43{left:476.666667pt;}
.x7d{left:479.546667pt;}
.xa4{left:484.640000pt;}
.xb2{left:490.106667pt;}
.x88{left:491.066667pt;}
.x57{left:492.986667pt;}
.x2e{left:495.226667pt;}
.x32{left:496.186667pt;}
.x50{left:497.786667pt;}
.x70{left:498.746667pt;}
.x3a{left:499.706667pt;}
.x8c{left:501.306667pt;}
.x62{left:502.906667pt;}
.x17{left:505.786667pt;}
.x8d{left:509.626667pt;}
.x8f{left:510.906667pt;}
.x8e{left:514.746667pt;}
.x5c{left:517.626667pt;}
.x25{left:518.586667pt;}
.x24{left:519.866667pt;}
.x26{left:522.106667pt;}
.x5b{left:523.066667pt;}
.x5d{left:524.986667pt;}
.xa7{left:526.586667pt;}
.xa8{left:532.346667pt;}
.xa3{left:548.346667pt;}
.x13{left:602.146667pt;}
.x10{left:683.066667pt;}
.x12{left:684.466667pt;}
.x11{left:708.333333pt;}
}




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