
    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_4f9beeb7ee523fad3aa11600.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_5f8aa509789b3feec5da030f.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.035156;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_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.003906;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_cb3b1ec32eef0eb205072247.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_ae58aa9a078bae2a36097c39.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_6a155e01156c02f1865cfea0.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.921387;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_25b31022e630ec67ca8abe45.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_a42587767402264ddbb15d8f.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_7c74273eb13b045a361c6f80.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.923340;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_96477f819ec1360acdfa5617.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.942383;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_91da4681991ae723490516bf.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.995117;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_12d12d41f3baf77d83f136a3.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_c9feb9987697c4f7d0546422.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.142090;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_6ae0a87d78dfb07beff745d3.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m17{transform:matrix(0.246130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246130,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.246858,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246858,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246858,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.248242,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248242,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248242,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.248479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248479,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.248562,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248562,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248562,0.000000,0.000000,0.250000,0,0);}
.m3a{transform:matrix(0.249055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249055,0.000000,0.000000,0.250000,0,0);}
.m3b{transform:matrix(0.249055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249055,0.000000,0.000000,0.250000,0,0);}
.m32{transform:matrix(0.249222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249222,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.249334,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249334,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249334,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.249431,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249431,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249431,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.249480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249480,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.249604,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249604,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249604,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249952,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249952,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249952,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.250010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250010,0.000000,0.000000,0.250000,0,0);}
.m38{transform:matrix(0.250176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250176,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.250287,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250287,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250287,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.250287,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250287,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250287,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.250410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250410,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.250424,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250424,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250424,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.250640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250640,0.000000,0.000000,0.250000,0,0);}
.m40{transform:matrix(0.250648,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250648,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250648,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.250861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250861,0.000000,0.000000,0.250000,0,0);}
.m3e{transform:matrix(0.250918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250918,0.000000,0.000000,0.250000,0,0);}
.m34{transform:matrix(0.250920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250920,0.000000,0.000000,0.250000,0,0);}
.m37{transform:matrix(0.250968,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250968,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250968,0.000000,0.000000,0.250000,0,0);}
.m3d{transform:matrix(0.251140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251140,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.251362,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251362,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251362,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.251587,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251587,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251587,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.251747,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251747,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251747,0.000000,0.000000,0.250000,0,0);}
.m39{transform:matrix(0.251901,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251901,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251901,0.000000,0.000000,0.250000,0,0);}
.m41{transform:matrix(0.252086,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252086,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252086,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.252523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252523,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.252523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252523,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.252649,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252649,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252649,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.252649,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252649,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252649,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.252684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252684,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.252812,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252812,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252812,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.253038,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253038,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253038,0.000000,0.000000,0.250000,0,0);}
.m36{transform:matrix(0.253177,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253177,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253177,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.253271,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253271,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253271,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.253271,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253271,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253271,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.253601,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253601,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253601,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.253630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253630,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.253740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253740,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.253905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253905,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.253931,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253931,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253931,0.000000,0.000000,0.250000,0,0);}
.m3f{transform:matrix(0.253948,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253948,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253948,0.000000,0.000000,0.250000,0,0);}
.m31{transform:matrix(0.253969,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253969,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253969,0.000000,0.000000,0.250000,0,0);}
.m3c{transform:matrix(0.254062,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254062,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254062,0.000000,0.000000,0.250000,0,0);}
.m30{transform:matrix(0.254108,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254108,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254108,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.254274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254274,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.254425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254425,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.254684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254684,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.254711,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254711,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254711,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.255008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255008,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.255544,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255544,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255544,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.255707,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255707,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255707,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.255767,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255767,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255767,0.000000,0.000000,0.250000,0,0);}
.m35{transform:matrix(0.255831,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255831,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255831,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.255843,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255843,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255843,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.255914,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255914,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255914,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.255916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255916,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.257376,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257376,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257376,0.000000,0.000000,0.250000,0,0);}
.m33{transform:matrix(0.257536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257536,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);}
.v1{vertical-align:-56.580000px;}
.v8{vertical-align:-47.156575px;}
.v4{vertical-align:-32.255406px;}
.v6{vertical-align:-9.600000px;}
.v0{vertical-align:0.000000px;}
.v7{vertical-align:9.600000px;}
.va{vertical-align:17.505558px;}
.v5{vertical-align:31.997234px;}
.v3{vertical-align:42.060000px;}
.v9{vertical-align:45.573322px;}
.v2{vertical-align:49.140000px;}
.ls2f{letter-spacing:-2.633590px;}
.ls27{letter-spacing:-2.492189px;}
.ls29{letter-spacing:-2.451771px;}
.ls28{letter-spacing:-2.308602px;}
.ls25{letter-spacing:-1.312384px;}
.ls7{letter-spacing:-0.924000px;}
.ls32{letter-spacing:-0.576000px;}
.ls4{letter-spacing:-0.552000px;}
.ls6{letter-spacing:-0.372000px;}
.ls2{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.096000px;}
.ls26{letter-spacing:0.261002px;}
.ls5{letter-spacing:0.276000px;}
.ls31{letter-spacing:0.430056px;}
.ls30{letter-spacing:0.433087px;}
.ls13{letter-spacing:0.456948px;}
.ls2d{letter-spacing:0.498438px;}
.lsd{letter-spacing:0.504000px;}
.lse{letter-spacing:0.540000px;}
.ls1a{letter-spacing:0.576852px;}
.ls1{letter-spacing:0.600000px;}
.lsf{letter-spacing:0.660000px;}
.ls1b{letter-spacing:0.721811px;}
.ls14{letter-spacing:1.200000px;}
.ls9{letter-spacing:1.260000px;}
.ls2e{letter-spacing:1.800000px;}
.ls8{letter-spacing:7.800000px;}
.lsa{letter-spacing:16.200000px;}
.ls24{letter-spacing:28.233579px;}
.ls18{letter-spacing:28.998607px;}
.ls10{letter-spacing:54.400528px;}
.ls23{letter-spacing:83.150237px;}
.ls0{letter-spacing:87.300000px;}
.ls17{letter-spacing:132.804843px;}
.ls11{letter-spacing:202.517923px;}
.ls12{letter-spacing:204.716943px;}
.ls1d{letter-spacing:262.716827px;}
.ls19{letter-spacing:263.724976px;}
.ls1c{letter-spacing:273.245722px;}
.ls2a{letter-spacing:274.255661px;}
.lsb{letter-spacing:277.429243px;}
.lsc{letter-spacing:290.031600px;}
.ls16{letter-spacing:290.967542px;}
.ls15{letter-spacing:292.104665px;}
.ls21{letter-spacing:317.825007px;}
.ls22{letter-spacing:324.315340px;}
.ls20{letter-spacing:336.923640px;}
.ls2c{letter-spacing:360.095093px;}
.ls1e{letter-spacing:386.219494px;}
.ls2b{letter-spacing:386.944790px;}
.ls1f{letter-spacing:529.264078px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3{word-spacing:-84.000000px;}
.wsa{word-spacing:-61.608000px;}
.ws9{word-spacing:-61.548000px;}
.ws7{word-spacing:-60.348000px;}
.ws6{word-spacing:-57.144000px;}
.ws1e{word-spacing:-39.813486px;}
.ws2c{word-spacing:-39.661970px;}
.ws59{word-spacing:-39.588978px;}
.ws24{word-spacing:-39.581994px;}
.ws26{word-spacing:-39.581106px;}
.ws1a{word-spacing:-39.454562px;}
.wsc{word-spacing:-39.444023px;}
.ws1f{word-spacing:-39.354435px;}
.ws2e{word-spacing:-39.324098px;}
.ws40{word-spacing:-38.575179px;}
.ws16{word-spacing:-38.248479px;}
.ws46{word-spacing:-25.480391px;}
.ws53{word-spacing:-24.495711px;}
.ws0{word-spacing:-24.000000px;}
.ws19{word-spacing:-22.200000px;}
.ws5{word-spacing:-21.276000px;}
.ws2{word-spacing:-21.096000px;}
.ws1{word-spacing:-21.000000px;}
.ws20{word-spacing:-20.628000px;}
.ws4{word-spacing:-20.448000px;}
.ws4a{word-spacing:-19.894958px;}
.ws1d{word-spacing:-13.500000px;}
.ws31{word-spacing:-0.793658px;}
.ws2a{word-spacing:-0.648699px;}
.ws69{word-spacing:-0.569539px;}
.ws12{word-spacing:-0.528795px;}
.ws62{word-spacing:-0.504934px;}
.ws35{word-spacing:-0.332103px;}
.ws2d{word-spacing:-0.072244px;}
.ws5a{word-spacing:-0.072111px;}
.ws22{word-spacing:-0.072098px;}
.ws1c{word-spacing:-0.071866px;}
.wse{word-spacing:-0.071847px;}
.ws2f{word-spacing:-0.071629px;}
.ws11{word-spacing:-0.071101px;}
.ws47{word-spacing:-0.070672px;}
.ws15{word-spacing:-0.069669px;}
.ws1b{word-spacing:-0.041956px;}
.ws8{word-spacing:0.000000px;}
.ws3b{word-spacing:2.236755px;}
.ws3e{word-spacing:2.379924px;}
.ws38{word-spacing:2.421088px;}
.ws4c{word-spacing:2.562489px;}
.ws3f{word-spacing:13.008633px;}
.ws48{word-spacing:20.041196px;}
.ws4b{word-spacing:21.870386px;}
.ws57{word-spacing:29.630508px;}
.ws5f{word-spacing:42.920647px;}
.wsf{word-spacing:45.076148px;}
.ws17{word-spacing:55.971886px;}
.ws42{word-spacing:60.188823px;}
.ws44{word-spacing:83.483548px;}
.ws55{word-spacing:87.554757px;}
.wsd{word-spacing:89.622008px;}
.ws58{word-spacing:101.737695px;}
.ws36{word-spacing:105.345293px;}
.ws5b{word-spacing:106.584909px;}
.ws32{word-spacing:108.949839px;}
.ws29{word-spacing:109.814819px;}
.ws30{word-spacing:113.710212px;}
.ws18{word-spacing:113.838807px;}
.ws3c{word-spacing:125.588286px;}
.ws54{word-spacing:125.917114px;}
.ws49{word-spacing:126.199369px;}
.ws56{word-spacing:133.577440px;}
.ws10{word-spacing:136.659961px;}
.ws43{word-spacing:141.365638px;}
.ws3d{word-spacing:169.258041px;}
.ws2b{word-spacing:186.016178px;}
.ws39{word-spacing:191.496935px;}
.ws45{word-spacing:207.425226px;}
.ws33{word-spacing:218.622652px;}
.ws3a{word-spacing:227.993095px;}
.ws28{word-spacing:287.184243px;}
.ws25{word-spacing:288.462771px;}
.ws27{word-spacing:289.858496px;}
.ws23{word-spacing:291.142915px;}
.wsb{word-spacing:295.378296px;}
.ws4d{word-spacing:300.554989px;}
.ws34{word-spacing:310.494570px;}
.ws14{word-spacing:316.407859px;}
.ws21{word-spacing:332.949178px;}
.ws5c{word-spacing:382.482612px;}
.ws4f{word-spacing:396.413231px;}
.ws41{word-spacing:404.917491px;}
.ws52{word-spacing:433.477915px;}
.ws50{word-spacing:462.228210px;}
.ws37{word-spacing:463.672878px;}
.ws68{word-spacing:499.706515px;}
.ws13{word-spacing:501.001270px;}
.ws5e{word-spacing:646.350928px;}
.ws67{word-spacing:652.312011px;}
.ws4e{word-spacing:690.110212px;}
.ws51{word-spacing:726.281126px;}
.ws61{word-spacing:748.951598px;}
.ws63{word-spacing:781.577860px;}
.ws66{word-spacing:814.202232px;}
.ws5d{word-spacing:896.970745px;}
.ws65{word-spacing:933.902239px;}
.ws60{word-spacing:1070.852740px;}
.ws64{word-spacing:1247.880164px;}
._3b{margin-left:-607.580298px;}
._7a{margin-left:-478.115285px;}
._63{margin-left:-465.755256px;}
._91{margin-left:-464.060409px;}
._75{margin-left:-441.080510px;}
._74{margin-left:-439.844864px;}
._92{margin-left:-427.119346px;}
._78{margin-left:-414.144783px;}
._9b{margin-left:-382.025660px;}
._9c{margin-left:-377.032224px;}
._43{margin-left:-375.473815px;}
._46{margin-left:-374.342663px;}
._90{margin-left:-342.917091px;}
._89{margin-left:-338.552433px;}
._99{margin-left:-335.535919px;}
._9a{margin-left:-329.645623px;}
._7d{margin-left:-324.288638px;}
._95{margin-left:-301.368961px;}
._68{margin-left:-297.033666px;}
._7f{margin-left:-295.164211px;}
._5b{margin-left:-293.520560px;}
._1d{margin-left:-273.679704px;}
._18{margin-left:-271.648612px;}
._6e{margin-left:-268.130632px;}
._82{margin-left:-266.836360px;}
._97{margin-left:-262.715335px;}
._6d{margin-left:-256.564694px;}
._66{margin-left:-253.555449px;}
._71{margin-left:-252.540400px;}
._44{margin-left:-250.529604px;}
._47{margin-left:-249.392591px;}
._8f{margin-left:-247.259168px;}
._69{margin-left:-245.633947px;}
._98{margin-left:-244.407202px;}
._67{margin-left:-243.262967px;}
._50{margin-left:-242.103372px;}
._4d{margin-left:-240.369833px;}
._12{margin-left:-237.777279px;}
._62{margin-left:-236.630201px;}
._5e{margin-left:-235.236085px;}
._8b{margin-left:-233.567230px;}
._1c{margin-left:-224.210364px;}
._2a{margin-left:-222.483727px;}
._3a{margin-left:-220.620296px;}
._22{margin-left:-217.474824px;}
._80{margin-left:-216.069006px;}
._64{margin-left:-214.069390px;}
._94{margin-left:-212.380389px;}
._8e{margin-left:-211.251107px;}
._24{margin-left:-210.070475px;}
._8c{margin-left:-208.056931px;}
._3c{margin-left:-206.516078px;}
._8a{margin-left:-204.665709px;}
._2c{margin-left:-202.885480px;}
._42{margin-left:-200.882683px;}
._8d{margin-left:-199.551054px;}
._21{margin-left:-197.854689px;}
._65{margin-left:-195.979282px;}
._1a{margin-left:-194.711847px;}
._23{margin-left:-190.161616px;}
._38{margin-left:-189.129971px;}
._2e{margin-left:-187.667456px;}
._1e{margin-left:-185.004141px;}
._2d{margin-left:-183.887580px;}
._28{margin-left:-182.312917px;}
._73{margin-left:-180.309587px;}
._41{margin-left:-179.255458px;}
._3d{margin-left:-177.110235px;}
._2f{margin-left:-175.623327px;}
._4b{margin-left:-174.327108px;}
._5a{margin-left:-173.318959px;}
._77{margin-left:-172.203739px;}
._6c{margin-left:-170.340997px;}
._4f{margin-left:-169.241028px;}
._4c{margin-left:-168.089710px;}
._76{margin-left:-166.474723px;}
._87{margin-left:-164.414671px;}
._6f{margin-left:-163.114373px;}
._61{margin-left:-162.074775px;}
._79{margin-left:-160.861720px;}
._20{margin-left:-159.851305px;}
._5d{margin-left:-157.795182px;}
._70{margin-left:-156.292512px;}
._58{margin-left:-151.539479px;}
._15{margin-left:-150.239026px;}
._14{margin-left:-149.236842px;}
._72{margin-left:-148.223389px;}
._9e{margin-left:-146.975527px;}
._83{margin-left:-145.810447px;}
._39{margin-left:-144.768894px;}
._16{margin-left:-142.701052px;}
._1b{margin-left:-141.573676px;}
._30{margin-left:-139.631766px;}
._17{margin-left:-137.075699px;}
._85{margin-left:-136.004389px;}
._11{margin-left:-134.904301px;}
._32{margin-left:-133.733788px;}
._6a{margin-left:-132.271349px;}
._93{margin-left:-130.316291px;}
._7c{margin-left:-128.350685px;}
._7e{margin-left:-126.637932px;}
._55{margin-left:-122.124668px;}
._57{margin-left:-120.981407px;}
._54{margin-left:-119.832222px;}
._53{margin-left:-118.598967px;}
._7b{margin-left:-116.889182px;}
._52{margin-left:-115.490765px;}
._56{margin-left:-111.744043px;}
._3e{margin-left:-108.616885px;}
._51{margin-left:-107.208962px;}
._13{margin-left:-105.763419px;}
._96{margin-left:-104.309060px;}
._86{margin-left:-102.818733px;}
._84{margin-left:-101.741125px;}
._31{margin-left:-99.660496px;}
._45{margin-left:-98.144604px;}
._26{margin-left:-97.098066px;}
._2b{margin-left:-95.977176px;}
._27{margin-left:-93.729590px;}
._33{margin-left:-92.006174px;}
._29{margin-left:-89.234999px;}
._6b{margin-left:-84.070256px;}
._5f{margin-left:-81.008509px;}
._1f{margin-left:-79.205357px;}
._25{margin-left:-73.601185px;}
._60{margin-left:-59.233213px;}
._5c{margin-left:-58.007961px;}
._19{margin-left:-53.883391px;}
._9d{margin-left:-52.648231px;}
._88{margin-left:-47.568529px;}
._4e{margin-left:-4.872000px;}
._37{margin-left:-3.624000px;}
._c{margin-left:-2.400000px;}
._0{margin-left:-1.224000px;}
._1{width:1.098000px;}
._2{width:2.346000px;}
._81{width:3.408000px;}
._f{width:4.704000px;}
._e{width:6.264000px;}
._10{width:7.392000px;}
._a{width:8.748000px;}
._b{width:9.870000px;}
._4a{width:11.064000px;}
._34{width:12.444000px;}
._7{width:14.400000px;}
._5{width:15.756000px;}
._6{width:16.764000px;}
._35{width:17.808000px;}
._36{width:19.272000px;}
._8{width:23.070000px;}
._59{width:24.264000px;}
._d{width:25.548000px;}
._9{width:27.636000px;}
._4{width:39.966000px;}
._3{width:41.040000px;}
._3f{width:52.200000px;}
._40{width:53.790000px;}
._49{width:155.736000px;}
._48{width:168.600000px;}
.fc4{color:transparent;}
.fc2{color:rgb(5,99,193);}
.fc3{color:rgb(36,32,33);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:6.000000px;}
.fs18{font-size:40.976141px;}
.fs1e{font-size:41.191462px;}
.fsa{font-size:41.464017px;}
.fse{font-size:41.793027px;}
.fs8{font-size:41.838193px;}
.fsd{font-size:41.955767px;}
.fs13{font-size:42.034687px;}
.fs20{font-size:42.113891px;}
.fs1a{font-size:42.128854px;}
.fs10{font-size:42.280523px;}
.fs1{font-size:54.000000px;}
.fs3{font-size:60.000000px;}
.fs4{font-size:66.000000px;}
.fsb{font-size:69.669361px;}
.fs17{font-size:70.264443px;}
.fs1c{font-size:70.671598px;}
.fs9{font-size:71.101036px;}
.fs1d{font-size:71.469836px;}
.fs16{font-size:71.628594px;}
.fsf{font-size:71.683852px;}
.fs7{font-size:71.847037px;}
.fsc{font-size:71.866233px;}
.fs0{font-size:72.000000px;}
.fs14{font-size:72.096733px;}
.fs12{font-size:72.098350px;}
.fs1f{font-size:72.111070px;}
.fs19{font-size:72.181653px;}
.fs15{font-size:72.244025px;}
.fs11{font-size:72.520011px;}
.fs6{font-size:84.000000px;}
.fs1b{font-size:84.150000px;}
.fs5{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y150{bottom:3.211769px;}
.y79{bottom:3.693009px;}
.y5f{bottom:3.693012px;}
.yd4{bottom:3.693019px;}
.y7b{bottom:3.693024px;}
.y61{bottom:3.693036px;}
.y7d{bottom:3.693039px;}
.yd6{bottom:3.693068px;}
.y92{bottom:3.736081px;}
.y6a{bottom:3.736086px;}
.yb8{bottom:3.736091px;}
.y6c{bottom:3.736101px;}
.y6e{bottom:3.736117px;}
.yba{bottom:3.736122px;}
.ybc{bottom:3.736152px;}
.yde{bottom:3.750016px;}
.y99{bottom:3.785820px;}
.y9b{bottom:3.785857px;}
.y2{bottom:3.900000px;}
.y10e{bottom:4.142749px;}
.y1d7{bottom:4.142768px;}
.yfb{bottom:4.178560px;}
.y1ae{bottom:4.178580px;}
.yac{bottom:4.178619px;}
.yc8{bottom:4.405418px;}
.y89{bottom:4.440943px;}
.ya0{bottom:4.441023px;}
.yf3{bottom:4.682181px;}
.ye6{bottom:4.682190px;}
.yec{bottom:4.682192px;}
.y4c{bottom:4.682196px;}
.y46{bottom:4.682197px;}
.yd0{bottom:4.682203px;}
.y1a1{bottom:4.771763px;}
.y38{bottom:4.809289px;}
.y105{bottom:4.809292px;}
.yea{bottom:4.809293px;}
.y3d{bottom:4.809297px;}
.ye4{bottom:4.809298px;}
.ya{bottom:5.137500px;}
.y52{bottom:5.435722px;}
.y57{bottom:5.506750px;}
.y1c9{bottom:5.529733px;}
.y118{bottom:5.565699px;}
.y192{bottom:5.565738px;}
.y122{bottom:5.565778px;}
.y3{bottom:5.700000px;}
.y9{bottom:7.237500px;}
.y14f{bottom:7.588158px;}
.y1c5{bottom:7.678506px;}
.y144{bottom:7.678507px;}
.y13c{bottom:7.678510px;}
.y41{bottom:7.678512px;}
.y151{bottom:7.810621px;}
.y44{bottom:7.810627px;}
.y181{bottom:7.810632px;}
.y173{bottom:7.869063px;}
.y7f{bottom:8.202763px;}
.y63{bottom:8.202767px;}
.y81{bottom:8.202778px;}
.yd8{bottom:8.202780px;}
.y65{bottom:8.202792px;}
.y83{bottom:8.202793px;}
.yda{bottom:8.202830px;}
.y94{bottom:8.298288px;}
.y70{bottom:8.298296px;}
.ybe{bottom:8.298304px;}
.y72{bottom:8.298311px;}
.y74{bottom:8.298327px;}
.yc0{bottom:8.298335px;}
.yc2{bottom:8.298366px;}
.y169{bottom:8.437500px;}
.y111{bottom:8.499956px;}
.y1da{bottom:8.499960px;}
.y1d9{bottom:8.499966px;}
.y1dc{bottom:8.499973px;}
.y165{bottom:8.505000px;}
.y100{bottom:8.535606px;}
.yfe{bottom:8.535611px;}
.y1b3{bottom:8.535614px;}
.y102{bottom:8.535616px;}
.yb1{bottom:8.535621px;}
.y1b1{bottom:8.535624px;}
.y1b5{bottom:8.535633px;}
.yaf{bottom:8.535641px;}
.yb3{bottom:8.535660px;}
.ycd{bottom:8.704168px;}
.yca{bottom:8.704178px;}
.ycc{bottom:8.704187px;}
.y8c{bottom:8.739759px;}
.ya9{bottom:8.739774px;}
.ya3{bottom:8.739784px;}
.ya7{bottom:8.739792px;}
.y167{bottom:8.775000px;}
.y6{bottom:9.000000px;}
.y59{bottom:10.018612px;}
.y55{bottom:10.018617px;}
.y1d0{bottom:10.377323px;}
.y1cd{bottom:10.377326px;}
.y1d3{bottom:10.377335px;}
.y11c{bottom:10.413158px;}
.y199{bottom:10.413165px;}
.y129{bottom:10.413172px;}
.y196{bottom:10.413173px;}
.y19c{bottom:10.413181px;}
.y126{bottom:10.413189px;}
.y12c{bottom:10.413204px;}
.y184{bottom:10.501295px;}
.y16d{bottom:10.501302px;}
.y189{bottom:10.501305px;}
.yb{bottom:11.700000px;}
.y1a8{bottom:11.965405px;}
.y1a5{bottom:11.965408px;}
.y1ab{bottom:11.965418px;}
.y156{bottom:12.217111px;}
.y39{bottom:12.873141px;}
.y106{bottom:12.873156px;}
.ye5{bottom:12.873171px;}
.yeb{bottom:12.873174px;}
.y14c{bottom:12.873176px;}
.y18d{bottom:12.873179px;}
.y131{bottom:12.873208px;}
.y134{bottom:12.873209px;}
.y3e{bottom:12.873212px;}
.ycb{bottom:16.769478px;}
.ya5{bottom:16.804644px;}
.y1c8{bottom:17.020104px;}
.y117{bottom:17.055626px;}
.y191{bottom:17.055665px;}
.y121{bottom:17.055704px;}
.ye1{bottom:17.856698px;}
.y9d{bottom:17.893543px;}
.y185{bottom:18.456875px;}
.y1a0{bottom:18.652488px;}
.y10f{bottom:19.214307px;}
.y1d8{bottom:19.214326px;}
.yfc{bottom:19.249676px;}
.y1af{bottom:19.249696px;}
.yad{bottom:19.249735px;}
.y157{bottom:20.289791px;}
.y5{bottom:20.445000px;}
.y53{bottom:20.570298px;}
.yc9{bottom:20.570338px;}
.y8a{bottom:20.605424px;}
.ya1{bottom:20.605504px;}
.ye0{bottom:29.250017px;}
.ydf{bottom:29.250038px;}
.y9a{bottom:29.286831px;}
.y9c{bottom:29.286904px;}
.y7a{bottom:29.543160px;}
.y60{bottom:29.543162px;}
.yd5{bottom:29.543170px;}
.y7c{bottom:29.543175px;}
.y62{bottom:29.543187px;}
.y7e{bottom:29.543190px;}
.yd7{bottom:29.543219px;}
.y93{bottom:29.744050px;}
.y6b{bottom:29.744055px;}
.yb9{bottom:29.744060px;}
.y6d{bottom:29.744070px;}
.y6f{bottom:29.744085px;}
.ybb{bottom:29.744090px;}
.ybd{bottom:29.744120px;}
.y58{bottom:32.542596px;}
.y80{bottom:34.018644px;}
.y64{bottom:34.018648px;}
.y82{bottom:34.018659px;}
.yd9{bottom:34.018661px;}
.y66{bottom:34.018673px;}
.y84{bottom:34.018675px;}
.ydb{bottom:34.018711px;}
.y1cb{bottom:34.219378px;}
.y11a{bottom:34.256381px;}
.y194{bottom:34.256420px;}
.y124{bottom:34.256459px;}
.y95{bottom:34.307293px;}
.y71{bottom:34.307301px;}
.ybf{bottom:34.307309px;}
.y73{bottom:34.307316px;}
.y75{bottom:34.307331px;}
.yc1{bottom:34.307339px;}
.yc3{bottom:34.307370px;}
.y110{bottom:34.320625px;}
.yfd{bottom:34.320645px;}
.y1b0{bottom:34.320664px;}
.yae{bottom:34.320703px;}
.y112{bottom:35.641839px;}
.y1db{bottom:35.641842px;}
.y101{bottom:35.641844px;}
.y1b4{bottom:35.641846px;}
.yff{bottom:35.641849px;}
.y1b2{bottom:35.641852px;}
.yb2{bottom:35.641854px;}
.y103{bottom:35.641855px;}
.yb0{bottom:35.641867px;}
.y1b6{bottom:35.641872px;}
.yb4{bottom:35.641905px;}
.y8d{bottom:35.739707px;}
.ya8{bottom:35.739736px;}
.ya4{bottom:35.739746px;}
.y54{bottom:35.739747px;}
.yaa{bottom:35.739761px;}
.y1a3{bottom:35.969104px;}
.y8{bottom:36.000000px;}
.y8b{bottom:36.771224px;}
.ya2{bottom:36.771304px;}
.y5a{bottom:37.055484px;}
.y56{bottom:37.055489px;}
.y1d1{bottom:37.308538px;}
.y1ce{bottom:37.308541px;}
.y1d4{bottom:37.308552px;}
.y11d{bottom:37.344076px;}
.y19a{bottom:37.344083px;}
.y12a{bottom:37.344090px;}
.y197{bottom:37.344091px;}
.y19d{bottom:37.344099px;}
.y127{bottom:37.344106px;}
.y12d{bottom:37.344122px;}
.y1a9{bottom:39.077581px;}
.y1a6{bottom:39.077584px;}
.ya6{bottom:43.805803px;}
.y1ca{bottom:47.685281px;}
.y119{bottom:47.720804px;}
.y193{bottom:47.720843px;}
.y123{bottom:47.720882px;}
.y1a2{bottom:49.886505px;}
.y11b{bottom:62.946026px;}
.y1cc{bottom:62.946046px;}
.y195{bottom:62.946066px;}
.y125{bottom:62.946105px;}
.y1d2{bottom:64.238863px;}
.y1cf{bottom:64.238866px;}
.y1d5{bottom:64.238877px;}
.y11e{bottom:64.274402px;}
.y19b{bottom:64.274416px;}
.y198{bottom:64.274425px;}
.y12b{bottom:64.274431px;}
.y19e{bottom:64.274435px;}
.y128{bottom:64.274448px;}
.y12e{bottom:64.274469px;}
.y1aa{bottom:66.225063px;}
.y1a7{bottom:66.225066px;}
.y1ac{bottom:66.225076px;}
.y1a4{bottom:67.201630px;}
.y163{bottom:96.637500px;}
.y1e9{bottom:99.037500px;}
.y1e0{bottom:103.537500px;}
.y114{bottom:112.350000px;}
.y162{bottom:124.537500px;}
.y1e8{bottom:126.637500px;}
.y16a{bottom:130.500000px;}
.y1df{bottom:131.437500px;}
.y168{bottom:133.800000px;}
.y113{bottom:134.737500px;}
.y161{bottom:152.430000px;}
.y2f{bottom:153.330000px;}
.y1e7{bottom:154.530000px;}
.y90{bottom:157.530000px;}
.y1de{bottom:159.345000px;}
.y10d{bottom:169.950000px;}
.y160{bottom:180.045000px;}
.y2e{bottom:181.245000px;}
.y1e6{bottom:182.430000px;}
.y8f{bottom:185.130000px;}
.y1dd{bottom:186.930000px;}
.y10c{bottom:192.330000px;}
.y15f{bottom:207.975000px;}
.y88{bottom:208.650000px;}
.y2d{bottom:209.175000px;}
.y1e5{bottom:210.075000px;}
.y1c7{bottom:210.449980px;}
.y1d6{bottom:225.449980px;}
.y10b{bottom:227.250000px;}
.y10a{bottom:231.675000px;}
.y8e{bottom:232.575000px;}
.y15e{bottom:235.575000px;}
.y2c{bottom:237.375000px;}
.y1e4{bottom:237.975000px;}
.y166{bottom:243.900000px;}
.y1c6{bottom:247.875000px;}
.y109{bottom:255.150000px;}
.y108{bottom:259.575000px;}
.y15d{bottom:263.475000px;}
.y2b{bottom:264.975000px;}
.y1e3{bottom:265.575000px;}
.y87{bottom:273.375000px;}
.y107{bottom:287.475000px;}
.y15c{bottom:291.075000px;}
.y2a{bottom:292.875000px;}
.y1e2{bottom:293.475000px;}
.y1c4{bottom:298.049980px;}
.y86{bottom:300.975000px;}
.y1c3{bottom:305.475000px;}
.yfa{bottom:310.949980px;}
.y15b{bottom:318.975000px;}
.y29{bottom:320.775000px;}
.y1e1{bottom:321.075000px;}
.y1c2{bottom:328.650000px;}
.y85{bottom:328.875000px;}
.y104{bottom:328.949980px;}
.y1c1{bottom:333.075000px;}
.yf9{bottom:333.375000px;}
.y15a{bottom:346.575000px;}
.y28{bottom:348.975000px;}
.y78{bottom:352.349959px;}
.y164{bottom:360.000000px;}
.y1c0{bottom:360.675000px;}
.yf8{bottom:368.249959px;}
.yf7{bottom:372.705000px;}
.y159{bottom:374.505000px;}
.y77{bottom:374.805000px;}
.y27{bottom:376.905000px;}
.y1be{bottom:384.150000px;}
.y1bf{bottom:388.620000px;}
.yf6{bottom:400.620000px;}
.y158{bottom:402.420000px;}
.y26{bottom:404.505000px;}
.y76{bottom:412.620000px;}
.y1bd{bottom:416.505000px;}
.yf5{bottom:423.749959px;}
.y155{bottom:425.849959px;}
.yf4{bottom:428.205000px;}
.y25{bottom:432.405000px;}
.y69{bottom:436.049959px;}
.y154{bottom:437.820000px;}
.y1bc{bottom:444.105000px;}
.yf2{bottom:451.650000px;}
.yf1{bottom:456.120000px;}
.y68{bottom:458.505000px;}
.y24{bottom:460.005000px;}
.y153{bottom:466.905000px;}
.y1bb{bottom:467.849959px;}
.y1ba{bottom:475.320000px;}
.yf0{bottom:483.705000px;}
.y23{bottom:487.905000px;}
.y14e{bottom:490.650000px;}
.y152{bottom:493.650000px;}
.y67{bottom:495.105000px;}
.y14d{bottom:498.105000px;}
.y1b9{bottom:498.449959px;}
.y1b8{bottom:505.905000px;}
.yef{bottom:511.605000px;}
.y22{bottom:515.505000px;}
.y5e{bottom:518.549959px;}
.y14b{bottom:521.249959px;}
.y14a{bottom:525.705000px;}
.y19f{bottom:529.049959px;}
.y190{bottom:530.549959px;}
.yee{bottom:539.550000px;}
.y5d{bottom:541.050000px;}
.y21{bottom:543.450000px;}
.y1ad{bottom:545.549959px;}
.y148{bottom:549.150000px;}
.y149{bottom:553.650000px;}
.y1b7{bottom:560.549959px;}
.yed{bottom:567.150000px;}
.y18f{bottom:568.050000px;}
.y20{bottom:571.350000px;}
.y146{bottom:577.049959px;}
.y5c{bottom:578.850000px;}
.y147{bottom:584.550000px;}
.ye9{bottom:590.549959px;}
.ye8{bottom:595.050000px;}
.y1f{bottom:598.950000px;}
.y5b{bottom:606.450000px;}
.y143{bottom:607.949959px;}
.y145{bottom:615.450000px;}
.ye7{bottom:622.950000px;}
.y18e{bottom:624.450000px;}
.y1e{bottom:626.850000px;}
.y51{bottom:629.849959px;}
.y142{bottom:642.750000px;}
.ydd{bottom:646.349959px;}
.y18c{bottom:647.849959px;}
.y18b{bottom:652.350000px;}
.y50{bottom:653.850000px;}
.y1d{bottom:654.450000px;}
.ye3{bottom:659.849959px;}
.ye2{bottom:664.350000px;}
.y141{bottom:670.650000px;}
.y18a{bottom:680.250000px;}
.y1c{bottom:682.350000px;}
.y4f{bottom:694.680000px;}
.y140{bottom:698.595000px;}
.yd3{bottom:699.449919px;}
.y188{bottom:703.649919px;}
.y1b{bottom:709.995000px;}
.y187{bottom:714.195000px;}
.ydc{bottom:721.995000px;}
.y4e{bottom:722.580000px;}
.y13f{bottom:726.195000px;}
.y1a{bottom:737.880000px;}
.y186{bottom:741.780000px;}
.y4d{bottom:750.180000px;}
.y13e{bottom:754.095000px;}
.yd2{bottom:759.780000px;}
.y183{bottom:765.149919px;}
.y19{bottom:765.480000px;}
.y4b{bottom:773.549919px;}
.y182{bottom:775.695000px;}
.y4a{bottom:778.080000px;}
.y13d{bottom:781.695000px;}
.ycf{bottom:782.849919px;}
.yd1{bottom:787.380000px;}
.y18{bottom:793.380000px;}
.y180{bottom:799.049919px;}
.y49{bottom:801.149919px;}
.y13b{bottom:805.049919px;}
.y48{bottom:805.695000px;}
.y17f{bottom:806.580000px;}
.yc7{bottom:810.749919px;}
.yce{bottom:812.249919px;}
.y13a{bottom:812.580000px;}
.yc5{bottom:816.749919px;}
.y17{bottom:821.280000px;}
.y45{bottom:829.049919px;}
.y17c{bottom:829.649919px;}
.y17e{bottom:832.649919px;}
.y47{bottom:833.580000px;}
.yc6{bottom:834.795000px;}
.y17d{bottom:837.195000px;}
.y139{bottom:840.195000px;}
.y16{bottom:848.880000px;}
.y43{bottom:856.949919px;}
.y138{bottom:863.549919px;}
.y42{bottom:864.525000px;}
.y17b{bottom:864.825000px;}
.y137{bottom:868.125000px;}
.yb7{bottom:871.049919px;}
.y15{bottom:876.825000px;}
.y40{bottom:884.849919px;}
.y17a{bottom:888.149919px;}
.y136{bottom:891.449919px;}
.y3f{bottom:892.425000px;}
.y179{bottom:892.725000px;}
.yc4{bottom:893.625000px;}
.y135{bottom:896.025000px;}
.y14{bottom:904.425000px;}
.y3c{bottom:915.749919px;}
.y133{bottom:919.649919px;}
.y3b{bottom:920.325000px;}
.y132{bottom:924.225000px;}
.yb6{bottom:925.949919px;}
.yb5{bottom:930.525000px;}
.y13{bottom:932.325000px;}
.y130{bottom:947.549919px;}
.y3a{bottom:947.925000px;}
.y178{bottom:948.225000px;}
.y12f{bottom:952.125000px;}
.y9f{bottom:953.849919px;}
.yab{bottom:955.349919px;}
.y12{bottom:959.925000px;}
.y37{bottom:971.250000px;}
.y120{bottom:975.449919px;}
.y36{bottom:975.825000px;}
.y9e{bottom:977.925000px;}
.y11{bottom:987.825000px;}
.y177{bottom:999.449919px;}
.y35{bottom:1003.725000px;}
.y176{bottom:1007.025000px;}
.y11f{bottom:1013.025000px;}
.y98{bottom:1014.149919px;}
.y10{bottom:1015.725000px;}
.y175{bottom:1029.750000px;}
.y34{bottom:1031.370000px;}
.y97{bottom:1032.255000px;}
.y174{bottom:1034.355000px;}
.yf{bottom:1043.355000px;}
.y172{bottom:1057.949919px;}
.y33{bottom:1059.570000px;}
.y116{bottom:1062.750000px;}
.y171{bottom:1065.570000px;}
.y91{bottom:1067.250000px;}
.ye{bottom:1071.255000px;}
.y32{bottom:1087.455000px;}
.y170{bottom:1088.250000px;}
.y96{bottom:1089.855000px;}
.y16f{bottom:1092.855000px;}
.yd{bottom:1098.870000px;}
.y115{bottom:1100.370000px;}
.y31{bottom:1111.155000px;}
.y16c{bottom:1116.449919px;}
.y30{bottom:1121.670000px;}
.y16e{bottom:1122.449919px;}
.yc{bottom:1126.755000px;}
.y16b{bottom:1127.070000px;}
.y7{bottom:1151.070000px;}
.y4{bottom:1166.655000px;}
.y1{bottom:1199.400000px;}
.h6{height:15.982500px;}
.h52{height:19.799804px;}
.h2{height:20.700000px;}
.h38{height:20.700152px;}
.h37{height:20.700192px;}
.h17{height:20.700233px;}
.h5{height:21.937500px;}
.h11{height:24.299975px;}
.h3a{height:24.299996px;}
.h36{height:24.300016px;}
.h14{height:24.300057px;}
.h47{height:25.199247px;}
.h5d{height:27.000208px;}
.h45{height:27.000229px;}
.h15{height:27.000270px;}
.h8{height:27.637500px;}
.h4d{height:28.500000px;}
.h4f{height:28.800000px;}
.h50{height:29.699826px;}
.h4a{height:33.299558px;}
.h54{height:40.427168px;}
.h1e{height:41.017570px;}
.h13{height:41.061898px;}
.h1b{height:41.177291px;}
.h4c{height:41.347166px;}
.h21{height:41.496021px;}
.h32{height:49.500269px;}
.h27{height:49.500309px;}
.h26{height:51.299448px;}
.h20{height:51.299489px;}
.h30{height:51.299529px;}
.h1d{height:52.198854px;}
.h31{height:52.198895px;}
.h4{height:53.709961px;}
.h3c{height:53.998903px;}
.h39{height:53.998924px;}
.h5c{height:53.998944px;}
.h2c{height:53.998985px;}
.h23{height:56.701180px;}
.h19{height:56.701221px;}
.h2b{height:56.701262px;}
.he{height:58.652344px;}
.h7{height:65.645508px;}
.h41{height:66.347385px;}
.h1a{height:66.567502px;}
.h2d{height:66.781007px;}
.h35{height:66.782505px;}
.h58{height:66.794287px;}
.h3d{height:66.917440px;}
.h18{height:68.376668px;}
.h48{height:68.960709px;}
.h55{height:69.325801px;}
.h51{height:69.360309px;}
.h53{height:70.108838px;}
.h43{height:70.264573px;}
.h42{height:70.299548px;}
.h1f{height:70.318778px;}
.h3b{height:70.478856px;}
.h1c{height:70.497687px;}
.h12{height:70.513937px;}
.h24{height:70.532778px;}
.h9{height:70.664062px;}
.h2f{height:70.723797px;}
.h34{height:70.725383px;}
.h5b{height:70.737861px;}
.h2e{height:70.759001px;}
.h28{height:70.760588px;}
.h59{height:70.773072px;}
.h4b{height:70.842345px;}
.h3f{height:70.868285px;}
.h3e{height:70.903560px;}
.h22{height:71.139014px;}
.h3{height:72.562500px;}
.h16{height:72.691899px;}
.h46{height:73.317304px;}
.h25{height:73.441490px;}
.h29{height:73.536095px;}
.h33{height:73.683391px;}
.h5a{height:73.726405px;}
.hd{height:82.400391px;}
.hb{height:82.441406px;}
.h4e{height:82.547534px;}
.h40{height:83.700963px;}
.h5e{height:83.700983px;}
.h56{height:83.701003px;}
.h44{height:83.701044px;}
.hc{height:84.656250px;}
.h49{height:86.431958px;}
.h57{height:87.300236px;}
.ha{height:96.750000px;}
.hf{height:99.706406px;}
.h2a{height:116.298705px;}
.h10{height:124.501406px;}
.h0{height:1262.700000px;}
.h1{height:1263.000000px;}
.w33{width:25.800000px;}
.w34{width:26.100000px;}
.w37{width:43.201047px;}
.w1b{width:43.201052px;}
.w20{width:43.201067px;}
.w22{width:43.201088px;}
.w3{width:44.437500px;}
.w3f{width:44.999886px;}
.w38{width:44.999906px;}
.w25{width:46.799950px;}
.w21{width:47.700112px;}
.wc{width:51.299020px;}
.wb{width:52.198112px;}
.w17{width:52.198127px;}
.w6{width:54.000000px;}
.w1e{width:54.000317px;}
.w2f{width:55.801552px;}
.w23{width:56.700569px;}
.w1d{width:58.499102px;}
.w26{width:60.300004px;}
.w42{width:60.300035px;}
.w16{width:61.201864px;}
.wd{width:61.201884px;}
.w1a{width:61.201905px;}
.w2e{width:62.998759px;}
.w1c{width:64.801386px;}
.wf{width:64.801391px;}
.w27{width:69.301991px;}
.w36{width:70.200531px;}
.w28{width:70.201441px;}
.w44{width:74.701366px;}
.w35{width:74.701376px;}
.w43{width:74.701397px;}
.w3d{width:78.300946px;}
.w4a{width:79.201987px;}
.w3c{width:82.798767px;}
.w49{width:83.701035px;}
.w31{width:87.303217px;}
.w24{width:91.797897px;}
.w32{width:92.701959px;}
.w13{width:101.697549px;}
.w10{width:101.697554px;}
.w11{width:103.500152px;}
.w8{width:109.804403px;}
.w7{width:110.698797px;}
.w3b{width:112.503379px;}
.we{width:118.800049px;}
.w1f{width:118.800069px;}
.w9{width:119.696573px;}
.w19{width:123.304563px;}
.w15{width:124.200124px;}
.w2d{width:130.496055px;}
.w40{width:132.300637px;}
.w30{width:136.803655px;}
.w3e{width:143.995492px;}
.w18{width:151.193451px;}
.w14{width:151.193466px;}
.w2c{width:153.002997px;}
.wa{width:155.700222px;}
.w12{width:168.298795px;}
.w2b{width:184.492890px;}
.w41{width:191.698347px;}
.w29{width:193.506525px;}
.w39{width:220.496989px;}
.w3a{width:229.503745px;}
.w2a{width:234.008806px;}
.w48{width:253.798084px;}
.w45{width:278.998708px;}
.w46{width:315.000682px;}
.w47{width:357.291850px;}
.w5{width:743.025000px;}
.w2{width:839.970000px;}
.w4{width:893.099987px;}
.w0{width:893.100000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2a{left:2.719740px;}
.x1{left:4.500000px;}
.x6{left:8.700000px;}
.x4d{left:11.692957px;}
.x19{left:13.554998px;}
.x72{left:15.071515px;}
.x4c{left:16.526825px;}
.x55{left:19.286069px;}
.xb{left:21.000000px;}
.x60{left:25.722242px;}
.x4b{left:30.565662px;}
.x85{left:32.251013px;}
.x4{left:35.730000px;}
.x25{left:40.162817px;}
.x22{left:41.403464px;}
.x38{left:42.651481px;}
.x31{left:44.098538px;}
.x32{left:45.102964px;}
.x9{left:48.000000px;}
.x28{left:49.934659px;}
.x35{left:51.476947px;}
.x30{left:53.139901px;}
.x8{left:54.637500px;}
.xa9{left:56.087732px;}
.xa8{left:57.236938px;}
.x64{left:58.397354px;}
.x42{left:59.940020px;}
.x9b{left:62.529860px;}
.x2{left:63.637500px;}
.x46{left:65.815285px;}
.x93{left:68.309569px;}
.xaa{left:69.805297px;}
.x92{left:71.730613px;}
.x48{left:73.605099px;}
.x7a{left:76.023720px;}
.x36{left:80.783424px;}
.x37{left:81.789077px;}
.x2b{left:83.661457px;}
.x7{left:84.937487px;}
.x45{left:87.019566px;}
.x34{left:89.358218px;}
.x17{left:90.449990px;}
.x99{left:95.549990px;}
.x18{left:97.861015px;}
.x2d{left:98.963554px;}
.xc{left:100.237487px;}
.x90{left:101.537444px;}
.x3c{left:102.630174px;}
.x1b{left:106.049990px;}
.x2c{left:107.631992px;}
.x1d{left:109.479258px;}
.x1f{left:111.450000px;}
.x47{left:112.624257px;}
.x15{left:117.037487px;}
.x98{left:119.628999px;}
.x77{left:124.390359px;}
.x14{left:127.537487px;}
.x3e{left:130.825256px;}
.x95{left:131.905327px;}
.x23{left:137.137487px;}
.x41{left:138.493026px;}
.x6d{left:141.605697px;}
.x3d{left:143.820461px;}
.x20{left:144.941697px;}
.x54{left:149.737487px;}
.x5c{left:153.149990px;}
.x5d{left:155.849990px;}
.x3a{left:158.249990px;}
.x2f{left:161.849990px;}
.x33{left:163.049990px;}
.x9a{left:165.644987px;}
.x67{left:167.249990px;}
.x6c{left:171.995031px;}
.x27{left:178.049980px;}
.x9c{left:179.106426px;}
.x6a{left:181.433843px;}
.x40{left:186.674987px;}
.x59{left:197.549980px;}
.x63{left:199.874987px;}
.x1a{left:201.074987px;}
.x29{left:204.150000px;}
.x89{left:208.220531px;}
.x81{left:211.349980px;}
.x4e{left:212.849980px;}
.x87{left:214.049980px;}
.x1c{left:215.774987px;}
.x8f{left:217.054460px;}
.x56{left:221.249980px;}
.x65{left:222.374987px;}
.x1e{left:225.674987px;}
.x71{left:229.949980px;}
.x86{left:231.974987px;}
.x66{left:233.774987px;}
.x4f{left:236.174987px;}
.x6e{left:237.974987px;}
.xf{left:239.774987px;}
.xa6{left:242.008133px;}
.x44{left:246.150000px;}
.x3f{left:253.274987px;}
.x88{left:257.174987px;}
.x3b{left:261.674987px;}
.x39{left:264.674987px;}
.x21{left:267.074987px;}
.x12{left:269.774987px;}
.xab{left:271.274987px;}
.x11{left:273.374987px;}
.x6b{left:283.874987px;}
.x68{left:286.904987px;}
.x61{left:289.049980px;}
.x73{left:292.904987px;}
.x13{left:294.404987px;}
.xa2{left:302.101623px;}
.x74{left:305.249980px;}
.x50{left:313.949980px;}
.x5a{left:316.319987px;}
.x57{left:318.150000px;}
.xe{left:319.619987px;}
.x10{left:321.704987px;}
.x2e{left:322.919987px;}
.xac{left:324.119987px;}
.x7d{left:329.100000px;}
.x7e{left:331.200000px;}
.x96{left:339.150000px;}
.xa4{left:346.320129px;}
.x69{left:354.119987px;}
.x75{left:361.019987px;}
.x5b{left:364.619987px;}
.x6f{left:368.549959px;}
.x49{left:370.319987px;}
.x58{left:372.119987px;}
.x62{left:380.819987px;}
.x97{left:384.119987px;}
.x94{left:388.949959px;}
.x9d{left:396.719987px;}
.xa3{left:400.049987px;}
.x76{left:401.550000px;}
.x4a{left:404.550000px;}
.xa7{left:415.349987px;}
.x5{left:419.850000px;}
.x84{left:430.050000px;}
.x51{left:437.249987px;}
.xa1{left:440.849987px;}
.xd{left:446.249987px;}
.xa5{left:447.749987px;}
.x7c{left:464.549987px;}
.x24{left:466.649959px;}
.x52{left:471.449959px;}
.x43{left:473.549987px;}
.x7f{left:492.300000px;}
.x70{left:499.049987px;}
.x91{left:500.550000px;}
.x9e{left:507.149987px;}
.x26{left:517.994987px;}
.x53{left:532.694987px;}
.x78{left:538.379987px;}
.x9f{left:556.949959px;}
.x79{left:582.749959px;}
.x5e{left:586.349959px;}
.x8d{left:593.249959px;}
.x8a{left:622.394987px;}
.x5f{left:629.624987px;}
.xa0{left:631.724987px;}
.x8b{left:632.849959px;}
.x8e{left:636.524987px;}
.x80{left:647.400000px;}
.x7b{left:670.124987px;}
.x8c{left:676.124987px;}
.x16{left:689.924987px;}
.x82{left:737.549919px;}
.xa{left:797.670000px;}
.x83{left:807.869987px;}
.x3{left:844.470000px;}
@media print{
.v1{vertical-align:-50.293333pt;}
.v8{vertical-align:-41.916955pt;}
.v4{vertical-align:-28.671472pt;}
.v6{vertical-align:-8.533333pt;}
.v0{vertical-align:0.000000pt;}
.v7{vertical-align:8.533333pt;}
.va{vertical-align:15.560496pt;}
.v5{vertical-align:28.441985pt;}
.v3{vertical-align:37.386667pt;}
.v9{vertical-align:40.509619pt;}
.v2{vertical-align:43.680000pt;}
.ls2f{letter-spacing:-2.340969pt;}
.ls27{letter-spacing:-2.215279pt;}
.ls29{letter-spacing:-2.179352pt;}
.ls28{letter-spacing:-2.052091pt;}
.ls25{letter-spacing:-1.166563pt;}
.ls7{letter-spacing:-0.821333pt;}
.ls32{letter-spacing:-0.512000pt;}
.ls4{letter-spacing:-0.490667pt;}
.ls6{letter-spacing:-0.330667pt;}
.ls2{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.085333pt;}
.ls26{letter-spacing:0.232002pt;}
.ls5{letter-spacing:0.245333pt;}
.ls31{letter-spacing:0.382272pt;}
.ls30{letter-spacing:0.384966pt;}
.ls13{letter-spacing:0.406176pt;}
.ls2d{letter-spacing:0.443056pt;}
.lsd{letter-spacing:0.448000pt;}
.lse{letter-spacing:0.480000pt;}
.ls1a{letter-spacing:0.512758pt;}
.ls1{letter-spacing:0.533333pt;}
.lsf{letter-spacing:0.586667pt;}
.ls1b{letter-spacing:0.641610pt;}
.ls14{letter-spacing:1.066667pt;}
.ls9{letter-spacing:1.120000pt;}
.ls2e{letter-spacing:1.600000pt;}
.ls8{letter-spacing:6.933333pt;}
.lsa{letter-spacing:14.400000pt;}
.ls24{letter-spacing:25.096514pt;}
.ls18{letter-spacing:25.776540pt;}
.ls10{letter-spacing:48.356025pt;}
.ls23{letter-spacing:73.911322pt;}
.ls0{letter-spacing:77.600000pt;}
.ls17{letter-spacing:118.048749pt;}
.ls11{letter-spacing:180.015931pt;}
.ls12{letter-spacing:181.970616pt;}
.ls1d{letter-spacing:233.526068pt;}
.ls19{letter-spacing:234.422201pt;}
.ls1c{letter-spacing:242.885086pt;}
.ls2a{letter-spacing:243.782810pt;}
.lsb{letter-spacing:246.603772pt;}
.lsc{letter-spacing:257.805866pt;}
.ls16{letter-spacing:258.637815pt;}
.ls15{letter-spacing:259.648591pt;}
.ls21{letter-spacing:282.511117pt;}
.ls22{letter-spacing:288.280303pt;}
.ls20{letter-spacing:299.487680pt;}
.ls2c{letter-spacing:320.084527pt;}
.ls1e{letter-spacing:343.306217pt;}
.ls2b{letter-spacing:343.950925pt;}
.ls1f{letter-spacing:470.456958pt;}
.ws3{word-spacing:-74.666667pt;}
.wsa{word-spacing:-54.762667pt;}
.ws9{word-spacing:-54.709333pt;}
.ws7{word-spacing:-53.642667pt;}
.ws6{word-spacing:-50.794667pt;}
.ws1e{word-spacing:-35.389765pt;}
.ws2c{word-spacing:-35.255084pt;}
.ws59{word-spacing:-35.190202pt;}
.ws24{word-spacing:-35.183995pt;}
.ws26{word-spacing:-35.183206pt;}
.ws1a{word-spacing:-35.070722pt;}
.wsc{word-spacing:-35.061354pt;}
.ws1f{word-spacing:-34.981720pt;}
.ws2e{word-spacing:-34.954754pt;}
.ws40{word-spacing:-34.289048pt;}
.ws16{word-spacing:-33.998648pt;}
.ws46{word-spacing:-22.649237pt;}
.ws53{word-spacing:-21.773966pt;}
.ws0{word-spacing:-21.333333pt;}
.ws19{word-spacing:-19.733333pt;}
.ws5{word-spacing:-18.912000pt;}
.ws2{word-spacing:-18.752000pt;}
.ws1{word-spacing:-18.666667pt;}
.ws20{word-spacing:-18.336000pt;}
.ws4{word-spacing:-18.176000pt;}
.ws4a{word-spacing:-17.684407pt;}
.ws1d{word-spacing:-12.000000pt;}
.ws31{word-spacing:-0.705474pt;}
.ws2a{word-spacing:-0.576622pt;}
.ws69{word-spacing:-0.506257pt;}
.ws12{word-spacing:-0.470040pt;}
.ws62{word-spacing:-0.448830pt;}
.ws35{word-spacing:-0.295203pt;}
.ws2d{word-spacing:-0.064217pt;}
.ws5a{word-spacing:-0.064099pt;}
.ws22{word-spacing:-0.064087pt;}
.ws1c{word-spacing:-0.063881pt;}
.wse{word-spacing:-0.063864pt;}
.ws2f{word-spacing:-0.063670pt;}
.ws11{word-spacing:-0.063201pt;}
.ws47{word-spacing:-0.062819pt;}
.ws15{word-spacing:-0.061928pt;}
.ws1b{word-spacing:-0.037294pt;}
.ws8{word-spacing:0.000000pt;}
.ws3b{word-spacing:1.988227pt;}
.ws3e{word-spacing:2.115488pt;}
.ws38{word-spacing:2.152078pt;}
.ws4c{word-spacing:2.277768pt;}
.ws3f{word-spacing:11.563229pt;}
.ws48{word-spacing:17.814396pt;}
.ws4b{word-spacing:19.440343pt;}
.ws57{word-spacing:26.338230pt;}
.ws5f{word-spacing:38.151686pt;}
.wsf{word-spacing:40.067687pt;}
.ws17{word-spacing:49.752788pt;}
.ws42{word-spacing:53.501176pt;}
.ws44{word-spacing:74.207598pt;}
.ws55{word-spacing:77.826451pt;}
.wsd{word-spacing:79.664007pt;}
.ws58{word-spacing:90.433506pt;}
.ws36{word-spacing:93.640260pt;}
.ws5b{word-spacing:94.742141pt;}
.ws32{word-spacing:96.844301pt;}
.ws29{word-spacing:97.613173pt;}
.ws30{word-spacing:101.075744pt;}
.ws18{word-spacing:101.190051pt;}
.ws3c{word-spacing:111.634032pt;}
.ws54{word-spacing:111.926323pt;}
.ws49{word-spacing:112.177217pt;}
.ws56{word-spacing:118.735502pt;}
.ws10{word-spacing:121.475521pt;}
.ws43{word-spacing:125.658345pt;}
.ws3d{word-spacing:150.451592pt;}
.ws2b{word-spacing:165.347714pt;}
.ws39{word-spacing:170.219498pt;}
.ws45{word-spacing:184.377979pt;}
.ws33{word-spacing:194.331246pt;}
.ws3a{word-spacing:202.660528pt;}
.ws28{word-spacing:255.274883pt;}
.ws25{word-spacing:256.411352pt;}
.ws27{word-spacing:257.651996pt;}
.ws23{word-spacing:258.793703pt;}
.wsb{word-spacing:262.558485pt;}
.ws4d{word-spacing:267.159990pt;}
.ws34{word-spacing:275.995173pt;}
.ws14{word-spacing:281.251431pt;}
.ws21{word-spacing:295.954825pt;}
.ws5c{word-spacing:339.984544pt;}
.ws4f{word-spacing:352.367316pt;}
.ws41{word-spacing:359.926659pt;}
.ws52{word-spacing:385.313703pt;}
.ws50{word-spacing:410.869520pt;}
.ws37{word-spacing:412.153669pt;}
.ws68{word-spacing:444.183569pt;}
.ws13{word-spacing:445.334462pt;}
.ws5e{word-spacing:574.534158pt;}
.ws67{word-spacing:579.832898pt;}
.ws4e{word-spacing:613.431299pt;}
.ws51{word-spacing:645.583223pt;}
.ws61{word-spacing:665.734754pt;}
.ws63{word-spacing:694.735875pt;}
.ws66{word-spacing:723.735318pt;}
.ws5d{word-spacing:797.307329pt;}
.ws65{word-spacing:830.135324pt;}
.ws60{word-spacing:951.869102pt;}
.ws64{word-spacing:1109.226812pt;}
._3b{margin-left:-540.071376pt;}
._7a{margin-left:-424.991364pt;}
._63{margin-left:-414.004672pt;}
._91{margin-left:-412.498141pt;}
._75{margin-left:-392.071565pt;}
._74{margin-left:-390.973212pt;}
._92{margin-left:-379.661641pt;}
._78{margin-left:-368.128696pt;}
._9b{margin-left:-339.578364pt;}
._9c{margin-left:-335.139755pt;}
._43{margin-left:-333.754502pt;}
._46{margin-left:-332.749034pt;}
._90{margin-left:-304.815192pt;}
._89{margin-left:-300.935496pt;}
._99{margin-left:-298.254150pt;}
._9a{margin-left:-293.018332pt;}
._7d{margin-left:-288.256567pt;}
._95{margin-left:-267.883521pt;}
._68{margin-left:-264.029925pt;}
._7f{margin-left:-262.368187pt;}
._5b{margin-left:-260.907165pt;}
._1d{margin-left:-243.270848pt;}
._18{margin-left:-241.465433pt;}
._6e{margin-left:-238.338340pt;}
._82{margin-left:-237.187876pt;}
._97{margin-left:-233.524742pt;}
._6d{margin-left:-228.057505pt;}
._66{margin-left:-225.382621pt;}
._71{margin-left:-224.480355pt;}
._44{margin-left:-222.692981pt;}
._47{margin-left:-221.682303pt;}
._8f{margin-left:-219.785927pt;}
._69{margin-left:-218.341287pt;}
._98{margin-left:-217.250846pt;}
._67{margin-left:-216.233748pt;}
._50{margin-left:-215.202998pt;}
._4d{margin-left:-213.662074pt;}
._12{margin-left:-211.357581pt;}
._62{margin-left:-210.337957pt;}
._5e{margin-left:-209.098742pt;}
._8b{margin-left:-207.615315pt;}
._1c{margin-left:-199.298101pt;}
._2a{margin-left:-197.763313pt;}
._3a{margin-left:-196.106930pt;}
._22{margin-left:-193.310955pt;}
._80{margin-left:-192.061339pt;}
._64{margin-left:-190.283902pt;}
._94{margin-left:-188.782568pt;}
._8e{margin-left:-187.778762pt;}
._24{margin-left:-186.729311pt;}
._8c{margin-left:-184.939494pt;}
._3c{margin-left:-183.569847pt;}
._8a{margin-left:-181.925075pt;}
._2c{margin-left:-180.342649pt;}
._42{margin-left:-178.562385pt;}
._8d{margin-left:-177.378714pt;}
._21{margin-left:-175.870835pt;}
._65{margin-left:-174.203806pt;}
._1a{margin-left:-173.077198pt;}
._23{margin-left:-169.032547pt;}
._38{margin-left:-168.115530pt;}
._2e{margin-left:-166.815517pt;}
._1e{margin-left:-164.448125pt;}
._2d{margin-left:-163.455627pt;}
._28{margin-left:-162.055926pt;}
._73{margin-left:-160.275188pt;}
._41{margin-left:-159.338185pt;}
._3d{margin-left:-157.431320pt;}
._2f{margin-left:-156.109624pt;}
._4b{margin-left:-154.957430pt;}
._5a{margin-left:-154.061297pt;}
._77{margin-left:-153.069990pt;}
._6c{margin-left:-151.414220pt;}
._4f{margin-left:-150.436469pt;}
._4c{margin-left:-149.413075pt;}
._76{margin-left:-147.977532pt;}
._87{margin-left:-146.146374pt;}
._6f{margin-left:-144.990554pt;}
._61{margin-left:-144.066467pt;}
._79{margin-left:-142.988195pt;}
._20{margin-left:-142.090049pt;}
._5d{margin-left:-140.262384pt;}
._70{margin-left:-138.926678pt;}
._58{margin-left:-134.701759pt;}
._15{margin-left:-133.545801pt;}
._14{margin-left:-132.654971pt;}
._72{margin-left:-131.754124pt;}
._9e{margin-left:-130.644912pt;}
._83{margin-left:-129.609286pt;}
._39{margin-left:-128.683462pt;}
._16{margin-left:-126.845380pt;}
._1b{margin-left:-125.843267pt;}
._30{margin-left:-124.117125pt;}
._17{margin-left:-121.845066pt;}
._85{margin-left:-120.892790pt;}
._11{margin-left:-119.914934pt;}
._32{margin-left:-118.874478pt;}
._6a{margin-left:-117.574532pt;}
._93{margin-left:-115.836703pt;}
._7c{margin-left:-114.089497pt;}
._7e{margin-left:-112.567050pt;}
._55{margin-left:-108.555261pt;}
._57{margin-left:-107.539028pt;}
._54{margin-left:-106.517530pt;}
._53{margin-left:-105.421304pt;}
._7b{margin-left:-103.901495pt;}
._52{margin-left:-102.658458pt;}
._56{margin-left:-99.328038pt;}
._3e{margin-left:-96.548343pt;}
._51{margin-left:-95.296855pt;}
._13{margin-left:-94.011928pt;}
._96{margin-left:-92.719164pt;}
._86{margin-left:-91.394429pt;}
._84{margin-left:-90.436555pt;}
._31{margin-left:-88.587107pt;}
._45{margin-left:-87.239648pt;}
._26{margin-left:-86.309392pt;}
._2b{margin-left:-85.313046pt;}
._27{margin-left:-83.315191pt;}
._33{margin-left:-81.783265pt;}
._29{margin-left:-79.319999pt;}
._6b{margin-left:-74.729116pt;}
._5f{margin-left:-72.007564pt;}
._1f{margin-left:-70.404762pt;}
._25{margin-left:-65.423275pt;}
._60{margin-left:-52.651745pt;}
._5c{margin-left:-51.562632pt;}
._19{margin-left:-47.896347pt;}
._9d{margin-left:-46.798428pt;}
._88{margin-left:-42.283137pt;}
._4e{margin-left:-4.330667pt;}
._37{margin-left:-3.221333pt;}
._c{margin-left:-2.133333pt;}
._0{margin-left:-1.088000pt;}
._1{width:0.976000pt;}
._2{width:2.085333pt;}
._81{width:3.029333pt;}
._f{width:4.181333pt;}
._e{width:5.568000pt;}
._10{width:6.570667pt;}
._a{width:7.776000pt;}
._b{width:8.773333pt;}
._4a{width:9.834667pt;}
._34{width:11.061333pt;}
._7{width:12.800000pt;}
._5{width:14.005333pt;}
._6{width:14.901333pt;}
._35{width:15.829333pt;}
._36{width:17.130667pt;}
._8{width:20.506667pt;}
._59{width:21.568000pt;}
._d{width:22.709333pt;}
._9{width:24.565333pt;}
._4{width:35.525333pt;}
._3{width:36.480000pt;}
._3f{width:46.400000pt;}
._40{width:47.813333pt;}
._49{width:138.432000pt;}
._48{width:149.866667pt;}
.fs2{font-size:5.333333pt;}
.fs18{font-size:36.423237pt;}
.fs1e{font-size:36.614633pt;}
.fsa{font-size:36.856904pt;}
.fse{font-size:37.149357pt;}
.fs8{font-size:37.189505pt;}
.fsd{font-size:37.294015pt;}
.fs13{font-size:37.364166pt;}
.fs20{font-size:37.434570pt;}
.fs1a{font-size:37.447870pt;}
.fs10{font-size:37.582687pt;}
.fs1{font-size:48.000000pt;}
.fs3{font-size:53.333333pt;}
.fs4{font-size:58.666667pt;}
.fsb{font-size:61.928321pt;}
.fs17{font-size:62.457283pt;}
.fs1c{font-size:62.819198pt;}
.fs9{font-size:63.200921pt;}
.fs1d{font-size:63.528743pt;}
.fs16{font-size:63.669862pt;}
.fsf{font-size:63.718979pt;}
.fs7{font-size:63.864033pt;}
.fsc{font-size:63.881096pt;}
.fs0{font-size:64.000000pt;}
.fs14{font-size:64.085985pt;}
.fs12{font-size:64.087422pt;}
.fs1f{font-size:64.098729pt;}
.fs19{font-size:64.161470pt;}
.fs15{font-size:64.216911pt;}
.fs11{font-size:64.462232pt;}
.fs6{font-size:74.666667pt;}
.fs1b{font-size:74.800000pt;}
.fs5{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y150{bottom:2.854905pt;}
.y79{bottom:3.282675pt;}
.y5f{bottom:3.282677pt;}
.yd4{bottom:3.282683pt;}
.y7b{bottom:3.282688pt;}
.y61{bottom:3.282699pt;}
.y7d{bottom:3.282702pt;}
.yd6{bottom:3.282727pt;}
.y92{bottom:3.320961pt;}
.y6a{bottom:3.320966pt;}
.yb8{bottom:3.320970pt;}
.y6c{bottom:3.320979pt;}
.y6e{bottom:3.320992pt;}
.yba{bottom:3.320997pt;}
.ybc{bottom:3.321024pt;}
.yde{bottom:3.333348pt;}
.y99{bottom:3.365174pt;}
.y9b{bottom:3.365206pt;}
.y2{bottom:3.466667pt;}
.y10e{bottom:3.682443pt;}
.y1d7{bottom:3.682461pt;}
.yfb{bottom:3.714276pt;}
.y1ae{bottom:3.714293pt;}
.yac{bottom:3.714328pt;}
.yc8{bottom:3.915927pt;}
.y89{bottom:3.947505pt;}
.ya0{bottom:3.947576pt;}
.yf3{bottom:4.161938pt;}
.ye6{bottom:4.161947pt;}
.yec{bottom:4.161948pt;}
.y4c{bottom:4.161952pt;}
.y46{bottom:4.161953pt;}
.yd0{bottom:4.161958pt;}
.y1a1{bottom:4.241567pt;}
.y38{bottom:4.274924pt;}
.y105{bottom:4.274926pt;}
.yea{bottom:4.274927pt;}
.y3d{bottom:4.274930pt;}
.ye4{bottom:4.274932pt;}
.ya{bottom:4.566667pt;}
.y52{bottom:4.831753pt;}
.y57{bottom:4.894888pt;}
.y1c9{bottom:4.915318pt;}
.y118{bottom:4.947288pt;}
.y192{bottom:4.947323pt;}
.y122{bottom:4.947358pt;}
.y3{bottom:5.066667pt;}
.y9{bottom:6.433333pt;}
.y14f{bottom:6.745029pt;}
.y1c5{bottom:6.825339pt;}
.y144{bottom:6.825340pt;}
.y13c{bottom:6.825343pt;}
.y41{bottom:6.825344pt;}
.y151{bottom:6.942774pt;}
.y44{bottom:6.942779pt;}
.y181{bottom:6.942784pt;}
.y173{bottom:6.994723pt;}
.y7f{bottom:7.291345pt;}
.y63{bottom:7.291349pt;}
.y81{bottom:7.291358pt;}
.yd8{bottom:7.291360pt;}
.y65{bottom:7.291371pt;}
.y83{bottom:7.291372pt;}
.yda{bottom:7.291405pt;}
.y94{bottom:7.376256pt;}
.y70{bottom:7.376263pt;}
.ybe{bottom:7.376271pt;}
.y72{bottom:7.376277pt;}
.y74{bottom:7.376290pt;}
.yc0{bottom:7.376298pt;}
.yc2{bottom:7.376325pt;}
.y169{bottom:7.500000pt;}
.y111{bottom:7.555516pt;}
.y1da{bottom:7.555520pt;}
.y1d9{bottom:7.555525pt;}
.y1dc{bottom:7.555531pt;}
.y165{bottom:7.560000pt;}
.y100{bottom:7.587206pt;}
.yfe{bottom:7.587210pt;}
.y1b3{bottom:7.587213pt;}
.y102{bottom:7.587215pt;}
.yb1{bottom:7.587219pt;}
.y1b1{bottom:7.587221pt;}
.y1b5{bottom:7.587229pt;}
.yaf{bottom:7.587237pt;}
.yb3{bottom:7.587253pt;}
.ycd{bottom:7.737038pt;}
.yca{bottom:7.737047pt;}
.ycc{bottom:7.737055pt;}
.y8c{bottom:7.768675pt;}
.ya9{bottom:7.768688pt;}
.ya3{bottom:7.768696pt;}
.ya7{bottom:7.768704pt;}
.y167{bottom:7.800000pt;}
.y6{bottom:8.000000pt;}
.y59{bottom:8.905433pt;}
.y55{bottom:8.905437pt;}
.y1d0{bottom:9.224287pt;}
.y1cd{bottom:9.224290pt;}
.y1d3{bottom:9.224298pt;}
.y11c{bottom:9.256140pt;}
.y199{bottom:9.256147pt;}
.y129{bottom:9.256153pt;}
.y196{bottom:9.256154pt;}
.y19c{bottom:9.256161pt;}
.y126{bottom:9.256168pt;}
.y12c{bottom:9.256181pt;}
.y184{bottom:9.334485pt;}
.y16d{bottom:9.334490pt;}
.y189{bottom:9.334494pt;}
.yb{bottom:10.400000pt;}
.y1a8{bottom:10.635916pt;}
.y1a5{bottom:10.635919pt;}
.y1ab{bottom:10.635927pt;}
.y156{bottom:10.859655pt;}
.y39{bottom:11.442792pt;}
.y106{bottom:11.442806pt;}
.ye5{bottom:11.442819pt;}
.yeb{bottom:11.442822pt;}
.y14c{bottom:11.442823pt;}
.y18d{bottom:11.442825pt;}
.y131{bottom:11.442851pt;}
.y134{bottom:11.442852pt;}
.y3e{bottom:11.442855pt;}
.ycb{bottom:14.906203pt;}
.ya5{bottom:14.937462pt;}
.y1c8{bottom:15.128981pt;}
.y117{bottom:15.160557pt;}
.y191{bottom:15.160591pt;}
.y121{bottom:15.160626pt;}
.ye1{bottom:15.872620pt;}
.y9d{bottom:15.905372pt;}
.y185{bottom:16.406111pt;}
.y1a0{bottom:16.579989pt;}
.y10f{bottom:17.079384pt;}
.y1d8{bottom:17.079401pt;}
.yfc{bottom:17.110823pt;}
.y1af{bottom:17.110841pt;}
.yad{bottom:17.110875pt;}
.y157{bottom:18.035369pt;}
.y5{bottom:18.173333pt;}
.y53{bottom:18.284710pt;}
.yc9{bottom:18.284745pt;}
.y8a{bottom:18.315932pt;}
.ya1{bottom:18.316003pt;}
.ye0{bottom:26.000015pt;}
.ydf{bottom:26.000034pt;}
.y9a{bottom:26.032739pt;}
.y9c{bottom:26.032803pt;}
.y7a{bottom:26.260586pt;}
.y60{bottom:26.260589pt;}
.yd5{bottom:26.260595pt;}
.y7c{bottom:26.260600pt;}
.y62{bottom:26.260610pt;}
.y7e{bottom:26.260613pt;}
.yd7{bottom:26.260639pt;}
.y93{bottom:26.439155pt;}
.y6b{bottom:26.439160pt;}
.yb9{bottom:26.439164pt;}
.y6d{bottom:26.439173pt;}
.y6f{bottom:26.439186pt;}
.ybb{bottom:26.439191pt;}
.ybd{bottom:26.439218pt;}
.y58{bottom:28.926752pt;}
.y80{bottom:30.238795pt;}
.y64{bottom:30.238798pt;}
.y82{bottom:30.238808pt;}
.yd9{bottom:30.238809pt;}
.y66{bottom:30.238821pt;}
.y84{bottom:30.238822pt;}
.ydb{bottom:30.238854pt;}
.y1cb{bottom:30.417225pt;}
.y11a{bottom:30.450117pt;}
.y194{bottom:30.450151pt;}
.y124{bottom:30.450186pt;}
.y95{bottom:30.495371pt;}
.y71{bottom:30.495378pt;}
.ybf{bottom:30.495386pt;}
.y73{bottom:30.495392pt;}
.y75{bottom:30.495406pt;}
.yc1{bottom:30.495413pt;}
.yc3{bottom:30.495440pt;}
.y110{bottom:30.507223pt;}
.yfd{bottom:30.507240pt;}
.y1b0{bottom:30.507257pt;}
.yae{bottom:30.507292pt;}
.y112{bottom:31.681635pt;}
.y1db{bottom:31.681637pt;}
.y101{bottom:31.681639pt;}
.y1b4{bottom:31.681641pt;}
.yff{bottom:31.681643pt;}
.y1b2{bottom:31.681647pt;}
.yb2{bottom:31.681648pt;}
.y103{bottom:31.681649pt;}
.yb0{bottom:31.681659pt;}
.y1b6{bottom:31.681664pt;}
.yb4{bottom:31.681693pt;}
.y8d{bottom:31.768629pt;}
.ya8{bottom:31.768654pt;}
.ya4{bottom:31.768663pt;}
.y54{bottom:31.768664pt;}
.yaa{bottom:31.768676pt;}
.y1a3{bottom:31.972537pt;}
.y8{bottom:32.000000pt;}
.y8b{bottom:32.685532pt;}
.ya2{bottom:32.685603pt;}
.y5a{bottom:32.938208pt;}
.y56{bottom:32.938213pt;}
.y1d1{bottom:33.163144pt;}
.y1ce{bottom:33.163148pt;}
.y1d4{bottom:33.163157pt;}
.y11d{bottom:33.194734pt;}
.y19a{bottom:33.194740pt;}
.y12a{bottom:33.194746pt;}
.y197{bottom:33.194748pt;}
.y19d{bottom:33.194755pt;}
.y127{bottom:33.194761pt;}
.y12d{bottom:33.194775pt;}
.y1a9{bottom:34.735628pt;}
.y1a6{bottom:34.735630pt;}
.ya6{bottom:38.938492pt;}
.y1ca{bottom:42.386917pt;}
.y119{bottom:42.418492pt;}
.y193{bottom:42.418527pt;}
.y123{bottom:42.418562pt;}
.y1a2{bottom:44.343560pt;}
.y11b{bottom:55.952023pt;}
.y1cc{bottom:55.952041pt;}
.y195{bottom:55.952058pt;}
.y125{bottom:55.952093pt;}
.y1d2{bottom:57.101212pt;}
.y1cf{bottom:57.101215pt;}
.y1d5{bottom:57.101224pt;}
.y11e{bottom:57.132801pt;}
.y19b{bottom:57.132815pt;}
.y198{bottom:57.132822pt;}
.y12b{bottom:57.132828pt;}
.y19e{bottom:57.132831pt;}
.y128{bottom:57.132843pt;}
.y12e{bottom:57.132861pt;}
.y1aa{bottom:58.866723pt;}
.y1a7{bottom:58.866726pt;}
.y1ac{bottom:58.866734pt;}
.y1a4{bottom:59.734782pt;}
.y163{bottom:85.900000pt;}
.y1e9{bottom:88.033333pt;}
.y1e0{bottom:92.033333pt;}
.y114{bottom:99.866667pt;}
.y162{bottom:110.700000pt;}
.y1e8{bottom:112.566667pt;}
.y16a{bottom:116.000000pt;}
.y1df{bottom:116.833333pt;}
.y168{bottom:118.933333pt;}
.y113{bottom:119.766667pt;}
.y161{bottom:135.493333pt;}
.y2f{bottom:136.293333pt;}
.y1e7{bottom:137.360000pt;}
.y90{bottom:140.026667pt;}
.y1de{bottom:141.640000pt;}
.y10d{bottom:151.066667pt;}
.y160{bottom:160.040000pt;}
.y2e{bottom:161.106667pt;}
.y1e6{bottom:162.160000pt;}
.y8f{bottom:164.560000pt;}
.y1dd{bottom:166.160000pt;}
.y10c{bottom:170.960000pt;}
.y15f{bottom:184.866667pt;}
.y88{bottom:185.466667pt;}
.y2d{bottom:185.933333pt;}
.y1e5{bottom:186.733333pt;}
.y1c7{bottom:187.066649pt;}
.y1d6{bottom:200.399982pt;}
.y10b{bottom:202.000000pt;}
.y10a{bottom:205.933333pt;}
.y8e{bottom:206.733333pt;}
.y15e{bottom:209.400000pt;}
.y2c{bottom:211.000000pt;}
.y1e4{bottom:211.533333pt;}
.y166{bottom:216.800000pt;}
.y1c6{bottom:220.333333pt;}
.y109{bottom:226.800000pt;}
.y108{bottom:230.733333pt;}
.y15d{bottom:234.200000pt;}
.y2b{bottom:235.533333pt;}
.y1e3{bottom:236.066667pt;}
.y87{bottom:243.000000pt;}
.y107{bottom:255.533333pt;}
.y15c{bottom:258.733333pt;}
.y2a{bottom:260.333333pt;}
.y1e2{bottom:260.866667pt;}
.y1c4{bottom:264.933315pt;}
.y86{bottom:267.533333pt;}
.y1c3{bottom:271.533333pt;}
.yfa{bottom:276.399982pt;}
.y15b{bottom:283.533333pt;}
.y29{bottom:285.133333pt;}
.y1e1{bottom:285.400000pt;}
.y1c2{bottom:292.133333pt;}
.y85{bottom:292.333333pt;}
.y104{bottom:292.399982pt;}
.y1c1{bottom:296.066667pt;}
.yf9{bottom:296.333333pt;}
.y15a{bottom:308.066667pt;}
.y28{bottom:310.200000pt;}
.y78{bottom:313.199964pt;}
.y164{bottom:320.000000pt;}
.y1c0{bottom:320.600000pt;}
.yf8{bottom:327.333297pt;}
.yf7{bottom:331.293333pt;}
.y159{bottom:332.893333pt;}
.y77{bottom:333.160000pt;}
.y27{bottom:335.026667pt;}
.y1be{bottom:341.466667pt;}
.y1bf{bottom:345.440000pt;}
.yf6{bottom:356.106667pt;}
.y158{bottom:357.706667pt;}
.y26{bottom:359.560000pt;}
.y76{bottom:366.773333pt;}
.y1bd{bottom:370.226667pt;}
.yf5{bottom:376.666630pt;}
.y155{bottom:378.533297pt;}
.yf4{bottom:380.626667pt;}
.y25{bottom:384.360000pt;}
.y69{bottom:387.599964pt;}
.y154{bottom:389.173333pt;}
.y1bc{bottom:394.760000pt;}
.yf2{bottom:401.466667pt;}
.yf1{bottom:405.440000pt;}
.y68{bottom:407.560000pt;}
.y24{bottom:408.893333pt;}
.y153{bottom:415.026667pt;}
.y1bb{bottom:415.866630pt;}
.y1ba{bottom:422.506667pt;}
.yf0{bottom:429.960000pt;}
.y23{bottom:433.693333pt;}
.y14e{bottom:436.133333pt;}
.y152{bottom:438.800000pt;}
.y67{bottom:440.093333pt;}
.y14d{bottom:442.760000pt;}
.y1b9{bottom:443.066630pt;}
.y1b8{bottom:449.693333pt;}
.yef{bottom:454.760000pt;}
.y22{bottom:458.226667pt;}
.y5e{bottom:460.933297pt;}
.y14b{bottom:463.333297pt;}
.y14a{bottom:467.293333pt;}
.y19f{bottom:470.266630pt;}
.y190{bottom:471.599964pt;}
.yee{bottom:479.600000pt;}
.y5d{bottom:480.933333pt;}
.y21{bottom:483.066667pt;}
.y1ad{bottom:484.933297pt;}
.y148{bottom:488.133333pt;}
.y149{bottom:492.133333pt;}
.y1b7{bottom:498.266630pt;}
.yed{bottom:504.133333pt;}
.y18f{bottom:504.933333pt;}
.y20{bottom:507.866667pt;}
.y146{bottom:512.933297pt;}
.y5c{bottom:514.533333pt;}
.y147{bottom:519.600000pt;}
.ye9{bottom:524.933297pt;}
.ye8{bottom:528.933333pt;}
.y1f{bottom:532.400000pt;}
.y5b{bottom:539.066667pt;}
.y143{bottom:540.399964pt;}
.y145{bottom:547.066667pt;}
.ye7{bottom:553.733333pt;}
.y18e{bottom:555.066667pt;}
.y1e{bottom:557.200000pt;}
.y51{bottom:559.866630pt;}
.y142{bottom:571.333333pt;}
.ydd{bottom:574.533297pt;}
.y18c{bottom:575.866630pt;}
.y18b{bottom:579.866667pt;}
.y50{bottom:581.200000pt;}
.y1d{bottom:581.733333pt;}
.ye3{bottom:586.533297pt;}
.ye2{bottom:590.533333pt;}
.y141{bottom:596.133333pt;}
.y18a{bottom:604.666667pt;}
.y1c{bottom:606.533333pt;}
.y4f{bottom:617.493333pt;}
.y140{bottom:620.973333pt;}
.yd3{bottom:621.733261pt;}
.y188{bottom:625.466594pt;}
.y1b{bottom:631.106667pt;}
.y187{bottom:634.840000pt;}
.ydc{bottom:641.773333pt;}
.y4e{bottom:642.293333pt;}
.y13f{bottom:645.506667pt;}
.y1a{bottom:655.893333pt;}
.y186{bottom:659.360000pt;}
.y4d{bottom:666.826667pt;}
.y13e{bottom:670.306667pt;}
.yd2{bottom:675.360000pt;}
.y183{bottom:680.133261pt;}
.y19{bottom:680.426667pt;}
.y4b{bottom:687.599928pt;}
.y182{bottom:689.506667pt;}
.y4a{bottom:691.626667pt;}
.y13d{bottom:694.840000pt;}
.ycf{bottom:695.866594pt;}
.yd1{bottom:699.893333pt;}
.y18{bottom:705.226667pt;}
.y180{bottom:710.266594pt;}
.y49{bottom:712.133261pt;}
.y13b{bottom:715.599928pt;}
.y48{bottom:716.173333pt;}
.y17f{bottom:716.960000pt;}
.yc7{bottom:720.666594pt;}
.yce{bottom:721.999928pt;}
.y13a{bottom:722.293333pt;}
.yc5{bottom:725.999928pt;}
.y17{bottom:730.026667pt;}
.y45{bottom:736.933261pt;}
.y17c{bottom:737.466594pt;}
.y17e{bottom:740.133261pt;}
.y47{bottom:740.960000pt;}
.yc6{bottom:742.040000pt;}
.y17d{bottom:744.173333pt;}
.y139{bottom:746.840000pt;}
.y16{bottom:754.560000pt;}
.y43{bottom:761.733261pt;}
.y138{bottom:767.599928pt;}
.y42{bottom:768.466667pt;}
.y17b{bottom:768.733333pt;}
.y137{bottom:771.666667pt;}
.yb7{bottom:774.266594pt;}
.y15{bottom:779.400000pt;}
.y40{bottom:786.533261pt;}
.y17a{bottom:789.466594pt;}
.y136{bottom:792.399928pt;}
.y3f{bottom:793.266667pt;}
.y179{bottom:793.533333pt;}
.yc4{bottom:794.333333pt;}
.y135{bottom:796.466667pt;}
.y14{bottom:803.933333pt;}
.y3c{bottom:813.999928pt;}
.y133{bottom:817.466594pt;}
.y3b{bottom:818.066667pt;}
.y132{bottom:821.533333pt;}
.yb6{bottom:823.066594pt;}
.yb5{bottom:827.133333pt;}
.y13{bottom:828.733333pt;}
.y130{bottom:842.266594pt;}
.y3a{bottom:842.600000pt;}
.y178{bottom:842.866667pt;}
.y12f{bottom:846.333333pt;}
.y9f{bottom:847.866594pt;}
.yab{bottom:849.199928pt;}
.y12{bottom:853.266667pt;}
.y37{bottom:863.333333pt;}
.y120{bottom:867.066594pt;}
.y36{bottom:867.400000pt;}
.y9e{bottom:869.266667pt;}
.y11{bottom:878.066667pt;}
.y177{bottom:888.399928pt;}
.y35{bottom:892.200000pt;}
.y176{bottom:895.133333pt;}
.y11f{bottom:900.466667pt;}
.y98{bottom:901.466594pt;}
.y10{bottom:902.866667pt;}
.y175{bottom:915.333333pt;}
.y34{bottom:916.773333pt;}
.y97{bottom:917.560000pt;}
.y174{bottom:919.426667pt;}
.yf{bottom:927.426667pt;}
.y172{bottom:940.399928pt;}
.y33{bottom:941.840000pt;}
.y116{bottom:944.666667pt;}
.y171{bottom:947.173333pt;}
.y91{bottom:948.666667pt;}
.ye{bottom:952.226667pt;}
.y32{bottom:966.626667pt;}
.y170{bottom:967.333333pt;}
.y96{bottom:968.760000pt;}
.y16f{bottom:971.426667pt;}
.yd{bottom:976.773333pt;}
.y115{bottom:978.106667pt;}
.y31{bottom:987.693333pt;}
.y16c{bottom:992.399928pt;}
.y30{bottom:997.040000pt;}
.y16e{bottom:997.733261pt;}
.yc{bottom:1001.560000pt;}
.y16b{bottom:1001.840000pt;}
.y7{bottom:1023.173333pt;}
.y4{bottom:1037.026667pt;}
.y1{bottom:1066.133333pt;}
.h6{height:14.206667pt;}
.h52{height:17.599826pt;}
.h2{height:18.400000pt;}
.h38{height:18.400135pt;}
.h37{height:18.400171pt;}
.h17{height:18.400207pt;}
.h5{height:19.500000pt;}
.h11{height:21.599978pt;}
.h3a{height:21.599996pt;}
.h36{height:21.600014pt;}
.h14{height:21.600051pt;}
.h47{height:22.399331pt;}
.h5d{height:24.000185pt;}
.h45{height:24.000203pt;}
.h15{height:24.000240pt;}
.h8{height:24.566667pt;}
.h4d{height:25.333333pt;}
.h4f{height:25.600000pt;}
.h50{height:26.399846pt;}
.h4a{height:29.599607pt;}
.h54{height:35.935260pt;}
.h1e{height:36.460063pt;}
.h13{height:36.499465pt;}
.h1b{height:36.602036pt;}
.h4c{height:36.753036pt;}
.h21{height:36.885352pt;}
.h32{height:44.000239pt;}
.h27{height:44.000275pt;}
.h26{height:45.599509pt;}
.h20{height:45.599545pt;}
.h30{height:45.599582pt;}
.h1d{height:46.398982pt;}
.h31{height:46.399018pt;}
.h4{height:47.742188pt;}
.h3c{height:47.999025pt;}
.h39{height:47.999043pt;}
.h5c{height:47.999061pt;}
.h2c{height:47.999098pt;}
.h23{height:50.401049pt;}
.h19{height:50.401085pt;}
.h2b{height:50.401122pt;}
.he{height:52.135417pt;}
.h7{height:58.351562pt;}
.h41{height:58.975453pt;}
.h1a{height:59.171113pt;}
.h2d{height:59.360895pt;}
.h35{height:59.362227pt;}
.h58{height:59.372700pt;}
.h3d{height:59.482168pt;}
.h18{height:60.779260pt;}
.h48{height:61.298408pt;}
.h55{height:61.622934pt;}
.h51{height:61.653608pt;}
.h53{height:62.318967pt;}
.h43{height:62.457399pt;}
.h42{height:62.488487pt;}
.h1f{height:62.505581pt;}
.h3b{height:62.647872pt;}
.h1c{height:62.664610pt;}
.h12{height:62.679055pt;}
.h24{height:62.695802pt;}
.h9{height:62.812500pt;}
.h2f{height:62.865597pt;}
.h34{height:62.867007pt;}
.h5b{height:62.878099pt;}
.h2e{height:62.896889pt;}
.h28{height:62.898300pt;}
.h59{height:62.909397pt;}
.h4b{height:62.970974pt;}
.h3f{height:62.994031pt;}
.h3e{height:63.025387pt;}
.h22{height:63.234679pt;}
.h3{height:64.500000pt;}
.h16{height:64.615021pt;}
.h46{height:65.170937pt;}
.h25{height:65.281325pt;}
.h29{height:65.365418pt;}
.h33{height:65.496348pt;}
.h5a{height:65.534582pt;}
.hd{height:73.244792pt;}
.hb{height:73.281250pt;}
.h4e{height:73.375586pt;}
.h40{height:74.400856pt;}
.h5e{height:74.400874pt;}
.h56{height:74.400892pt;}
.h44{height:74.400928pt;}
.hc{height:75.250000pt;}
.h49{height:76.828407pt;}
.h57{height:77.600209pt;}
.ha{height:86.000000pt;}
.hf{height:88.627917pt;}
.h2a{height:103.376627pt;}
.h10{height:110.667917pt;}
.h0{height:1122.400000pt;}
.h1{height:1122.666667pt;}
.w33{width:22.933333pt;}
.w34{width:23.200000pt;}
.w37{width:38.400931pt;}
.w1b{width:38.400935pt;}
.w20{width:38.400949pt;}
.w22{width:38.400967pt;}
.w3{width:39.500000pt;}
.w3f{width:39.999899pt;}
.w38{width:39.999917pt;}
.w25{width:41.599955pt;}
.w21{width:42.400100pt;}
.wc{width:45.599129pt;}
.wb{width:46.398322pt;}
.w17{width:46.398335pt;}
.w6{width:48.000000pt;}
.w1e{width:48.000282pt;}
.w2f{width:49.601379pt;}
.w23{width:50.400505pt;}
.w1d{width:51.999201pt;}
.w26{width:53.600004pt;}
.w42{width:53.600031pt;}
.w16{width:54.401657pt;}
.wd{width:54.401675pt;}
.w1a{width:54.401693pt;}
.w2e{width:55.998897pt;}
.w1c{width:57.601232pt;}
.wf{width:57.601237pt;}
.w27{width:61.601770pt;}
.w36{width:62.400472pt;}
.w28{width:62.401281pt;}
.w44{width:66.401214pt;}
.w35{width:66.401223pt;}
.w43{width:66.401242pt;}
.w3d{width:69.600841pt;}
.w4a{width:70.401766pt;}
.w3c{width:73.598904pt;}
.w49{width:74.400920pt;}
.w31{width:77.602860pt;}
.w24{width:81.598131pt;}
.w32{width:82.401741pt;}
.w13{width:90.397821pt;}
.w10{width:90.397826pt;}
.w11{width:92.000135pt;}
.w8{width:97.603914pt;}
.w7{width:98.398930pt;}
.w3b{width:100.003004pt;}
.we{width:105.600043pt;}
.w1f{width:105.600061pt;}
.w9{width:106.396954pt;}
.w19{width:109.604056pt;}
.w15{width:110.400110pt;}
.w2d{width:115.996494pt;}
.w40{width:117.600566pt;}
.w30{width:121.603249pt;}
.w3e{width:127.995993pt;}
.w18{width:134.394178pt;}
.w14{width:134.394192pt;}
.w2c{width:136.002664pt;}
.wa{width:138.400197pt;}
.w12{width:149.598929pt;}
.w2b{width:163.993680pt;}
.w41{width:170.398531pt;}
.w29{width:172.005800pt;}
.w39{width:195.997323pt;}
.w3a{width:204.003329pt;}
.w2a{width:208.007828pt;}
.w48{width:225.598297pt;}
.w45{width:247.998852pt;}
.w46{width:280.000606pt;}
.w47{width:317.592755pt;}
.w5{width:660.466667pt;}
.w2{width:746.640000pt;}
.w4{width:793.866655pt;}
.w0{width:793.866667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2a{left:2.417546pt;}
.x1{left:4.000000pt;}
.x6{left:7.733333pt;}
.x4d{left:10.393739pt;}
.x19{left:12.048887pt;}
.x72{left:13.396902pt;}
.x4c{left:14.690511pt;}
.x55{left:17.143172pt;}
.xb{left:18.666667pt;}
.x60{left:22.864215pt;}
.x4b{left:27.169478pt;}
.x85{left:28.667568pt;}
.x4{left:31.760000pt;}
.x25{left:35.700282pt;}
.x22{left:36.803079pt;}
.x38{left:37.912427pt;}
.x31{left:39.198700pt;}
.x32{left:40.091523pt;}
.x9{left:42.666667pt;}
.x28{left:44.386363pt;}
.x35{left:45.757286pt;}
.x30{left:47.235468pt;}
.x8{left:48.566667pt;}
.xa9{left:49.855762pt;}
.xa8{left:50.877278pt;}
.x64{left:51.908760pt;}
.x42{left:53.280017pt;}
.x9b{left:55.582098pt;}
.x2{left:56.566667pt;}
.x46{left:58.502475pt;}
.x93{left:60.719617pt;}
.xaa{left:62.049153pt;}
.x92{left:63.760545pt;}
.x48{left:65.426755pt;}
.x7a{left:67.576640pt;}
.x36{left:71.807488pt;}
.x37{left:72.701402pt;}
.x2b{left:74.365740pt;}
.x7{left:75.499988pt;}
.x45{left:77.350725pt;}
.x34{left:79.429527pt;}
.x17{left:80.399991pt;}
.x99{left:84.933324pt;}
.x18{left:86.987569pt;}
.x2d{left:87.967603pt;}
.xc{left:89.099988pt;}
.x90{left:90.255505pt;}
.x3c{left:91.226821pt;}
.x1b{left:94.266658pt;}
.x2c{left:95.672882pt;}
.x1d{left:97.314896pt;}
.x1f{left:99.066667pt;}
.x47{left:100.110451pt;}
.x15{left:104.033322pt;}
.x98{left:106.336888pt;}
.x77{left:110.569208pt;}
.x14{left:113.366655pt;}
.x3e{left:116.289117pt;}
.x95{left:117.249179pt;}
.x23{left:121.899988pt;}
.x41{left:123.104912pt;}
.x6d{left:125.871731pt;}
.x3d{left:127.840409pt;}
.x20{left:128.837064pt;}
.x54{left:133.099988pt;}
.x5c{left:136.133324pt;}
.x5d{left:138.533324pt;}
.x3a{left:140.666658pt;}
.x2f{left:143.866658pt;}
.x33{left:144.933324pt;}
.x9a{left:147.239988pt;}
.x67{left:148.666658pt;}
.x6c{left:152.884472pt;}
.x27{left:158.266649pt;}
.x9c{left:159.205712pt;}
.x6a{left:161.274527pt;}
.x40{left:165.933322pt;}
.x59{left:175.599982pt;}
.x63{left:177.666655pt;}
.x1a{left:178.733322pt;}
.x29{left:181.466667pt;}
.x89{left:185.084917pt;}
.x81{left:187.866649pt;}
.x4e{left:189.199982pt;}
.x87{left:190.266649pt;}
.x1c{left:191.799988pt;}
.x8f{left:192.937298pt;}
.x56{left:196.666649pt;}
.x65{left:197.666655pt;}
.x1e{left:200.599988pt;}
.x71{left:204.399982pt;}
.x86{left:206.199988pt;}
.x66{left:207.799988pt;}
.x4f{left:209.933322pt;}
.x6e{left:211.533322pt;}
.xf{left:213.133322pt;}
.xa6{left:215.118341pt;}
.x44{left:218.800000pt;}
.x3f{left:225.133322pt;}
.x88{left:228.599988pt;}
.x3b{left:232.599988pt;}
.x39{left:235.266655pt;}
.x21{left:237.399988pt;}
.x12{left:239.799988pt;}
.xab{left:241.133322pt;}
.x11{left:242.999988pt;}
.x6b{left:252.333322pt;}
.x68{left:255.026655pt;}
.x61{left:256.933315pt;}
.x73{left:260.359988pt;}
.x13{left:261.693322pt;}
.xa2{left:268.534776pt;}
.x74{left:271.333315pt;}
.x50{left:279.066649pt;}
.x5a{left:281.173322pt;}
.x57{left:282.800000pt;}
.xe{left:284.106655pt;}
.x10{left:285.959988pt;}
.x2e{left:287.039988pt;}
.xac{left:288.106655pt;}
.x7d{left:292.533333pt;}
.x7e{left:294.400000pt;}
.x96{left:301.466667pt;}
.xa4{left:307.840115pt;}
.x69{left:314.773322pt;}
.x75{left:320.906655pt;}
.x5b{left:324.106655pt;}
.x6f{left:327.599964pt;}
.x49{left:329.173322pt;}
.x58{left:330.773322pt;}
.x62{left:338.506655pt;}
.x97{left:341.439988pt;}
.x94{left:345.733297pt;}
.x9d{left:352.639988pt;}
.xa3{left:355.599988pt;}
.x76{left:356.933333pt;}
.x4a{left:359.600000pt;}
.xa7{left:369.199988pt;}
.x5{left:373.200000pt;}
.x84{left:382.266667pt;}
.x51{left:388.666655pt;}
.xa1{left:391.866655pt;}
.xd{left:396.666655pt;}
.xa5{left:397.999988pt;}
.x7c{left:412.933322pt;}
.x24{left:414.799964pt;}
.x52{left:419.066630pt;}
.x43{left:420.933322pt;}
.x7f{left:437.600000pt;}
.x70{left:443.599988pt;}
.x91{left:444.933333pt;}
.x9e{left:450.799988pt;}
.x26{left:460.439988pt;}
.x53{left:473.506655pt;}
.x78{left:478.559988pt;}
.x9f{left:495.066630pt;}
.x79{left:517.999964pt;}
.x5e{left:521.199964pt;}
.x8d{left:527.333297pt;}
.x8a{left:553.239988pt;}
.x5f{left:559.666655pt;}
.xa0{left:561.533322pt;}
.x8b{left:562.533297pt;}
.x8e{left:565.799988pt;}
.x80{left:575.466667pt;}
.x7b{left:595.666655pt;}
.x8c{left:600.999988pt;}
.x16{left:613.266655pt;}
.x82{left:655.599928pt;}
.xa{left:709.040000pt;}
.x83{left:718.106655pt;}
.x3{left:750.640000pt;}
}




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