
    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_369b2ca98a693ff92f3752f9.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.884277;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_505bdba9eda7b158831bfdac.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_d17bcf21d666181d98a55c70.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_cb297ba8af8cb22248eda2b2.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_2192a28750319161cd8759ba.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.432129;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_847eab5240804f6897920993.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.432129;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_7cae39ba32605f84db9e3e0a.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.112305;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_21eb3161fc2392bc5ecbba9d.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_e7b6eeb4fe32892fddf130c1.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.853027;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_e3fe86681b9d9e5ade3ca7fd.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.747559;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_1b2327a81ccb099b14f38aa0.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.432129;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_bd00edf1ff1076c95019f858.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.432129;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_c049e9e128fce670450109f0.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.432129;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_bd00edf1ff1076c95019f858.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_01af6c86885e231d11dac905.woff2')format("woff");}.fff{font-family:fff;line-height:0.694000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_13d064066b19eae7fdb084b6.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.893000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_364d6179c7aab00d73d62ab3.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_5469aa4626e643fc0be5169b.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.939000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_3997e4059a8cef1f02ce2133.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.939000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_ec31ea1c4e9f4a5ebf3e3b45.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_57bac8faea692016102df82e.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.741000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_aa41de280cb29466ecfd1abc.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_89f7d349279b165b0d565214.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.939000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url('chunks/assets/font_7771d2573f9e96ede302f1df.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.939000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19;src:url('chunks/assets/font_0a7ea510aa39fff42292a9b9.woff2')format("woff");}.ff19{font-family:ff19;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a;src:url('chunks/assets/font_abde8673c31afe6a9e3b4f67.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.939000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b;src:url('chunks/assets/font_f591b15517b52249204b65d7.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.927000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c;src:url('chunks/assets/font_d81a81329707d868ab82502f.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1d;src:url('chunks/assets/font_baabcb9ff6185faf3d355d2d.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.927000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1e;src:url('chunks/assets/font_20a9353ba01c4e20ecdddd67.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:0.939000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1f;src:url('chunks/assets/font_3ca9ad2854468d0ca45b02e6.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff20;src:url('chunks/assets/font_7e4f33c630df9ae058bba6ab.woff2')format("woff");}.ff20{font-family:ff20;line-height:0.741000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff21;src:url('chunks/assets/font_165f7931f6b6184d49c27214.woff2')format("woff");}.ff21{font-family:ff21;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff22;src:url('chunks/assets/font_13e907d45f55fc272058f1d0.woff2')format("woff");}.ff22{font-family:ff22;line-height:0.716000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff23;src:url('chunks/assets/font_c757400dbf6f08d328b25cc1.woff2')format("woff");}.ff23{font-family:ff23;line-height:0.740000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff24;src:url('chunks/assets/font_f0bd1e1f181f1e0bd23b2127.woff2')format("woff");}.ff24{font-family:ff24;line-height:0.692000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff25;src:url('chunks/assets/font_260f6cbaca1db0cdc5196d7a.woff2')format("woff");}.ff25{font-family:ff25;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff26;src:url('chunks/assets/font_d7f7a7abe56760c05e124523.woff2')format("woff");}.ff26{font-family:ff26;line-height:0.982910;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:ff27;src:url('chunks/assets/font_19dbdb15746d974c7ec93a9d.woff2')format("woff");}.ff27{font-family:ff27;line-height:0.685059;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:ff28;src:url('chunks/assets/font_e51c6b2cbb19a904d324b0ca.woff2')format("woff");}.ff28{font-family:ff28;line-height:0.982422;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:ff29;src:url('chunks/assets/font_9b4853b395ffa22a8db69f59.woff2')format("woff");}.ff29{font-family:ff29;line-height:1.432129;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:ff2a;src:url('chunks/assets/font_4edac3f08f846077b04f5d40.woff2')format("woff");}.ff2a{font-family:ff2a;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:ff2b;src:url('chunks/assets/font_ed9bd20211bd7679b0fa30ab.woff2')format("woff");}.ff2b{font-family:ff2b;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:ff2c;src:url('chunks/assets/font_de0b989f2ec776db18f87427.woff2')format("woff");}.ff2c{font-family:ff2c;line-height:0.910156;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:ff2d;src:url('chunks/assets/font_bf39ea9247994307c0791bbd.woff2')format("woff");}.ff2d{font-family:ff2d;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.000000,1.500000,-1.500000,0.000000,0,0);-ms-transform:matrix(0.000000,1.500000,-1.500000,0.000000,0,0);-webkit-transform:matrix(0.000000,1.500000,-1.500000,0.000000,0,0);}
.m4{transform:matrix(0.000009,-0.250000,0.250000,0.000009,0,0);-ms-transform:matrix(0.000009,-0.250000,0.250000,0.000009,0,0);-webkit-transform:matrix(0.000009,-0.250000,0.250000,0.000009,0,0);}
.m8{transform:matrix(0.000011,-0.250000,0.250000,0.000011,0,0);-ms-transform:matrix(0.000011,-0.250000,0.250000,0.000011,0,0);-webkit-transform:matrix(0.000011,-0.250000,0.250000,0.000011,0,0);}
.m9{transform:matrix(0.001173,-0.249997,0.249997,0.001173,0,0);-ms-transform:matrix(0.001173,-0.249997,0.249997,0.001173,0,0);-webkit-transform:matrix(0.001173,-0.249997,0.249997,0.001173,0,0);}
.m6{transform:matrix(0.150575,0.199567,-0.199567,0.150575,0,0);-ms-transform:matrix(0.150575,0.199567,-0.199567,0.150575,0,0);-webkit-transform:matrix(0.150575,0.199567,-0.199567,0.150575,0,0);}
.m7{transform:matrix(0.249465,0.016342,-0.016342,0.249465,0,0);-ms-transform:matrix(0.249465,0.016342,-0.016342,0.249465,0,0);-webkit-transform:matrix(0.249465,0.016342,-0.016342,0.249465,0,0);}
.m5{transform:matrix(0.249647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249647,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.249779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249779,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);}
.m3{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);}
.mb{transform:matrix(0.272565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272565,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.272570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272570,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);}
.v9{vertical-align:-64.608000px;}
.v8{vertical-align:-35.677320px;}
.v3{vertical-align:-33.120000px;}
.v5{vertical-align:-15.339840px;}
.va{vertical-align:-14.062500px;}
.v2{vertical-align:-9.360000px;}
.v0{vertical-align:0.000000px;}
.v7{vertical-align:1.007814px;}
.v6{vertical-align:3.107814px;}
.v4{vertical-align:9.360000px;}
.v1{vertical-align:33.120000px;}
.ls6{letter-spacing:-0.936000px;}
.ls19{letter-spacing:-0.720000px;}
.ls2d{letter-spacing:-0.360000px;}
.lsd{letter-spacing:-0.288000px;}
.ls22{letter-spacing:-0.223800px;}
.lsa{letter-spacing:-0.216000px;}
.ls4{letter-spacing:-0.144000px;}
.ls7{letter-spacing:-0.072000px;}
.ls14{letter-spacing:-0.045360px;}
.ls3{letter-spacing:0.000000px;}
.ls2a{letter-spacing:0.003213px;}
.lsb{letter-spacing:0.072000px;}
.ls2c{letter-spacing:0.100800px;}
.ls17{letter-spacing:0.120000px;}
.ls1{letter-spacing:0.144000px;}
.ls11{letter-spacing:0.152400px;}
.ls23{letter-spacing:0.181200px;}
.ls21{letter-spacing:0.181440px;}
.lsc{letter-spacing:0.216000px;}
.ls13{letter-spacing:0.223920px;}
.ls1c{letter-spacing:0.256200px;}
.ls1e{letter-spacing:0.269400px;}
.ls2{letter-spacing:0.288000px;}
.lsf{letter-spacing:0.336000px;}
.ls0{letter-spacing:0.360000px;}
.ls5{letter-spacing:0.504000px;}
.ls15{letter-spacing:0.648000px;}
.ls9{letter-spacing:0.720000px;}
.lse{letter-spacing:0.864000px;}
.ls16{letter-spacing:0.943920px;}
.ls20{letter-spacing:1.440000px;}
.ls18{letter-spacing:2.880000px;}
.ls1d{letter-spacing:4.320000px;}
.ls10{letter-spacing:7.200000px;}
.ls1b{letter-spacing:25.920000px;}
.ls1f{letter-spacing:33.120000px;}
.ls8{letter-spacing:33.240000px;}
.ls1a{letter-spacing:33.960000px;}
.ls12{letter-spacing:84.384000px;}
.ls26{letter-spacing:86.864754px;}
.ls27{letter-spacing:86.866554px;}
.ls29{letter-spacing:214.041557px;}
.ls24{letter-spacing:357.581153px;}
.ls25{letter-spacing:527.845846px;}
.ls28{letter-spacing:834.234557px;}
.ls2b{letter-spacing:1183.467403px;}
.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;}
}
.ws11{word-spacing:-72.000000px;}
.ws63{word-spacing:-20.416153px;}
.ws26{word-spacing:-19.908414px;}
.wsd{word-spacing:-18.864000px;}
.wsb{word-spacing:-18.720000px;}
.ws3{word-spacing:-18.504000px;}
.ws5{word-spacing:-18.288000px;}
.wsa{word-spacing:-18.216000px;}
.ws4{word-spacing:-18.144000px;}
.ws48{word-spacing:-18.116648px;}
.ws9{word-spacing:-18.072000px;}
.ws1{word-spacing:-18.000000px;}
.ws6{word-spacing:-17.928000px;}
.ws30{word-spacing:-17.918323px;}
.ws2{word-spacing:-17.856000px;}
.ws8{word-spacing:-17.784000px;}
.wsc{word-spacing:-17.712000px;}
.ws34{word-spacing:-17.519171px;}
.ws1c{word-spacing:-17.419925px;}
.wsf{word-spacing:-17.064000px;}
.ws62{word-spacing:-16.637483px;}
.ws12{word-spacing:-15.226440px;}
.ws68{word-spacing:-14.970240px;}
.ws18{word-spacing:-13.474905px;}
.ws13{word-spacing:-12.329400px;}
.ws15{word-spacing:-12.241200px;}
.wse{word-spacing:-12.212400px;}
.ws0{word-spacing:-12.060000px;}
.ws10{word-spacing:-12.014640px;}
.ws14{word-spacing:-11.836200px;}
.ws69{word-spacing:-11.700000px;}
.ws44{word-spacing:-10.805921px;}
.ws4c{word-spacing:-10.225591px;}
.ws5e{word-spacing:-8.676986px;}
.ws1f{word-spacing:-0.023236px;}
.ws20{word-spacing:-0.022942px;}
.ws31{word-spacing:-0.000451px;}
.ws39{word-spacing:-0.000344px;}
.ws7{word-spacing:0.000000px;}
.ws29{word-spacing:0.000859px;}
.ws3e{word-spacing:0.001002px;}
.ws27{word-spacing:0.001977px;}
.ws53{word-spacing:4.283417px;}
.ws5c{word-spacing:4.286319px;}
.ws56{word-spacing:4.310798px;}
.ws59{word-spacing:4.324392px;}
.ws4e{word-spacing:6.058651px;}
.ws4a{word-spacing:6.074629px;}
.ws46{word-spacing:6.085604px;}
.ws2b{word-spacing:9.076116px;}
.ws54{word-spacing:10.320681px;}
.ws5d{word-spacing:10.347264px;}
.ws57{word-spacing:10.404272px;}
.ws5a{word-spacing:10.427155px;}
.ws4f{word-spacing:14.610134px;}
.ws4b{word-spacing:14.642631px;}
.ws43{word-spacing:14.664845px;}
.ws47{word-spacing:14.668371px;}
.ws1d{word-spacing:24.390526px;}
.ws35{word-spacing:24.573725px;}
.ws23{word-spacing:24.708565px;}
.ws66{word-spacing:27.615052px;}
.ws2f{word-spacing:31.836750px;}
.ws52{word-spacing:34.206169px;}
.ws5b{word-spacing:34.224534px;}
.ws2e{word-spacing:35.012189px;}
.ws40{word-spacing:35.809432px;}
.ws3d{word-spacing:39.385631px;}
.ws36{word-spacing:43.761816px;}
.ws1e{word-spacing:43.864443px;}
.ws1b{word-spacing:43.864944px;}
.ws38{word-spacing:48.130072px;}
.ws49{word-spacing:48.442477px;}
.ws45{word-spacing:48.531167px;}
.ws3b{word-spacing:61.209102px;}
.ws2c{word-spacing:61.211928px;}
.ws55{word-spacing:68.851697px;}
.ws58{word-spacing:69.000033px;}
.ws42{word-spacing:84.289810px;}
.ws4d{word-spacing:96.694095px;}
.ws41{word-spacing:97.064596px;}
.ws32{word-spacing:102.073591px;}
.ws2a{word-spacing:113.411068px;}
.ws3f{word-spacing:113.413216px;}
.ws3a{word-spacing:113.413574px;}
.ws28{word-spacing:136.094359px;}
.ws24{word-spacing:143.754367px;}
.ws25{word-spacing:173.365257px;}
.ws33{word-spacing:209.805272px;}
.ws17{word-spacing:214.758900px;}
.ws16{word-spacing:245.416769px;}
.ws21{word-spacing:253.581138px;}
.ws2d{word-spacing:428.938842px;}
.ws3c{word-spacing:433.312441px;}
.ws37{word-spacing:442.054125px;}
.ws1a{word-spacing:507.294548px;}
.ws19{word-spacing:507.296210px;}
.ws67{word-spacing:736.258252px;}
.ws22{word-spacing:753.931502px;}
.ws65{word-spacing:853.821152px;}
.ws64{word-spacing:1169.702286px;}
.ws61{word-spacing:1552.309500px;}
.ws60{word-spacing:1556.623500px;}
.ws50{word-spacing:1714.794600px;}
.ws51{word-spacing:1714.795800px;}
.ws5f{word-spacing:2305.186600px;}
._37{margin-left:-3073.547063px;}
._31{margin-left:-485.866681px;}
._32{margin-left:-477.124997px;}
._2e{margin-left:-472.751398px;}
._26{margin-left:-458.811422px;}
._2d{margin-left:-7.950046px;}
._27{margin-left:-5.964694px;}
._30{margin-left:-4.805546px;}
._1b{margin-left:-2.496000px;}
._0{margin-left:-1.428000px;}
._1{width:1.596000px;}
._9{width:3.600000px;}
._13{width:4.764000px;}
._1a{width:5.928000px;}
._6{width:7.128000px;}
._8{width:8.376000px;}
._7{width:9.564000px;}
._2{width:10.728000px;}
._3{width:11.940000px;}
._a{width:13.320000px;}
._b{width:14.892000px;}
._5{width:16.176000px;}
._c{width:19.584000px;}
._19{width:21.384000px;}
._17{width:22.512000px;}
._1c{width:23.820000px;}
._18{width:24.828000px;}
._4{width:25.848000px;}
._11{width:27.552000px;}
._12{width:29.172000px;}
._16{width:30.636000px;}
._14{width:31.968000px;}
._15{width:32.976000px;}
._f{width:34.416000px;}
._10{width:35.688000px;}
._d{width:36.768000px;}
._e{width:38.148000px;}
._1d{width:39.948000px;}
._20{width:41.232000px;}
._2f{width:42.999142px;}
._23{width:45.864000px;}
._22{width:46.932000px;}
._1f{width:48.096000px;}
._1e{width:49.524000px;}
._35{width:51.173205px;}
._21{width:53.928000px;}
._2a{width:57.358804px;}
._28{width:60.326642px;}
._24{width:64.296000px;}
._34{width:72.605050px;}
._2c{width:84.697411px;}
._36{width:94.637985px;}
._33{width:133.413012px;}
._2b{width:135.680854px;}
._25{width:309.355622px;}
._29{width:476.470254px;}
.fc3{color:rgb(0,32,96);}
.fc1{color:rgb(0,0,255);}
.fc2{color:rgb(35,31,32);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:10.055340px;}
.fs42{font-size:26.153280px;}
.fs44{font-size:26.248320px;}
.fs3e{font-size:29.699460px;}
.fs37{font-size:30.814980px;}
.fs3f{font-size:30.832080px;}
.fs39{font-size:31.005060px;}
.fs3b{font-size:31.069620px;}
.fs41{font-size:31.212180px;}
.fse{font-size:31.330740px;}
.fs45{font-size:31.413600px;}
.fs25{font-size:31.508280px;}
.fs3d{font-size:32.202300px;}
.fs22{font-size:32.227320px;}
.fs43{font-size:34.425780px;}
.fs1b{font-size:35.806860px;}
.fs20{font-size:35.807940px;}
.fs6{font-size:35.886000px;}
.fs32{font-size:36.782700px;}
.fs31{font-size:37.140300px;}
.fs2e{font-size:37.473000px;}
.fs2a{font-size:38.870220px;}
.fs1d{font-size:39.386760px;}
.fs38{font-size:42.794040px;}
.fs40{font-size:42.817800px;}
.fs19{font-size:42.967080px;}
.fs3a{font-size:43.057980px;}
.fs3c{font-size:43.147680px;}
.fs34{font-size:43.538640px;}
.fs2f{font-size:43.637940px;}
.fs27{font-size:43.705860px;}
.fs2c{font-size:43.717440px;}
.fs2{font-size:48.240000px;}
.fsc{font-size:50.128500px;}
.fs23{font-size:50.421060px;}
.fs7{font-size:53.899620px;}
.fsf{font-size:56.393220px;}
.fs48{font-size:59.847060px;}
.fs3{font-size:60.000000px;}
.fs35{font-size:60.464400px;}
.fs30{font-size:60.602400px;}
.fs28{font-size:60.696600px;}
.fs2d{font-size:60.712200px;}
.fsd{font-size:62.661600px;}
.fs24{font-size:63.018600px;}
.fs4d{font-size:63.528600px;}
.fs21{font-size:64.454400px;}
.fs29{font-size:65.167800px;}
.fs0{font-size:66.240000px;}
.fs5{font-size:67.375200px;}
.fs17{font-size:71.613000px;}
.fs1a{font-size:71.613601px;}
.fs1f{font-size:71.616000px;}
.fs1{font-size:72.000000px;}
.fs49{font-size:73.439400px;}
.fs1c{font-size:78.775200px;}
.fs4a{font-size:80.114400px;}
.fs4e{font-size:84.240000px;}
.fs4c{font-size:85.378200px;}
.fs18{font-size:85.936200px;}
.fs47{font-size:87.279000px;}
.fsb{font-size:87.726000px;}
.fs15{font-size:89.194800px;}
.fs26{font-size:91.046400px;}
.fs4{font-size:94.325400px;}
.fs36{font-size:95.038800px;}
.fs9{font-size:97.018200px;}
.fs2b{font-size:97.753800px;}
.fs1e{font-size:107.421600px;}
.fsa{font-size:107.799000px;}
.fs33{font-size:108.614400px;}
.fs46{font-size:112.213800px;}
.fs4b{font-size:128.069400px;}
.fs13{font-size:130.747200px;}
.fs11{font-size:141.648620px;}
.fs12{font-size:141.650380px;}
.fs16{font-size:174.339000px;}
.fs10{font-size:174.344400px;}
.fs14{font-size:178.389600px;}
.y0{bottom:0.000000px;}
.y1b2{bottom:0.359766px;}
.y1a5{bottom:0.659766px;}
.yd6{bottom:1.165511px;}
.y1f8{bottom:3.595800px;}
.y200{bottom:4.680000px;}
.y120{bottom:4.914750px;}
.y197{bottom:5.023500px;}
.ybd{bottom:5.762687px;}
.yad{bottom:5.762700px;}
.y88{bottom:6.695205px;}
.yaf{bottom:6.716592px;}
.ybc{bottom:7.129092px;}
.y1e9{bottom:8.106352px;}
.y1b4{bottom:9.227340px;}
.y1a7{bottom:9.509175px;}
.yd5{bottom:10.084646px;}
.y15a{bottom:10.971090px;}
.y145{bottom:11.310945px;}
.y129{bottom:11.394720px;}
.y1ef{bottom:13.931798px;}
.y1ed{bottom:13.931835px;}
.y135{bottom:18.591090px;}
.y143{bottom:21.246600px;}
.y1b5{bottom:22.173600px;}
.y1a8{bottom:22.428000px;}
.y15c{bottom:23.448600px;}
.y147{bottom:23.786100px;}
.y1f6{bottom:23.941950px;}
.y87{bottom:24.173655px;}
.yae{bottom:25.674600px;}
.ybb{bottom:26.086500px;}
.y11f{bottom:30.340950px;}
.y89{bottom:35.048670px;}
.y1b6{bottom:35.119950px;}
.y1a9{bottom:35.346750px;}
.y134{bottom:36.592890px;}
.yb3{bottom:38.746950px;}
.yc0{bottom:39.655350px;}
.yb7{bottom:39.655500px;}
.y15d{bottom:41.665500px;}
.y148{bottom:41.997600px;}
.y1f5{bottom:44.286300px;}
.y137{bottom:44.649990px;}
.y86{bottom:45.751905px;}
.y1b7{bottom:48.065700px;}
.y1aa{bottom:48.265500px;}
.y12f{bottom:51.324450px;}
.yb5{bottom:53.213700px;}
.y133{bottom:55.357590px;}
.y2{bottom:57.600000px;}
.yc7{bottom:58.066950px;}
.y15e{bottom:59.881050px;}
.y149{bottom:60.209250px;}
.y1b8{bottom:61.011900px;}
.y1ab{bottom:61.184250px;}
.y136{bottom:63.414090px;}
.y1f4{bottom:64.630650px;}
.yb1{bottom:66.311700px;}
.y142{bottom:66.318150px;}
.y127{bottom:66.996150px;}
.y8b{bottom:67.112670px;}
.y85{bottom:67.330155px;}
.y1c1{bottom:67.735350px;}
.y1c3{bottom:67.735500px;}
.y125{bottom:68.899200px;}
.y1e3{bottom:70.576200px;}
.y1e5{bottom:70.576350px;}
.y1b9{bottom:73.958250px;}
.y1ac{bottom:74.103000px;}
.y132{bottom:74.122290px;}
.yc6{bottom:77.071200px;}
.y1{bottom:77.760000px;}
.y15f{bottom:78.097800px;}
.y1f9{bottom:78.330300px;}
.y14a{bottom:78.420750px;}
.yd4{bottom:78.771750px;}
.y126{bottom:79.641195px;}
.yba{bottom:84.771900px;}
.y1f7{bottom:84.977250px;}
.y1ba{bottom:86.903850px;}
.y1ad{bottom:87.021150px;}
.y124{bottom:93.158250px;}
.y160{bottom:96.314700px;}
.y14b{bottom:96.632850px;}
.yc5{bottom:97.033500px;}
.y1bb{bottom:99.850200px;}
.y1ae{bottom:99.940500px;}
.y12e{bottom:104.527050px;}
.y130{bottom:112.504650px;}
.y1bc{bottom:112.796550px;}
.y1af{bottom:112.858650px;}
.y141{bottom:114.254850px;}
.y161{bottom:114.530850px;}
.y70{bottom:114.840000px;}
.y14c{bottom:114.844950px;}
.y46{bottom:115.560000px;}
.yc4{bottom:116.845800px;}
.yd2{bottom:117.998250px;}
.y131{bottom:121.457190px;}
.y238{bottom:122.580000px;}
.yb4{bottom:124.608450px;}
.y1bd{bottom:125.742150px;}
.y1b0{bottom:125.777400px;}
.y82{bottom:127.973100px;}
.ya7{bottom:127.973400px;}
.yb9{bottom:129.888450px;}
.y22{bottom:132.660000px;}
.y162{bottom:132.747000px;}
.y14d{bottom:133.056450px;}
.yb2{bottom:135.100176px;}
.ybf{bottom:135.924900px;}
.y1be{bottom:138.688500px;}
.y1b1{bottom:138.696750px;}
.y237{bottom:143.280000px;}
.y138{bottom:143.486700px;}
.y139{bottom:143.523614px;}
.y13a{bottom:143.610333px;}
.y6f{bottom:145.980000px;}
.y1a6{bottom:146.447400px;}
.y1b3{bottom:146.456250px;}
.y45{bottom:146.520000px;}
.y93{bottom:147.660270px;}
.y163{bottom:150.964500px;}
.y14e{bottom:151.269000px;}
.yc1{bottom:154.320000px;}
.y1ee{bottom:157.612500px;}
.y12d{bottom:157.729650px;}
.y1e0{bottom:161.836350px;}
.y21{bottom:163.620000px;}
.y236{bottom:163.980000px;}
.y80{bottom:167.030550px;}
.y164{bottom:169.180500px;}
.y91{bottom:169.238670px;}
.y14f{bottom:169.480500px;}
.yca{bottom:171.676500px;}
.y13b{bottom:174.003000px;}
.yc2{bottom:174.438750px;}
.yb8{bottom:175.005000px;}
.y6e{bottom:176.940000px;}
.y44{bottom:177.660000px;}
.y1c2{bottom:180.313950px;}
.y1e4{bottom:180.396300px;}
.y235{bottom:184.680000px;}
.y165{bottom:187.396500px;}
.y150{bottom:187.692000px;}
.y7f{bottom:188.605950px;}
.y90{bottom:190.814670px;}
.y1e2{bottom:191.522550px;}
.y1c0{bottom:191.719800px;}
.yc3{bottom:193.650450px;}
.y20{bottom:194.760000px;}
.y234{bottom:205.380000px;}
.y166{bottom:205.614000px;}
.y151{bottom:205.903500px;}
.y140{bottom:206.394150px;}
.yb0{bottom:208.075092px;}
.y6d{bottom:208.110000px;}
.y75{bottom:208.290000px;}
.y43{bottom:208.650000px;}
.y12c{bottom:209.319750px;}
.y7e{bottom:210.182550px;}
.y83{bottom:212.059200px;}
.y8f{bottom:212.390670px;}
.ybe{bottom:212.599500px;}
.y15b{bottom:216.543000px;}
.y146{bottom:216.831000px;}
.y8c{bottom:220.037670px;}
.y8a{bottom:220.381170px;}
.y84{bottom:222.848655px;}
.y98{bottom:222.947970px;}
.y96{bottom:223.190970px;}
.y128{bottom:223.280934px;}
.yb6{bottom:224.550000px;}
.y1f{bottom:225.750000px;}
.y233{bottom:226.110000px;}
.y94{bottom:226.919970px;}
.y81{bottom:231.760800px;}
.y92{bottom:233.969520px;}
.yd1{bottom:235.676700px;}
.y6c{bottom:239.070000px;}
.y42{bottom:239.790000px;}
.y232{bottom:246.810000px;}
.y155{bottom:251.910900px;}
.y13f{bottom:253.270950px;}
.y1e{bottom:256.710000px;}
.y1df{bottom:258.249450px;}
.y16a{bottom:259.160250px;}
.y16c{bottom:259.160400px;}
.y12b{bottom:262.522950px;}
.yc9{bottom:265.726500px;}
.y231{bottom:267.510000px;}
.y6b{bottom:270.210000px;}
.y41{bottom:270.750000px;}
.y7d{bottom:285.720450px;}
.y1d{bottom:287.850000px;}
.y230{bottom:288.210000px;}
.y122{bottom:291.434700px;}
.y167{bottom:298.395000px;}
.y6a{bottom:301.170000px;}
.y123{bottom:301.281960px;}
.y1e1{bottom:301.669500px;}
.y40{bottom:301.710000px;}
.y1eb{bottom:301.992000px;}
.y1bf{bottom:304.633500px;}
.y152{bottom:305.973000px;}
.y13e{bottom:308.539500px;}
.y22f{bottom:308.910000px;}
.y121{bottom:314.367750px;}
.y12a{bottom:317.229000px;}
.y1f3{bottom:318.063750px;}
.y1c{bottom:318.810000px;}
.y159{bottom:322.711500px;}
.y144{bottom:323.311500px;}
.y1e7{bottom:324.657000px;}
.y22e{bottom:329.610000px;}
.y69{bottom:332.310000px;}
.y3f{bottom:332.850000px;}
.y13c{bottom:335.451000px;}
.y1f2{bottom:339.245400px;}
.y13d{bottom:343.329000px;}
.y1b{bottom:349.950000px;}
.y22d{bottom:350.310000px;}
.y1de{bottom:355.866000px;}
.y1f1{bottom:358.456500px;}
.y68{bottom:363.270000px;}
.y3e{bottom:363.810000px;}
.y22c{bottom:371.010000px;}
.y1e8{bottom:378.423000px;}
.y1a{bottom:380.910000px;}
.y198{bottom:381.900000px;}
.y1c8{bottom:382.137000px;}
.y107{bottom:385.234500px;}
.y117{bottom:386.754030px;}
.y10f{bottom:386.863500px;}
.y156{bottom:387.798000px;}
.yab{bottom:388.029450px;}
.y16b{bottom:390.164250px;}
.y19a{bottom:390.696000px;}
.y1ca{bottom:390.936000px;}
.y22b{bottom:391.710000px;}
.yfe{bottom:392.430855px;}
.y67{bottom:394.410000px;}
.y3d{bottom:394.950000px;}
.yd3{bottom:398.501250px;}
.y154{bottom:401.565150px;}
.y169{bottom:403.436850px;}
.y19b{bottom:403.534500px;}
.y1cb{bottom:403.783500px;}
.yfd{bottom:410.432655px;}
.y9c{bottom:411.536460px;}
.y19{bottom:412.050000px;}
.y116{bottom:412.180830px;}
.y22a{bottom:412.410000px;}
.y19c{bottom:416.374500px;}
.y1cc{bottom:416.631000px;}
.y100{bottom:418.489155px;}
.y7b{bottom:419.032500px;}
.y1dc{bottom:419.448750px;}
.y66{bottom:425.370000px;}
.y73{bottom:425.550000px;}
.y3c{bottom:425.910000px;}
.y10e{bottom:428.294550px;}
.y1d6{bottom:428.299500px;}
.yfc{bottom:429.197355px;}
.y19d{bottom:429.214500px;}
.y1cd{bottom:429.477000px;}
.y11e{bottom:430.115700px;}
.y229{bottom:433.110000px;}
.y25b{bottom:436.530000px;}
.yff{bottom:437.253855px;}
.y1d5{bottom:441.199500px;}
.y19e{bottom:442.054500px;}
.y1ce{bottom:442.323000px;}
.y18{bottom:443.055000px;}
.yaa{bottom:445.273200px;}
.y118{bottom:445.729500px;}
.yfb{bottom:447.962055px;}
.y114{bottom:451.846500px;}
.y1c6{bottom:452.276400px;}
.y228{bottom:453.855000px;}
.y19f{bottom:454.893000px;}
.y1cf{bottom:455.170500px;}
.ycb{bottom:456.372000px;}
.y65{bottom:456.555000px;}
.ya0{bottom:456.685305px;}
.y72{bottom:456.735000px;}
.y3b{bottom:457.095000px;}
.y25a{bottom:457.275000px;}
.y9a{bottom:458.929470px;}
.y115{bottom:462.589080px;}
.y1a0{bottom:467.733000px;}
.y10d{bottom:467.902800px;}
.y9f{bottom:468.012060px;}
.y1d0{bottom:468.018000px;}
.y158{bottom:468.442500px;}
.y17{bottom:474.195000px;}
.y227{bottom:474.555000px;}
.y113{bottom:476.106000px;}
.y259{bottom:477.975000px;}
.y157{bottom:480.004500px;}
.y1a1{bottom:480.573000px;}
.y1d1{bottom:480.864000px;}
.y11d{bottom:484.347750px;}
.y8e{bottom:485.426670px;}
.yf9{bottom:486.345000px;}
.y64{bottom:487.515000px;}
.y3a{bottom:488.055000px;}
.ya1{bottom:491.404455px;}
.y1a2{bottom:493.413000px;}
.y1d2{bottom:493.711500px;}
.y226{bottom:495.255000px;}
.yfa{bottom:495.296955px;}
.y258{bottom:498.675000px;}
.ya9{bottom:499.735500px;}
.y9b{bottom:501.805410px;}
.yd7{bottom:504.636000px;}
.y16{bottom:505.155000px;}
.y1a3{bottom:506.253000px;}
.y1d3{bottom:506.557500px;}
.y10c{bottom:509.178600px;}
.y7c{bottom:509.874450px;}
.y225{bottom:515.955000px;}
.y104{bottom:517.326000px;}
.y105{bottom:517.363500px;}
.y106{bottom:517.449633px;}
.y63{bottom:518.295000px;}
.yd0{bottom:518.552700px;}
.ya3{bottom:519.038505px;}
.y1a4{bottom:519.093000px;}
.y39{bottom:519.195000px;}
.y257{bottom:519.375000px;}
.y1d4{bottom:519.405000px;}
.y9e{bottom:524.898360px;}
.y199{bottom:526.797000px;}
.y1c9{bottom:527.113500px;}
.y168{bottom:534.831000px;}
.y15{bottom:536.295000px;}
.y224{bottom:536.655000px;}
.y11c{bottom:537.134250px;}
.y153{bottom:537.856500px;}
.y1dd{bottom:539.800950px;}
.y256{bottom:540.075000px;}
.y1d9{bottom:544.031400px;}
.y95{bottom:545.614470px;}
.y101{bottom:547.843500px;}
.y62{bottom:549.615000px;}
.y38{bottom:550.155000px;}
.y10b{bottom:550.880400px;}
.y1db{bottom:551.994300px;}
.y1c7{bottom:556.106850px;}
.y223{bottom:557.355000px;}
.yd8{bottom:559.517850px;}
.ya8{bottom:559.537500px;}
.y9d{bottom:559.945110px;}
.y255{bottom:560.775000px;}
.y1f0{bottom:562.594500px;}
.y97{bottom:563.179470px;}
.y1c5{bottom:566.626200px;}
.y14{bottom:567.255000px;}
.ya2{bottom:571.681455px;}
.y222{bottom:578.055000px;}
.y61{bottom:580.575000px;}
.y37{bottom:581.295000px;}
.y254{bottom:581.475000px;}
.y11b{bottom:590.752800px;}
.y10a{bottom:591.095100px;}
.y13{bottom:598.395000px;}
.y221{bottom:598.755000px;}
.y119{bottom:602.014282px;}
.y253{bottom:602.175000px;}
.y60{bottom:611.715000px;}
.y4c{bottom:611.895000px;}
.y36{bottom:612.255000px;}
.y196{bottom:615.994500px;}
.ya4{bottom:616.021755px;}
.y182{bottom:617.343000px;}
.y16d{bottom:617.400000px;}
.y99{bottom:618.700470px;}
.y220{bottom:619.455000px;}
.y252{bottom:622.875000px;}
.y12{bottom:629.355000px;}
.y184{bottom:629.770500px;}
.y16f{bottom:629.856000px;}
.y109{bottom:632.167050px;}
.ycf{bottom:639.485550px;}
.y1d8{bottom:640.095300px;}
.y21f{bottom:640.155000px;}
.y5f{bottom:642.675000px;}
.y4b{bottom:643.035000px;}
.y35{bottom:643.395000px;}
.y251{bottom:643.575000px;}
.y11a{bottom:643.956000px;}
.y185{bottom:647.913000px;}
.y170{bottom:648.039000px;}
.ya6{bottom:648.388980px;}
.ya5{bottom:653.548155px;}
.y8d{bottom:659.035170px;}
.y11{bottom:660.495000px;}
.y21e{bottom:660.855000px;}
.y250{bottom:664.275000px;}
.y111{bottom:665.900850px;}
.y186{bottom:666.054000px;}
.y171{bottom:666.222000px;}
.y1ec{bottom:668.845500px;}
.y1ea{bottom:668.845547px;}
.y1c4{bottom:670.765500px;}
.y1da{bottom:672.705000px;}
.y108{bottom:673.450500px;}
.y5e{bottom:673.815000px;}
.y34{bottom:673.995000px;}
.y48{bottom:674.355000px;}
.y112{bottom:675.748110px;}
.y21d{bottom:681.585000px;}
.y187{bottom:684.196500px;}
.y172{bottom:684.406500px;}
.y24f{bottom:685.005000px;}
.y110{bottom:688.834500px;}
.y10{bottom:691.125000px;}
.y1e6{bottom:694.974000px;}
.y21c{bottom:702.285000px;}
.y188{bottom:702.339000px;}
.y173{bottom:702.589500px;}
.y5d{bottom:704.805000px;}
.y33{bottom:705.165000px;}
.y47{bottom:705.525000px;}
.y24e{bottom:705.705000px;}
.y102{bottom:709.290000px;}
.y103{bottom:717.168000px;}
.y189{bottom:720.480000px;}
.y174{bottom:720.772500px;}
.yf{bottom:722.625000px;}
.y21b{bottom:722.985000px;}
.y24d{bottom:726.405000px;}
.y5c{bottom:735.945000px;}
.y74{bottom:736.125000px;}
.y32{bottom:736.485000px;}
.y1d7{bottom:737.358000px;}
.y18a{bottom:738.622500px;}
.y175{bottom:738.955500px;}
.y21a{bottom:743.685000px;}
.y24c{bottom:747.105000px;}
.ye{bottom:753.585000px;}
.ydf{bottom:754.178700px;}
.y18b{bottom:756.765000px;}
.y176{bottom:757.138500px;}
.ycc{bottom:757.410000px;}
.y219{bottom:764.385000px;}
.y5b{bottom:766.905000px;}
.y76{bottom:767.265000px;}
.y31{bottom:767.625000px;}
.y24b{bottom:767.805000px;}
.y78{bottom:771.585000px;}
.ye3{bottom:771.965910px;}
.yf4{bottom:771.966000px;}
.y18c{bottom:774.906000px;}
.y177{bottom:775.323000px;}
.yeb{bottom:779.162265px;}
.yd{bottom:784.725000px;}
.y218{bottom:785.085000px;}
.yf8{bottom:787.612500px;}
.y24a{bottom:788.505000px;}
.y18d{bottom:793.048500px;}
.y178{bottom:793.506000px;}
.yde{bottom:795.757500px;}
.yea{bottom:797.164065px;}
.y5a{bottom:798.045000px;}
.y4e{bottom:798.225000px;}
.y30{bottom:798.585000px;}
.y77{bottom:800.025000px;}
.yce{bottom:803.948550px;}
.yed{bottom:805.220565px;}
.y217{bottom:805.785000px;}
.y249{bottom:809.205000px;}
.y18e{bottom:811.189500px;}
.ydc{bottom:811.389000px;}
.y179{bottom:811.689000px;}
.yda{bottom:814.645500px;}
.yc{bottom:815.685000px;}
.ye9{bottom:815.928765px;}
.y183{bottom:822.075000px;}
.y16e{bottom:822.600000px;}
.yec{bottom:823.985265px;}
.ydb{bottom:825.388080px;}
.y216{bottom:826.485000px;}
.y59{bottom:829.005000px;}
.y4d{bottom:829.365000px;}
.y2f{bottom:829.725000px;}
.y248{bottom:829.905000px;}
.ye8{bottom:834.693465px;}
.yd9{bottom:838.905000px;}
.yb{bottom:846.825000px;}
.y215{bottom:847.185000px;}
.y247{bottom:850.605000px;}
.yf7{bottom:851.520750px;}
.y58{bottom:860.145000px;}
.y2e{bottom:860.685000px;}
.y17c{bottom:863.159850px;}
.y191{bottom:864.642750px;}
.y193{bottom:864.642900px;}
.yc8{bottom:864.706500px;}
.y214{bottom:867.885000px;}
.y246{bottom:871.305000px;}
.ye6{bottom:873.075810px;}
.ya{bottom:877.785000px;}
.y206{bottom:881.025000px;}
.y7a{bottom:882.000000px;}
.ye7{bottom:882.027765px;}
.y213{bottom:888.585000px;}
.y57{bottom:891.105000px;}
.y71{bottom:891.465000px;}
.y2d{bottom:891.825000px;}
.y245{bottom:892.005000px;}
.ye5{bottom:892.164510px;}
.y79{bottom:900.000000px;}
.yee{bottom:904.057500px;}
.yef{bottom:904.094414px;}
.yf0{bottom:904.181133px;}
.y9{bottom:908.925000px;}
.y212{bottom:909.285000px;}
.y181{bottom:909.366900px;}
.y195{bottom:911.209500px;}
.y244{bottom:912.750000px;}
.y205{bottom:919.230000px;}
.ycd{bottom:921.627000px;}
.y56{bottom:922.290000px;}
.y4a{bottom:922.470000px;}
.y2c{bottom:922.830000px;}
.y180{bottom:929.773950px;}
.y194{bottom:929.775000px;}
.y211{bottom:930.030000px;}
.y243{bottom:933.450000px;}
.yf1{bottom:934.575000px;}
.y8{bottom:939.930000px;}
.y210{bottom:950.730000px;}
.y55{bottom:953.250000px;}
.y49{bottom:953.610000px;}
.y2b{bottom:953.970000px;}
.y242{bottom:954.150000px;}
.y204{bottom:957.390000px;}
.ydd{bottom:967.673782px;}
.y20f{bottom:971.250000px;}
.y203{bottom:973.770000px;}
.y241{bottom:974.850000px;}
.yf6{bottom:977.679600px;}
.y54{bottom:984.390000px;}
.ye4{bottom:984.853410px;}
.y2a{bottom:984.930000px;}
.y7{bottom:986.010000px;}
.y20e{bottom:991.950000px;}
.y17d{bottom:993.003600px;}
.y192{bottom:993.235650px;}
.y202{bottom:993.930000px;}
.y240{bottom:995.550000px;}
.y17b{bottom:1006.158450px;}
.y190{bottom:1006.263900px;}
.y20d{bottom:1012.650000px;}
.y201{bottom:1014.090000px;}
.y53{bottom:1015.350000px;}
.y29{bottom:1016.070000px;}
.y23f{bottom:1016.250000px;}
.y6{bottom:1032.090000px;}
.y20c{bottom:1033.350000px;}
.y1ff{bottom:1034.970000px;}
.y23e{bottom:1036.950000px;}
.ye1{bottom:1039.741650px;}
.yf5{bottom:1041.193500px;}
.y17f{bottom:1044.303000px;}
.y52{bottom:1046.490000px;}
.y28{bottom:1047.030000px;}
.ye2{bottom:1049.588910px;}
.y20b{bottom:1054.050000px;}
.y23d{bottom:1057.650000px;}
.y17e{bottom:1059.628500px;}
.y1fe{bottom:1060.530000px;}
.ye0{bottom:1062.674700px;}
.y20a{bottom:1074.750000px;}
.y51{bottom:1077.450000px;}
.y5{bottom:1077.810000px;}
.y27{bottom:1078.170000px;}
.y23c{bottom:1078.350000px;}
.y1fd{bottom:1080.690000px;}
.yf2{bottom:1087.891500px;}
.y209{bottom:1095.450000px;}
.yf3{bottom:1095.769500px;}
.y23b{bottom:1099.050000px;}
.y1fc{bottom:1100.850000px;}
.y50{bottom:1108.590000px;}
.y4{bottom:1108.770000px;}
.y26{bottom:1109.130000px;}
.y208{bottom:1116.150000px;}
.y23a{bottom:1119.750000px;}
.y1fb{bottom:1121.010000px;}
.y18f{bottom:1135.240500px;}
.y17a{bottom:1136.389500px;}
.y207{bottom:1137.210000px;}
.y3{bottom:1139.910000px;}
.y4f{bottom:1140.090000px;}
.y25{bottom:1140.270000px;}
.y239{bottom:1140.450000px;}
.y1fa{bottom:1141.170000px;}
.yac{bottom:1170.000000px;}
.y24{bottom:1226.880000px;}
.y23{bottom:1244.880000px;}
.h15{height:6.978406px;}
.h50{height:19.039588px;}
.h52{height:19.108777px;}
.h5d{height:20.160000px;}
.h4c{height:21.621207px;}
.h45{height:22.433305px;}
.h4d{height:22.445754px;}
.h47{height:22.571684px;}
.h49{height:22.618683px;}
.h4f{height:22.722467px;}
.h1b{height:22.808779px;}
.h53{height:22.869101px;}
.h33{height:22.938028px;}
.h4b{height:23.443274px;}
.h30{height:23.461489px;}
.h11{height:24.904884px;}
.h51{height:25.061968px;}
.h29{height:26.067394px;}
.h2e{height:26.068180px;}
.h40{height:26.777806px;}
.h3f{height:27.038138px;}
.h3c{height:27.280344px;}
.h38{height:28.297520px;}
.h2b{height:28.673561px;}
.h46{height:31.154061px;}
.h4e{height:31.171358px;}
.h27{height:31.280034px;}
.h48{height:31.346209px;}
.h4a{height:31.411511px;}
.h42{height:31.696130px;}
.h3d{height:31.768420px;}
.h35{height:31.817866px;}
.h3a{height:31.826296px;}
.h19{height:36.493548px;}
.h13{height:36.543942px;}
.h31{height:36.706532px;}
.h12{height:37.406336px;}
.h1c{height:41.054264px;}
.h5b{height:43.008862px;}
.h56{height:43.568660px;}
.h43{height:44.018083px;}
.h3e{height:44.118547px;}
.h36{height:44.187125px;}
.h3b{height:44.198482px;}
.h5e{height:45.054844px;}
.h1a{height:45.617645px;}
.h14{height:45.680386px;}
.h32{height:45.877541px;}
.h10{height:46.758389px;}
.h2f{height:46.922803px;}
.h37{height:47.442158px;}
.h2{height:50.229844px;}
.h25{height:52.134264px;}
.h28{height:52.134701px;}
.h2d{height:52.136448px;}
.h5c{height:53.302500px;}
.h57{height:53.463883px;}
.h2a{height:57.348346px;}
.h58{height:58.606877px;}
.h5a{height:62.155330px;}
.h26{height:62.561554px;}
.h7{height:62.578125px;}
.h55{height:63.539112px;}
.h18{height:63.864528px;}
.hf{height:63.952621px;}
.hb{height:64.546875px;}
.h23{height:64.933814px;}
.hc{height:65.010937px;}
.h34{height:66.281779px;}
.h16{height:67.330631px;}
.h44{height:69.188246px;}
.h6{height:70.628906px;}
.h5{height:70.664062px;}
.h39{height:71.164766px;}
.h3{height:72.562500px;}
.h17{height:74.812506px;}
.h8{height:74.953125px;}
.ha{height:76.366406px;}
.h2c{height:78.202925px;}
.h41{height:79.071283px;}
.h4{height:80.464922px;}
.h9{height:80.584922px;}
.h54{height:81.691646px;}
.h5f{height:84.898125px;}
.h59{height:91.697690px;}
.h20{height:95.183962px;}
.h21{height:98.291776px;}
.h1e{height:103.120195px;}
.h1f{height:103.121477px;}
.h24{height:126.918792px;}
.h1d{height:126.922723px;}
.h22{height:129.867629px;}
.hd{height:918.000000px;}
.he{height:1188.000000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:108.000000px;}
.w5{width:108.036000px;}
.w6{width:108.180000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.w3{width:918.000000px;}
.w2{width:1188.000000px;}
.x0{left:0.000000px;}
.x16{left:1.587300px;}
.x8f{left:3.531300px;}
.x6{left:7.500000px;}
.x31{left:9.844332px;}
.x30{left:17.674800px;}
.x87{left:18.772800px;}
.xa2{left:21.478200px;}
.x4d{left:25.187093px;}
.x2f{left:27.214050px;}
.xa7{left:30.774000px;}
.x49{left:33.651000px;}
.xa1{left:35.802600px;}
.xad{left:38.160000px;}
.xaa{left:39.240000px;}
.x77{left:41.707500px;}
.xae{left:43.605000px;}
.x2d{left:44.669550px;}
.x73{left:47.511600px;}
.x4e{left:48.698400px;}
.x63{left:49.930608px;}
.x45{left:61.205250px;}
.x13{left:66.076800px;}
.x32{left:70.447200px;}
.x5f{left:78.475185px;}
.x61{left:79.562700px;}
.x2a{left:85.971750px;}
.x6e{left:86.995350px;}
.x70{left:88.178850px;}
.x74{left:93.683850px;}
.x6f{left:97.287900px;}
.x4b{left:102.931620px;}
.x79{left:106.560300px;}
.x8d{left:108.104250px;}
.x8b{left:112.441350px;}
.x4a{left:114.536700px;}
.x90{left:117.262350px;}
.xa6{left:122.436000px;}
.x8c{left:124.584900px;}
.x2{left:127.656000px;}
.x3{left:129.276000px;}
.x17{left:133.066950px;}
.x46{left:139.494692px;}
.x2e{left:144.093300px;}
.x8{left:154.470000px;}
.x15{left:165.213300px;}
.x91{left:166.671000px;}
.x76{left:169.927050px;}
.x75{left:172.480500px;}
.x92{left:173.929500px;}
.x40{left:176.298000px;}
.x19{left:177.343875px;}
.x72{left:179.452500px;}
.x78{left:183.932700px;}
.x18{left:185.553450px;}
.x8a{left:188.392500px;}
.x21{left:189.885675px;}
.x4c{left:191.323170px;}
.x22{left:196.108920px;}
.xe{left:197.781750px;}
.x1a{left:203.481975px;}
.x9{left:213.151800px;}
.x8e{left:221.401650px;}
.x1d{left:224.039925px;}
.x5{left:225.750000px;}
.xa8{left:230.430000px;}
.x60{left:235.169685px;}
.x62{left:236.256000px;}
.x4f{left:237.524550px;}
.x4{left:239.970000px;}
.x7a{left:242.571150px;}
.x20{left:244.763925px;}
.x23{left:247.570620px;}
.x12{left:254.163300px;}
.x6d{left:264.024000px;}
.x1c{left:268.654425px;}
.xf{left:279.949500px;}
.x7b{left:297.899400px;}
.x24{left:307.663170px;}
.x71{left:310.119000px;}
.x29{left:312.594975px;}
.x36{left:314.383032px;}
.x33{left:316.668000px;}
.x35{left:322.213500px;}
.x5d{left:325.120200px;}
.x26{left:327.147885px;}
.x38{left:331.486500px;}
.x25{left:336.485970px;}
.xa9{left:338.475000px;}
.x5e{left:341.544615px;}
.x50{left:343.183755px;}
.x14{left:349.939800px;}
.x28{left:356.343975px;}
.x1e{left:362.503425px;}
.x27{left:368.253735px;}
.x37{left:374.985000px;}
.x41{left:388.744500px;}
.x1b{left:409.508475px;}
.xab{left:446.475000px;}
.x34{left:448.630500px;}
.x95{left:468.791400px;}
.x89{left:470.065500px;}
.x11{left:474.109800px;}
.x82{left:476.383200px;}
.x43{left:479.047500px;}
.x88{left:481.428000px;}
.x47{left:487.339441px;}
.x65{left:514.467000px;}
.x67{left:515.652000px;}
.x48{left:517.085791px;}
.x6c{left:521.364000px;}
.x66{left:524.757000px;}
.x7d{left:526.771500px;}
.x59{left:528.795000px;}
.x64{left:530.584500px;}
.x7e{left:537.021000px;}
.x1f{left:540.778425px;}
.x7c{left:542.827500px;}
.x84{left:546.459000px;}
.xac{left:554.505000px;}
.x56{left:557.223786px;}
.x93{left:566.163000px;}
.x9b{left:568.074000px;}
.xa{left:575.145300px;}
.x81{left:603.367050px;}
.x7f{left:605.896500px;}
.x57{left:614.243643px;}
.x83{left:617.237850px;}
.x3d{left:618.920532px;}
.x6b{left:620.547300px;}
.x69{left:623.220000px;}
.x3c{left:626.751000px;}
.x3b{left:632.484600px;}
.x3e{left:635.950500px;}
.xd{left:644.819250px;}
.xa4{left:647.287500px;}
.x39{left:654.981000px;}
.xa0{left:658.251450px;}
.x99{left:659.292600px;}
.x94{left:662.062800px;}
.x9c{left:664.322400px;}
.xb{left:668.101350px;}
.x85{left:672.694500px;}
.x3f{left:679.522500px;}
.x42{left:689.332500px;}
.x5c{left:694.218873px;}
.x5b{left:695.527546px;}
.x5a{left:698.817000px;}
.x86{left:703.318500px;}
.x44{left:714.829500px;}
.x68{left:717.717000px;}
.x10{left:737.778300px;}
.x51{left:741.283146px;}
.x80{left:746.214450px;}
.x7{left:748.770000px;}
.x58{left:750.744000px;}
.x3a{left:754.404750px;}
.x2c{left:756.001500px;}
.x1{left:757.230000px;}
.x2b{left:761.151000px;}
.x9f{left:766.696800px;}
.x9d{left:768.856500px;}
.x6a{left:771.496800px;}
.x98{left:778.138350px;}
.x96{left:780.505500px;}
.x9a{left:791.120400px;}
.x55{left:800.247000px;}
.xa5{left:810.336000px;}
.xa3{left:812.655000px;}
.x54{left:847.423971px;}
.x53{left:852.789396px;}
.x52{left:858.700896px;}
.x9e{left:888.689550px;}
.xc{left:892.959750px;}
.x97{left:911.831100px;}
@media print{
.v9{vertical-align:-57.429333pt;}
.v8{vertical-align:-31.713173pt;}
.v3{vertical-align:-29.440000pt;}
.v5{vertical-align:-13.635413pt;}
.va{vertical-align:-12.500000pt;}
.v2{vertical-align:-8.320000pt;}
.v0{vertical-align:0.000000pt;}
.v7{vertical-align:0.895835pt;}
.v6{vertical-align:2.762501pt;}
.v4{vertical-align:8.320000pt;}
.v1{vertical-align:29.440000pt;}
.ls6{letter-spacing:-0.832000pt;}
.ls19{letter-spacing:-0.640000pt;}
.ls2d{letter-spacing:-0.320000pt;}
.lsd{letter-spacing:-0.256000pt;}
.ls22{letter-spacing:-0.198933pt;}
.lsa{letter-spacing:-0.192000pt;}
.ls4{letter-spacing:-0.128000pt;}
.ls7{letter-spacing:-0.064000pt;}
.ls14{letter-spacing:-0.040320pt;}
.ls3{letter-spacing:0.000000pt;}
.ls2a{letter-spacing:0.002856pt;}
.lsb{letter-spacing:0.064000pt;}
.ls2c{letter-spacing:0.089600pt;}
.ls17{letter-spacing:0.106667pt;}
.ls1{letter-spacing:0.128000pt;}
.ls11{letter-spacing:0.135467pt;}
.ls23{letter-spacing:0.161067pt;}
.ls21{letter-spacing:0.161280pt;}
.lsc{letter-spacing:0.192000pt;}
.ls13{letter-spacing:0.199040pt;}
.ls1c{letter-spacing:0.227733pt;}
.ls1e{letter-spacing:0.239467pt;}
.ls2{letter-spacing:0.256000pt;}
.lsf{letter-spacing:0.298667pt;}
.ls0{letter-spacing:0.320000pt;}
.ls5{letter-spacing:0.448000pt;}
.ls15{letter-spacing:0.576000pt;}
.ls9{letter-spacing:0.640000pt;}
.lse{letter-spacing:0.768000pt;}
.ls16{letter-spacing:0.839040pt;}
.ls20{letter-spacing:1.280000pt;}
.ls18{letter-spacing:2.560000pt;}
.ls1d{letter-spacing:3.840000pt;}
.ls10{letter-spacing:6.400000pt;}
.ls1b{letter-spacing:23.040000pt;}
.ls1f{letter-spacing:29.440000pt;}
.ls8{letter-spacing:29.546667pt;}
.ls1a{letter-spacing:30.186667pt;}
.ls12{letter-spacing:75.008000pt;}
.ls26{letter-spacing:77.213115pt;}
.ls27{letter-spacing:77.214715pt;}
.ls29{letter-spacing:190.259162pt;}
.ls24{letter-spacing:317.849914pt;}
.ls25{letter-spacing:469.196307pt;}
.ls28{letter-spacing:741.541828pt;}
.ls2b{letter-spacing:1051.971025pt;}
.ws11{word-spacing:-64.000000pt;}
.ws63{word-spacing:-18.147692pt;}
.ws26{word-spacing:-17.696368pt;}
.wsd{word-spacing:-16.768000pt;}
.wsb{word-spacing:-16.640000pt;}
.ws3{word-spacing:-16.448000pt;}
.ws5{word-spacing:-16.256000pt;}
.wsa{word-spacing:-16.192000pt;}
.ws4{word-spacing:-16.128000pt;}
.ws48{word-spacing:-16.103687pt;}
.ws9{word-spacing:-16.064000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws6{word-spacing:-15.936000pt;}
.ws30{word-spacing:-15.927398pt;}
.ws2{word-spacing:-15.872000pt;}
.ws8{word-spacing:-15.808000pt;}
.wsc{word-spacing:-15.744000pt;}
.ws34{word-spacing:-15.572596pt;}
.ws1c{word-spacing:-15.484378pt;}
.wsf{word-spacing:-15.168000pt;}
.ws62{word-spacing:-14.788873pt;}
.ws12{word-spacing:-13.534613pt;}
.ws68{word-spacing:-13.306880pt;}
.ws18{word-spacing:-11.977693pt;}
.ws13{word-spacing:-10.959467pt;}
.ws15{word-spacing:-10.881067pt;}
.wse{word-spacing:-10.855467pt;}
.ws0{word-spacing:-10.720000pt;}
.ws10{word-spacing:-10.679680pt;}
.ws14{word-spacing:-10.521067pt;}
.ws69{word-spacing:-10.400000pt;}
.ws44{word-spacing:-9.605263pt;}
.ws4c{word-spacing:-9.089414pt;}
.ws5e{word-spacing:-7.712876pt;}
.ws1f{word-spacing:-0.020654pt;}
.ws20{word-spacing:-0.020393pt;}
.ws31{word-spacing:-0.000401pt;}
.ws39{word-spacing:-0.000306pt;}
.ws7{word-spacing:0.000000pt;}
.ws29{word-spacing:0.000764pt;}
.ws3e{word-spacing:0.000891pt;}
.ws27{word-spacing:0.001757pt;}
.ws53{word-spacing:3.807482pt;}
.ws5c{word-spacing:3.810061pt;}
.ws56{word-spacing:3.831821pt;}
.ws59{word-spacing:3.843904pt;}
.ws4e{word-spacing:5.385468pt;}
.ws4a{word-spacing:5.399670pt;}
.ws46{word-spacing:5.409426pt;}
.ws2b{word-spacing:8.067659pt;}
.ws54{word-spacing:9.173939pt;}
.ws5d{word-spacing:9.197568pt;}
.ws57{word-spacing:9.248242pt;}
.ws5a{word-spacing:9.268582pt;}
.ws4f{word-spacing:12.986786pt;}
.ws4b{word-spacing:13.015672pt;}
.ws43{word-spacing:13.035418pt;}
.ws47{word-spacing:13.038552pt;}
.ws1d{word-spacing:21.680468pt;}
.ws35{word-spacing:21.843311pt;}
.ws23{word-spacing:21.963169pt;}
.ws66{word-spacing:24.546713pt;}
.ws2f{word-spacing:28.299333pt;}
.ws52{word-spacing:30.405483pt;}
.ws5b{word-spacing:30.421808pt;}
.ws2e{word-spacing:31.121946pt;}
.ws40{word-spacing:31.830607pt;}
.ws3d{word-spacing:35.009449pt;}
.ws36{word-spacing:38.899392pt;}
.ws1e{word-spacing:38.990616pt;}
.ws1b{word-spacing:38.991061pt;}
.ws38{word-spacing:42.782286pt;}
.ws49{word-spacing:43.059980pt;}
.ws45{word-spacing:43.138815pt;}
.ws3b{word-spacing:54.408091pt;}
.ws2c{word-spacing:54.410603pt;}
.ws55{word-spacing:61.201508pt;}
.ws58{word-spacing:61.333363pt;}
.ws42{word-spacing:74.924275pt;}
.ws4d{word-spacing:85.950306pt;}
.ws41{word-spacing:86.279641pt;}
.ws32{word-spacing:90.732081pt;}
.ws2a{word-spacing:100.809838pt;}
.ws3f{word-spacing:100.811748pt;}
.ws3a{word-spacing:100.812066pt;}
.ws28{word-spacing:120.972763pt;}
.ws24{word-spacing:127.781660pt;}
.ws25{word-spacing:154.102451pt;}
.ws33{word-spacing:186.493575pt;}
.ws17{word-spacing:190.896800pt;}
.ws16{word-spacing:218.148239pt;}
.ws21{word-spacing:225.405456pt;}
.ws2d{word-spacing:381.278970pt;}
.ws3c{word-spacing:385.166614pt;}
.ws37{word-spacing:392.937000pt;}
.ws1a{word-spacing:450.928487pt;}
.ws19{word-spacing:450.929964pt;}
.ws67{word-spacing:654.451779pt;}
.ws22{word-spacing:670.161335pt;}
.ws65{word-spacing:758.952135pt;}
.ws64{word-spacing:1039.735365pt;}
.ws61{word-spacing:1379.830667pt;}
.ws60{word-spacing:1383.665333pt;}
.ws50{word-spacing:1524.261867pt;}
.ws51{word-spacing:1524.262933pt;}
.ws5f{word-spacing:2049.054755pt;}
._37{margin-left:-2732.041834pt;}
._31{margin-left:-431.881495pt;}
._32{margin-left:-424.111109pt;}
._2e{margin-left:-420.223465pt;}
._26{margin-left:-407.832375pt;}
._2d{margin-left:-7.066707pt;}
._27{margin-left:-5.301950pt;}
._30{margin-left:-4.271596pt;}
._1b{margin-left:-2.218667pt;}
._0{margin-left:-1.269333pt;}
._1{width:1.418667pt;}
._9{width:3.200000pt;}
._13{width:4.234667pt;}
._1a{width:5.269333pt;}
._6{width:6.336000pt;}
._8{width:7.445333pt;}
._7{width:8.501333pt;}
._2{width:9.536000pt;}
._3{width:10.613333pt;}
._a{width:11.840000pt;}
._b{width:13.237333pt;}
._5{width:14.378667pt;}
._c{width:17.408000pt;}
._19{width:19.008000pt;}
._17{width:20.010667pt;}
._1c{width:21.173333pt;}
._18{width:22.069333pt;}
._4{width:22.976000pt;}
._11{width:24.490667pt;}
._12{width:25.930667pt;}
._16{width:27.232000pt;}
._14{width:28.416000pt;}
._15{width:29.312000pt;}
._f{width:30.592000pt;}
._10{width:31.722667pt;}
._d{width:32.682667pt;}
._e{width:33.909333pt;}
._1d{width:35.509333pt;}
._20{width:36.650667pt;}
._2f{width:38.221459pt;}
._23{width:40.768000pt;}
._22{width:41.717333pt;}
._1f{width:42.752000pt;}
._1e{width:44.021333pt;}
._35{width:45.487293pt;}
._21{width:47.936000pt;}
._2a{width:50.985604pt;}
._28{width:53.623682pt;}
._24{width:57.152000pt;}
._34{width:64.537822pt;}
._2c{width:75.286588pt;}
._36{width:84.122653pt;}
._33{width:118.589344pt;}
._2b{width:120.605204pt;}
._25{width:274.982775pt;}
._29{width:423.529114pt;}
.fs8{font-size:8.938080pt;}
.fs42{font-size:23.247360pt;}
.fs44{font-size:23.331840pt;}
.fs3e{font-size:26.399520pt;}
.fs37{font-size:27.391093pt;}
.fs3f{font-size:27.406293pt;}
.fs39{font-size:27.560053pt;}
.fs3b{font-size:27.617440pt;}
.fs41{font-size:27.744160pt;}
.fse{font-size:27.849547pt;}
.fs45{font-size:27.923200pt;}
.fs25{font-size:28.007360pt;}
.fs3d{font-size:28.624267pt;}
.fs22{font-size:28.646507pt;}
.fs43{font-size:30.600693pt;}
.fs1b{font-size:31.828320pt;}
.fs20{font-size:31.829280pt;}
.fs6{font-size:31.898667pt;}
.fs32{font-size:32.695733pt;}
.fs31{font-size:33.013600pt;}
.fs2e{font-size:33.309333pt;}
.fs2a{font-size:34.551307pt;}
.fs1d{font-size:35.010453pt;}
.fs38{font-size:38.039147pt;}
.fs40{font-size:38.060267pt;}
.fs19{font-size:38.192960pt;}
.fs3a{font-size:38.273760pt;}
.fs3c{font-size:38.353493pt;}
.fs34{font-size:38.701013pt;}
.fs2f{font-size:38.789280pt;}
.fs27{font-size:38.849653pt;}
.fs2c{font-size:38.859947pt;}
.fs2{font-size:42.880000pt;}
.fsc{font-size:44.558667pt;}
.fs23{font-size:44.818720pt;}
.fs7{font-size:47.910773pt;}
.fsf{font-size:50.127307pt;}
.fs48{font-size:53.197387pt;}
.fs3{font-size:53.333333pt;}
.fs35{font-size:53.746133pt;}
.fs30{font-size:53.868800pt;}
.fs28{font-size:53.952533pt;}
.fs2d{font-size:53.966400pt;}
.fsd{font-size:55.699200pt;}
.fs24{font-size:56.016533pt;}
.fs4d{font-size:56.469867pt;}
.fs21{font-size:57.292800pt;}
.fs29{font-size:57.926933pt;}
.fs0{font-size:58.880000pt;}
.fs5{font-size:59.889067pt;}
.fs17{font-size:63.656000pt;}
.fs1a{font-size:63.656534pt;}
.fs1f{font-size:63.658667pt;}
.fs1{font-size:64.000000pt;}
.fs49{font-size:65.279467pt;}
.fs1c{font-size:70.022400pt;}
.fs4a{font-size:71.212800pt;}
.fs4e{font-size:74.880000pt;}
.fs4c{font-size:75.891733pt;}
.fs18{font-size:76.387733pt;}
.fs47{font-size:77.581333pt;}
.fsb{font-size:77.978667pt;}
.fs15{font-size:79.284267pt;}
.fs26{font-size:80.930133pt;}
.fs4{font-size:83.844800pt;}
.fs36{font-size:84.478933pt;}
.fs9{font-size:86.238400pt;}
.fs2b{font-size:86.892267pt;}
.fs1e{font-size:95.485867pt;}
.fsa{font-size:95.821333pt;}
.fs33{font-size:96.546133pt;}
.fs46{font-size:99.745600pt;}
.fs4b{font-size:113.839467pt;}
.fs13{font-size:116.219733pt;}
.fs11{font-size:125.909884pt;}
.fs12{font-size:125.911449pt;}
.fs16{font-size:154.968000pt;}
.fs10{font-size:154.972800pt;}
.fs14{font-size:158.568533pt;}
.y0{bottom:0.000000pt;}
.y1b2{bottom:0.319792pt;}
.y1a5{bottom:0.586459pt;}
.yd6{bottom:1.036009pt;}
.y1f8{bottom:3.196267pt;}
.y200{bottom:4.160000pt;}
.y120{bottom:4.368667pt;}
.y197{bottom:4.465333pt;}
.ybd{bottom:5.122388pt;}
.yad{bottom:5.122400pt;}
.y88{bottom:5.951293pt;}
.yaf{bottom:5.970304pt;}
.ybc{bottom:6.336971pt;}
.y1e9{bottom:7.205646pt;}
.y1b4{bottom:8.202080pt;}
.y1a7{bottom:8.452600pt;}
.yd5{bottom:8.964129pt;}
.y15a{bottom:9.752080pt;}
.y145{bottom:10.054173pt;}
.y129{bottom:10.128640pt;}
.y1ef{bottom:12.383821pt;}
.y1ed{bottom:12.383853pt;}
.y135{bottom:16.525413pt;}
.y143{bottom:18.885867pt;}
.y1b5{bottom:19.709867pt;}
.y1a8{bottom:19.936000pt;}
.y15c{bottom:20.843200pt;}
.y147{bottom:21.143200pt;}
.y1f6{bottom:21.281733pt;}
.y87{bottom:21.487693pt;}
.yae{bottom:22.821867pt;}
.ybb{bottom:23.188000pt;}
.y11f{bottom:26.969733pt;}
.y89{bottom:31.154373pt;}
.y1b6{bottom:31.217733pt;}
.y1a9{bottom:31.419333pt;}
.y134{bottom:32.527013pt;}
.yb3{bottom:34.441733pt;}
.yc0{bottom:35.249200pt;}
.yb7{bottom:35.249333pt;}
.y15d{bottom:37.036000pt;}
.y148{bottom:37.331200pt;}
.y1f5{bottom:39.365600pt;}
.y137{bottom:39.688880pt;}
.y86{bottom:40.668360pt;}
.y1b7{bottom:42.725067pt;}
.y1aa{bottom:42.902667pt;}
.y12f{bottom:45.621733pt;}
.yb5{bottom:47.301067pt;}
.y133{bottom:49.206747pt;}
.y2{bottom:51.200000pt;}
.yc7{bottom:51.615067pt;}
.y15e{bottom:53.227600pt;}
.y149{bottom:53.519333pt;}
.y1b8{bottom:54.232800pt;}
.y1ab{bottom:54.386000pt;}
.y136{bottom:56.368080pt;}
.y1f4{bottom:57.449467pt;}
.yb1{bottom:58.943733pt;}
.y142{bottom:58.949467pt;}
.y127{bottom:59.552133pt;}
.y8b{bottom:59.655707pt;}
.y85{bottom:59.849027pt;}
.y1c1{bottom:60.209200pt;}
.y1c3{bottom:60.209333pt;}
.y125{bottom:61.243733pt;}
.y1e3{bottom:62.734400pt;}
.y1e5{bottom:62.734533pt;}
.y1b9{bottom:65.740667pt;}
.y1ac{bottom:65.869333pt;}
.y132{bottom:65.886480pt;}
.yc6{bottom:68.507733pt;}
.y1{bottom:69.120000pt;}
.y15f{bottom:69.420267pt;}
.y1f9{bottom:69.626933pt;}
.y14a{bottom:69.707333pt;}
.yd4{bottom:70.019333pt;}
.y126{bottom:70.792173pt;}
.yba{bottom:75.352800pt;}
.y1f7{bottom:75.535333pt;}
.y1ba{bottom:77.247867pt;}
.y1ad{bottom:77.352133pt;}
.y124{bottom:82.807333pt;}
.y160{bottom:85.613067pt;}
.y14b{bottom:85.895867pt;}
.yc5{bottom:86.252000pt;}
.y1bb{bottom:88.755733pt;}
.y1ae{bottom:88.836000pt;}
.y12e{bottom:92.912933pt;}
.y130{bottom:100.004133pt;}
.y1bc{bottom:100.263600pt;}
.y1af{bottom:100.318800pt;}
.y141{bottom:101.559867pt;}
.y161{bottom:101.805200pt;}
.y70{bottom:102.080000pt;}
.y14c{bottom:102.084400pt;}
.y46{bottom:102.720000pt;}
.yc4{bottom:103.862933pt;}
.yd2{bottom:104.887333pt;}
.y131{bottom:107.961947pt;}
.y238{bottom:108.960000pt;}
.yb4{bottom:110.763067pt;}
.y1bd{bottom:111.770800pt;}
.y1b0{bottom:111.802133pt;}
.y82{bottom:113.753867pt;}
.ya7{bottom:113.754133pt;}
.yb9{bottom:115.456400pt;}
.y22{bottom:117.920000pt;}
.y162{bottom:117.997333pt;}
.y14d{bottom:118.272400pt;}
.yb2{bottom:120.089046pt;}
.ybf{bottom:120.822133pt;}
.y1be{bottom:123.278667pt;}
.y1b1{bottom:123.286000pt;}
.y237{bottom:127.360000pt;}
.y138{bottom:127.543733pt;}
.y139{bottom:127.576546pt;}
.y13a{bottom:127.653629pt;}
.y6f{bottom:129.760000pt;}
.y1a6{bottom:130.175467pt;}
.y1b3{bottom:130.183333pt;}
.y45{bottom:130.240000pt;}
.y93{bottom:131.253573pt;}
.y163{bottom:134.190667pt;}
.y14e{bottom:134.461333pt;}
.yc1{bottom:137.173333pt;}
.y1ee{bottom:140.100000pt;}
.y12d{bottom:140.204133pt;}
.y1e0{bottom:143.854533pt;}
.y21{bottom:145.440000pt;}
.y236{bottom:145.760000pt;}
.y80{bottom:148.471600pt;}
.y164{bottom:150.382667pt;}
.y91{bottom:150.434373pt;}
.y14f{bottom:150.649333pt;}
.yca{bottom:152.601333pt;}
.y13b{bottom:154.669333pt;}
.yc2{bottom:155.056667pt;}
.yb8{bottom:155.560000pt;}
.y6e{bottom:157.280000pt;}
.y44{bottom:157.920000pt;}
.y1c2{bottom:160.279067pt;}
.y1e4{bottom:160.352267pt;}
.y235{bottom:164.160000pt;}
.y165{bottom:166.574667pt;}
.y150{bottom:166.837333pt;}
.y7f{bottom:167.649733pt;}
.y90{bottom:169.613040pt;}
.y1e2{bottom:170.242267pt;}
.y1c0{bottom:170.417600pt;}
.yc3{bottom:172.133733pt;}
.y20{bottom:173.120000pt;}
.y234{bottom:182.560000pt;}
.y166{bottom:182.768000pt;}
.y151{bottom:183.025333pt;}
.y140{bottom:183.461467pt;}
.yb0{bottom:184.955637pt;}
.y6d{bottom:184.986667pt;}
.y75{bottom:185.146667pt;}
.y43{bottom:185.466667pt;}
.y12c{bottom:186.062000pt;}
.y7e{bottom:186.828933pt;}
.y83{bottom:188.497067pt;}
.y8f{bottom:188.791707pt;}
.ybe{bottom:188.977333pt;}
.y15b{bottom:192.482667pt;}
.y146{bottom:192.738667pt;}
.y8c{bottom:195.589040pt;}
.y8a{bottom:195.894373pt;}
.y84{bottom:198.087693pt;}
.y98{bottom:198.175973pt;}
.y96{bottom:198.391973pt;}
.y128{bottom:198.471942pt;}
.yb6{bottom:199.600000pt;}
.y1f{bottom:200.666667pt;}
.y233{bottom:200.986667pt;}
.y94{bottom:201.706640pt;}
.y81{bottom:206.009600pt;}
.y92{bottom:207.972907pt;}
.yd1{bottom:209.490400pt;}
.y6c{bottom:212.506667pt;}
.y42{bottom:213.146667pt;}
.y232{bottom:219.386667pt;}
.y155{bottom:223.920800pt;}
.y13f{bottom:225.129733pt;}
.y1e{bottom:228.186667pt;}
.y1df{bottom:229.555067pt;}
.y16a{bottom:230.364667pt;}
.y16c{bottom:230.364800pt;}
.y12b{bottom:233.353733pt;}
.yc9{bottom:236.201333pt;}
.y231{bottom:237.786667pt;}
.y6b{bottom:240.186667pt;}
.y41{bottom:240.666667pt;}
.y7d{bottom:253.973733pt;}
.y1d{bottom:255.866667pt;}
.y230{bottom:256.186667pt;}
.y122{bottom:259.053067pt;}
.y167{bottom:265.240000pt;}
.y6a{bottom:267.706667pt;}
.y123{bottom:267.806187pt;}
.y1e1{bottom:268.150667pt;}
.y40{bottom:268.186667pt;}
.y1eb{bottom:268.437333pt;}
.y1bf{bottom:270.785333pt;}
.y152{bottom:271.976000pt;}
.y13e{bottom:274.257333pt;}
.y22f{bottom:274.586667pt;}
.y121{bottom:279.438000pt;}
.y12a{bottom:281.981333pt;}
.y1f3{bottom:282.723333pt;}
.y1c{bottom:283.386667pt;}
.y159{bottom:286.854667pt;}
.y144{bottom:287.388000pt;}
.y1e7{bottom:288.584000pt;}
.y22e{bottom:292.986667pt;}
.y69{bottom:295.386667pt;}
.y3f{bottom:295.866667pt;}
.y13c{bottom:298.178667pt;}
.y1f2{bottom:301.551467pt;}
.y13d{bottom:305.181333pt;}
.y1b{bottom:311.066667pt;}
.y22d{bottom:311.386667pt;}
.y1de{bottom:316.325333pt;}
.y1f1{bottom:318.628000pt;}
.y68{bottom:322.906667pt;}
.y3e{bottom:323.386667pt;}
.y22c{bottom:329.786667pt;}
.y1e8{bottom:336.376000pt;}
.y1a{bottom:338.586667pt;}
.y198{bottom:339.466667pt;}
.y1c8{bottom:339.677333pt;}
.y107{bottom:342.430667pt;}
.y117{bottom:343.781360pt;}
.y10f{bottom:343.878667pt;}
.y156{bottom:344.709333pt;}
.yab{bottom:344.915067pt;}
.y16b{bottom:346.812667pt;}
.y19a{bottom:347.285333pt;}
.y1ca{bottom:347.498667pt;}
.y22b{bottom:348.186667pt;}
.yfe{bottom:348.827427pt;}
.y67{bottom:350.586667pt;}
.y3d{bottom:351.066667pt;}
.yd3{bottom:354.223333pt;}
.y154{bottom:356.946800pt;}
.y169{bottom:358.610533pt;}
.y19b{bottom:358.697333pt;}
.y1cb{bottom:358.918667pt;}
.yfd{bottom:364.829027pt;}
.y9c{bottom:365.810187pt;}
.y19{bottom:366.266667pt;}
.y116{bottom:366.382960pt;}
.y22a{bottom:366.586667pt;}
.y19c{bottom:370.110667pt;}
.y1cc{bottom:370.338667pt;}
.y100{bottom:371.990360pt;}
.y7b{bottom:372.473333pt;}
.y1dc{bottom:372.843333pt;}
.y66{bottom:378.106667pt;}
.y73{bottom:378.266667pt;}
.y3c{bottom:378.586667pt;}
.y10e{bottom:380.706267pt;}
.y1d6{bottom:380.710667pt;}
.yfc{bottom:381.508760pt;}
.y19d{bottom:381.524000pt;}
.y1cd{bottom:381.757333pt;}
.y11e{bottom:382.325067pt;}
.y229{bottom:384.986667pt;}
.y25b{bottom:388.026667pt;}
.yff{bottom:388.670093pt;}
.y1d5{bottom:392.177333pt;}
.y19e{bottom:392.937333pt;}
.y1ce{bottom:393.176000pt;}
.y18{bottom:393.826667pt;}
.yaa{bottom:395.798400pt;}
.y118{bottom:396.204000pt;}
.yfb{bottom:398.188493pt;}
.y114{bottom:401.641333pt;}
.y1c6{bottom:402.023467pt;}
.y228{bottom:403.426667pt;}
.y19f{bottom:404.349333pt;}
.y1cf{bottom:404.596000pt;}
.ycb{bottom:405.664000pt;}
.y65{bottom:405.826667pt;}
.ya0{bottom:405.942493pt;}
.y72{bottom:405.986667pt;}
.y3b{bottom:406.306667pt;}
.y25a{bottom:406.466667pt;}
.y9a{bottom:407.937307pt;}
.y115{bottom:411.190293pt;}
.y1a0{bottom:415.762667pt;}
.y10d{bottom:415.913600pt;}
.y9f{bottom:416.010720pt;}
.y1d0{bottom:416.016000pt;}
.y158{bottom:416.393333pt;}
.y17{bottom:421.506667pt;}
.y227{bottom:421.826667pt;}
.y113{bottom:423.205333pt;}
.y259{bottom:424.866667pt;}
.y157{bottom:426.670667pt;}
.y1a1{bottom:427.176000pt;}
.y1d1{bottom:427.434667pt;}
.y11d{bottom:430.531333pt;}
.y8e{bottom:431.490373pt;}
.yf9{bottom:432.306667pt;}
.y64{bottom:433.346667pt;}
.y3a{bottom:433.826667pt;}
.ya1{bottom:436.803960pt;}
.y1a2{bottom:438.589333pt;}
.y1d2{bottom:438.854667pt;}
.y226{bottom:440.226667pt;}
.yfa{bottom:440.263960pt;}
.y258{bottom:443.266667pt;}
.ya9{bottom:444.209333pt;}
.y9b{bottom:446.049253pt;}
.yd7{bottom:448.565333pt;}
.y16{bottom:449.026667pt;}
.y1a3{bottom:450.002667pt;}
.y1d3{bottom:450.273333pt;}
.y10c{bottom:452.603200pt;}
.y7c{bottom:453.221733pt;}
.y225{bottom:458.626667pt;}
.y104{bottom:459.845333pt;}
.y105{bottom:459.878667pt;}
.y106{bottom:459.955229pt;}
.y63{bottom:460.706667pt;}
.yd0{bottom:460.935733pt;}
.ya3{bottom:461.367560pt;}
.y1a4{bottom:461.416000pt;}
.y39{bottom:461.506667pt;}
.y257{bottom:461.666667pt;}
.y1d4{bottom:461.693333pt;}
.y9e{bottom:466.576320pt;}
.y199{bottom:468.264000pt;}
.y1c9{bottom:468.545333pt;}
.y168{bottom:475.405333pt;}
.y15{bottom:476.706667pt;}
.y224{bottom:477.026667pt;}
.y11c{bottom:477.452667pt;}
.y153{bottom:478.094667pt;}
.y1dd{bottom:479.823067pt;}
.y256{bottom:480.066667pt;}
.y1d9{bottom:483.583467pt;}
.y95{bottom:484.990640pt;}
.y101{bottom:486.972000pt;}
.y62{bottom:488.546667pt;}
.y38{bottom:489.026667pt;}
.y10b{bottom:489.671467pt;}
.y1db{bottom:490.661600pt;}
.y1c7{bottom:494.317200pt;}
.y223{bottom:495.426667pt;}
.yd8{bottom:497.349200pt;}
.ya8{bottom:497.366667pt;}
.y9d{bottom:497.728987pt;}
.y255{bottom:498.466667pt;}
.y1f0{bottom:500.084000pt;}
.y97{bottom:500.603973pt;}
.y1c5{bottom:503.667733pt;}
.y14{bottom:504.226667pt;}
.ya2{bottom:508.161293pt;}
.y222{bottom:513.826667pt;}
.y61{bottom:516.066667pt;}
.y37{bottom:516.706667pt;}
.y254{bottom:516.866667pt;}
.y11b{bottom:525.113600pt;}
.y10a{bottom:525.417867pt;}
.y13{bottom:531.906667pt;}
.y221{bottom:532.226667pt;}
.y119{bottom:535.123806pt;}
.y253{bottom:535.266667pt;}
.y60{bottom:543.746667pt;}
.y4c{bottom:543.906667pt;}
.y36{bottom:544.226667pt;}
.y196{bottom:547.550667pt;}
.ya4{bottom:547.574893pt;}
.y182{bottom:548.749333pt;}
.y16d{bottom:548.800000pt;}
.y99{bottom:549.955973pt;}
.y220{bottom:550.626667pt;}
.y252{bottom:553.666667pt;}
.y12{bottom:559.426667pt;}
.y184{bottom:559.796000pt;}
.y16f{bottom:559.872000pt;}
.y109{bottom:561.926267pt;}
.ycf{bottom:568.431600pt;}
.y1d8{bottom:568.973600pt;}
.y21f{bottom:569.026667pt;}
.y5f{bottom:571.266667pt;}
.y4b{bottom:571.586667pt;}
.y35{bottom:571.906667pt;}
.y251{bottom:572.066667pt;}
.y11a{bottom:572.405333pt;}
.y185{bottom:575.922667pt;}
.y170{bottom:576.034667pt;}
.ya6{bottom:576.345760pt;}
.ya5{bottom:580.931693pt;}
.y8d{bottom:585.809040pt;}
.y11{bottom:587.106667pt;}
.y21e{bottom:587.426667pt;}
.y250{bottom:590.466667pt;}
.y111{bottom:591.911867pt;}
.y186{bottom:592.048000pt;}
.y171{bottom:592.197333pt;}
.y1ec{bottom:594.529333pt;}
.y1ea{bottom:594.529375pt;}
.y1c4{bottom:596.236000pt;}
.y1da{bottom:597.960000pt;}
.y108{bottom:598.622667pt;}
.y5e{bottom:598.946667pt;}
.y34{bottom:599.106667pt;}
.y48{bottom:599.426667pt;}
.y112{bottom:600.664987pt;}
.y21d{bottom:605.853333pt;}
.y187{bottom:608.174667pt;}
.y172{bottom:608.361333pt;}
.y24f{bottom:608.893333pt;}
.y110{bottom:612.297333pt;}
.y10{bottom:614.333333pt;}
.y1e6{bottom:617.754667pt;}
.y21c{bottom:624.253333pt;}
.y188{bottom:624.301333pt;}
.y173{bottom:624.524000pt;}
.y5d{bottom:626.493333pt;}
.y33{bottom:626.813333pt;}
.y47{bottom:627.133333pt;}
.y24e{bottom:627.293333pt;}
.y102{bottom:630.480000pt;}
.y103{bottom:637.482667pt;}
.y189{bottom:640.426667pt;}
.y174{bottom:640.686667pt;}
.yf{bottom:642.333333pt;}
.y21b{bottom:642.653333pt;}
.y24d{bottom:645.693333pt;}
.y5c{bottom:654.173333pt;}
.y74{bottom:654.333333pt;}
.y32{bottom:654.653333pt;}
.y1d7{bottom:655.429333pt;}
.y18a{bottom:656.553333pt;}
.y175{bottom:656.849333pt;}
.y21a{bottom:661.053333pt;}
.y24c{bottom:664.093333pt;}
.ye{bottom:669.853333pt;}
.ydf{bottom:670.381067pt;}
.y18b{bottom:672.680000pt;}
.y176{bottom:673.012000pt;}
.ycc{bottom:673.253333pt;}
.y219{bottom:679.453333pt;}
.y5b{bottom:681.693333pt;}
.y76{bottom:682.013333pt;}
.y31{bottom:682.333333pt;}
.y24b{bottom:682.493333pt;}
.y78{bottom:685.853333pt;}
.ye3{bottom:686.191920pt;}
.yf4{bottom:686.192000pt;}
.y18c{bottom:688.805333pt;}
.y177{bottom:689.176000pt;}
.yeb{bottom:692.588680pt;}
.yd{bottom:697.533333pt;}
.y218{bottom:697.853333pt;}
.yf8{bottom:700.100000pt;}
.y24a{bottom:700.893333pt;}
.y18d{bottom:704.932000pt;}
.y178{bottom:705.338667pt;}
.yde{bottom:707.340000pt;}
.yea{bottom:708.590280pt;}
.y5a{bottom:709.373333pt;}
.y4e{bottom:709.533333pt;}
.y30{bottom:709.853333pt;}
.y77{bottom:711.133333pt;}
.yce{bottom:714.620933pt;}
.yed{bottom:715.751613pt;}
.y217{bottom:716.253333pt;}
.y249{bottom:719.293333pt;}
.y18e{bottom:721.057333pt;}
.ydc{bottom:721.234667pt;}
.y179{bottom:721.501333pt;}
.yda{bottom:724.129333pt;}
.yc{bottom:725.053333pt;}
.ye9{bottom:725.270013pt;}
.y183{bottom:730.733333pt;}
.y16e{bottom:731.200000pt;}
.yec{bottom:732.431347pt;}
.ydb{bottom:733.678293pt;}
.y216{bottom:734.653333pt;}
.y59{bottom:736.893333pt;}
.y4d{bottom:737.213333pt;}
.y2f{bottom:737.533333pt;}
.y248{bottom:737.693333pt;}
.ye8{bottom:741.949747pt;}
.yd9{bottom:745.693333pt;}
.yb{bottom:752.733333pt;}
.y215{bottom:753.053333pt;}
.y247{bottom:756.093333pt;}
.yf7{bottom:756.907333pt;}
.y58{bottom:764.573333pt;}
.y2e{bottom:765.053333pt;}
.y17c{bottom:767.253200pt;}
.y191{bottom:768.571333pt;}
.y193{bottom:768.571467pt;}
.yc8{bottom:768.628000pt;}
.y214{bottom:771.453333pt;}
.y246{bottom:774.493333pt;}
.ye6{bottom:776.067387pt;}
.ya{bottom:780.253333pt;}
.y206{bottom:783.133333pt;}
.y7a{bottom:784.000000pt;}
.ye7{bottom:784.024680pt;}
.y213{bottom:789.853333pt;}
.y57{bottom:792.093333pt;}
.y71{bottom:792.413333pt;}
.y2d{bottom:792.733333pt;}
.y245{bottom:792.893333pt;}
.ye5{bottom:793.035120pt;}
.y79{bottom:800.000000pt;}
.yee{bottom:803.606667pt;}
.yef{bottom:803.639479pt;}
.yf0{bottom:803.716563pt;}
.y9{bottom:807.933333pt;}
.y212{bottom:808.253333pt;}
.y181{bottom:808.326133pt;}
.y195{bottom:809.964000pt;}
.y244{bottom:811.333333pt;}
.y205{bottom:817.093333pt;}
.ycd{bottom:819.224000pt;}
.y56{bottom:819.813333pt;}
.y4a{bottom:819.973333pt;}
.y2c{bottom:820.293333pt;}
.y180{bottom:826.465733pt;}
.y194{bottom:826.466667pt;}
.y211{bottom:826.693333pt;}
.y243{bottom:829.733333pt;}
.yf1{bottom:830.733333pt;}
.y8{bottom:835.493333pt;}
.y210{bottom:845.093333pt;}
.y55{bottom:847.333333pt;}
.y49{bottom:847.653333pt;}
.y2b{bottom:847.973333pt;}
.y242{bottom:848.133333pt;}
.y204{bottom:851.013333pt;}
.ydd{bottom:860.154473pt;}
.y20f{bottom:863.333333pt;}
.y203{bottom:865.573333pt;}
.y241{bottom:866.533333pt;}
.yf6{bottom:869.048533pt;}
.y54{bottom:875.013333pt;}
.ye4{bottom:875.425253pt;}
.y2a{bottom:875.493333pt;}
.y7{bottom:876.453333pt;}
.y20e{bottom:881.733333pt;}
.y17d{bottom:882.669867pt;}
.y192{bottom:882.876133pt;}
.y202{bottom:883.493333pt;}
.y240{bottom:884.933333pt;}
.y17b{bottom:894.363067pt;}
.y190{bottom:894.456800pt;}
.y20d{bottom:900.133333pt;}
.y201{bottom:901.413333pt;}
.y53{bottom:902.533333pt;}
.y29{bottom:903.173333pt;}
.y23f{bottom:903.333333pt;}
.y6{bottom:917.413333pt;}
.y20c{bottom:918.533333pt;}
.y1ff{bottom:919.973333pt;}
.y23e{bottom:921.733333pt;}
.ye1{bottom:924.214800pt;}
.yf5{bottom:925.505333pt;}
.y17f{bottom:928.269333pt;}
.y52{bottom:930.213333pt;}
.y28{bottom:930.693333pt;}
.ye2{bottom:932.967920pt;}
.y20b{bottom:936.933333pt;}
.y23d{bottom:940.133333pt;}
.y17e{bottom:941.892000pt;}
.y1fe{bottom:942.693333pt;}
.ye0{bottom:944.599733pt;}
.y20a{bottom:955.333333pt;}
.y51{bottom:957.733333pt;}
.y5{bottom:958.053333pt;}
.y27{bottom:958.373333pt;}
.y23c{bottom:958.533333pt;}
.y1fd{bottom:960.613333pt;}
.yf2{bottom:967.014667pt;}
.y209{bottom:973.733333pt;}
.yf3{bottom:974.017333pt;}
.y23b{bottom:976.933333pt;}
.y1fc{bottom:978.533333pt;}
.y50{bottom:985.413333pt;}
.y4{bottom:985.573333pt;}
.y26{bottom:985.893333pt;}
.y208{bottom:992.133333pt;}
.y23a{bottom:995.333333pt;}
.y1fb{bottom:996.453333pt;}
.y18f{bottom:1009.102667pt;}
.y17a{bottom:1010.124000pt;}
.y207{bottom:1010.853333pt;}
.y3{bottom:1013.253333pt;}
.y4f{bottom:1013.413333pt;}
.y25{bottom:1013.573333pt;}
.y239{bottom:1013.733333pt;}
.y1fa{bottom:1014.373333pt;}
.yac{bottom:1040.000000pt;}
.y24{bottom:1090.560000pt;}
.y23{bottom:1106.560000pt;}
.h15{height:6.203028pt;}
.h50{height:16.924078pt;}
.h52{height:16.985580pt;}
.h5d{height:17.920000pt;}
.h4c{height:19.218851pt;}
.h45{height:19.940716pt;}
.h4d{height:19.951782pt;}
.h47{height:20.063719pt;}
.h49{height:20.105496pt;}
.h4f{height:20.197748pt;}
.h1b{height:20.274470pt;}
.h53{height:20.328090pt;}
.h33{height:20.389358pt;}
.h4b{height:20.838466pt;}
.h30{height:20.854657pt;}
.h11{height:22.137675pt;}
.h51{height:22.277305pt;}
.h29{height:23.171017pt;}
.h2e{height:23.171716pt;}
.h40{height:23.802494pt;}
.h3f{height:24.033901pt;}
.h3c{height:24.249195pt;}
.h38{height:25.153351pt;}
.h2b{height:25.487610pt;}
.h46{height:27.692499pt;}
.h4e{height:27.707874pt;}
.h27{height:27.804475pt;}
.h48{height:27.863297pt;}
.h4a{height:27.921343pt;}
.h42{height:28.174338pt;}
.h3d{height:28.238596pt;}
.h35{height:28.282548pt;}
.h3a{height:28.290041pt;}
.h19{height:32.438709pt;}
.h13{height:32.483504pt;}
.h31{height:32.628028pt;}
.h12{height:33.250077pt;}
.h1c{height:36.492679pt;}
.h5b{height:38.230100pt;}
.h56{height:38.727697pt;}
.h43{height:39.127185pt;}
.h3e{height:39.216486pt;}
.h36{height:39.277444pt;}
.h3b{height:39.287539pt;}
.h5e{height:40.048750pt;}
.h1a{height:40.549018pt;}
.h14{height:40.604787pt;}
.h32{height:40.780036pt;}
.h10{height:41.563012pt;}
.h2f{height:41.709158pt;}
.h37{height:42.170807pt;}
.h2{height:44.648750pt;}
.h25{height:46.341568pt;}
.h28{height:46.341957pt;}
.h2d{height:46.343509pt;}
.h5c{height:47.380000pt;}
.h57{height:47.523452pt;}
.h2a{height:50.976307pt;}
.h58{height:52.095002pt;}
.h5a{height:55.249182pt;}
.h26{height:55.610270pt;}
.h7{height:55.625000pt;}
.h55{height:56.479211pt;}
.h18{height:56.768469pt;}
.hf{height:56.846774pt;}
.hb{height:57.375000pt;}
.h23{height:57.718946pt;}
.hc{height:57.787500pt;}
.h34{height:58.917137pt;}
.h16{height:59.849450pt;}
.h44{height:61.500663pt;}
.h6{height:62.781250pt;}
.h5{height:62.812500pt;}
.h39{height:63.257570pt;}
.h3{height:64.500000pt;}
.h17{height:66.500005pt;}
.h8{height:66.625000pt;}
.ha{height:67.881250pt;}
.h2c{height:69.513711pt;}
.h41{height:70.285585pt;}
.h4{height:71.524375pt;}
.h9{height:71.631042pt;}
.h54{height:72.614797pt;}
.h5f{height:75.465000pt;}
.h59{height:81.509058pt;}
.h20{height:84.607966pt;}
.h21{height:87.370467pt;}
.h1e{height:91.662396pt;}
.h1f{height:91.663535pt;}
.h24{height:112.816704pt;}
.h1d{height:112.820198pt;}
.h22{height:115.437892pt;}
.hd{height:816.000000pt;}
.he{height:1056.000000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:96.000000pt;}
.w5{width:96.032000pt;}
.w6{width:96.160000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.w3{width:816.000000pt;}
.w2{width:1056.000000pt;}
.x0{left:0.000000pt;}
.x16{left:1.410933pt;}
.x8f{left:3.138933pt;}
.x6{left:6.666667pt;}
.x31{left:8.750517pt;}
.x30{left:15.710933pt;}
.x87{left:16.686933pt;}
.xa2{left:19.091733pt;}
.x4d{left:22.388527pt;}
.x2f{left:24.190267pt;}
.xa7{left:27.354667pt;}
.x49{left:29.912000pt;}
.xa1{left:31.824533pt;}
.xad{left:33.920000pt;}
.xaa{left:34.880000pt;}
.x77{left:37.073333pt;}
.xae{left:38.760000pt;}
.x2d{left:39.706267pt;}
.x73{left:42.232533pt;}
.x4e{left:43.287467pt;}
.x63{left:44.382763pt;}
.x45{left:54.404667pt;}
.x13{left:58.734933pt;}
.x32{left:62.619733pt;}
.x5f{left:69.755720pt;}
.x61{left:70.722400pt;}
.x2a{left:76.419333pt;}
.x6e{left:77.329200pt;}
.x70{left:78.381200pt;}
.x74{left:83.274533pt;}
.x6f{left:86.478133pt;}
.x4b{left:91.494773pt;}
.x79{left:94.720267pt;}
.x8d{left:96.092667pt;}
.x8b{left:99.947867pt;}
.x4a{left:101.810400pt;}
.x90{left:104.233200pt;}
.xa6{left:108.832000pt;}
.x8c{left:110.742133pt;}
.x2{left:113.472000pt;}
.x3{left:114.912000pt;}
.x17{left:118.281733pt;}
.x46{left:123.995281pt;}
.x2e{left:128.082933pt;}
.x8{left:137.306667pt;}
.x15{left:146.856267pt;}
.x91{left:148.152000pt;}
.x76{left:151.046267pt;}
.x75{left:153.316000pt;}
.x92{left:154.604000pt;}
.x40{left:156.709333pt;}
.x19{left:157.639000pt;}
.x72{left:159.513333pt;}
.x78{left:163.495733pt;}
.x18{left:164.936400pt;}
.x8a{left:167.460000pt;}
.x21{left:168.787267pt;}
.x4c{left:170.065040pt;}
.x22{left:174.319040pt;}
.xe{left:175.806000pt;}
.x1a{left:180.872867pt;}
.x9{left:189.468267pt;}
.x8e{left:196.801467pt;}
.x1d{left:199.146600pt;}
.x5{left:200.666667pt;}
.xa8{left:204.826667pt;}
.x60{left:209.039720pt;}
.x62{left:210.005333pt;}
.x4f{left:211.132933pt;}
.x4{left:213.306667pt;}
.x7a{left:215.618800pt;}
.x20{left:217.567933pt;}
.x23{left:220.062773pt;}
.x12{left:225.922933pt;}
.x6d{left:234.688000pt;}
.x1c{left:238.803933pt;}
.xf{left:248.844000pt;}
.x7b{left:264.799467pt;}
.x24{left:273.478373pt;}
.x71{left:275.661333pt;}
.x29{left:277.862200pt;}
.x36{left:279.451584pt;}
.x33{left:281.482667pt;}
.x35{left:286.412000pt;}
.x5d{left:288.995733pt;}
.x26{left:290.798120pt;}
.x38{left:294.654667pt;}
.x25{left:299.098640pt;}
.xa9{left:300.866667pt;}
.x5e{left:303.595213pt;}
.x50{left:305.052227pt;}
.x14{left:311.057600pt;}
.x28{left:316.750200pt;}
.x1e{left:322.225267pt;}
.x27{left:327.336653pt;}
.x37{left:333.320000pt;}
.x41{left:345.550667pt;}
.x1b{left:364.007533pt;}
.xab{left:396.866667pt;}
.x34{left:398.782667pt;}
.x95{left:416.703467pt;}
.x89{left:417.836000pt;}
.x11{left:421.430933pt;}
.x82{left:423.451733pt;}
.x43{left:425.820000pt;}
.x88{left:427.936000pt;}
.x47{left:433.190615pt;}
.x65{left:457.304000pt;}
.x67{left:458.357333pt;}
.x48{left:459.631815pt;}
.x6c{left:463.434667pt;}
.x66{left:466.450667pt;}
.x7d{left:468.241333pt;}
.x59{left:470.040000pt;}
.x64{left:471.630667pt;}
.x7e{left:477.352000pt;}
.x1f{left:480.691933pt;}
.x7c{left:482.513333pt;}
.x84{left:485.741333pt;}
.xac{left:492.893333pt;}
.x56{left:495.310032pt;}
.x93{left:503.256000pt;}
.x9b{left:504.954667pt;}
.xa{left:511.240267pt;}
.x81{left:536.326267pt;}
.x7f{left:538.574667pt;}
.x57{left:545.994350pt;}
.x83{left:548.655867pt;}
.x3d{left:550.151584pt;}
.x6b{left:551.597600pt;}
.x69{left:553.973333pt;}
.x3c{left:557.112000pt;}
.x3b{left:562.208533pt;}
.x3e{left:565.289333pt;}
.xd{left:573.172667pt;}
.xa4{left:575.366667pt;}
.x39{left:582.205333pt;}
.xa0{left:585.112400pt;}
.x99{left:586.037867pt;}
.x94{left:588.500267pt;}
.x9c{left:590.508800pt;}
.xb{left:593.867867pt;}
.x85{left:597.950667pt;}
.x3f{left:604.020000pt;}
.x42{left:612.740000pt;}
.x5c{left:617.083442pt;}
.x5b{left:618.246708pt;}
.x5a{left:621.170667pt;}
.x86{left:625.172000pt;}
.x44{left:635.404000pt;}
.x68{left:637.970667pt;}
.x10{left:655.802933pt;}
.x51{left:658.918352pt;}
.x80{left:663.301733pt;}
.x7{left:665.573333pt;}
.x58{left:667.328000pt;}
.x3a{left:670.582000pt;}
.x2c{left:672.001333pt;}
.x1{left:673.093333pt;}
.x2b{left:676.578667pt;}
.x9f{left:681.508267pt;}
.x9d{left:683.428000pt;}
.x6a{left:685.774933pt;}
.x98{left:691.678533pt;}
.x96{left:693.782667pt;}
.x9a{left:703.218133pt;}
.x55{left:711.330667pt;}
.xa5{left:720.298667pt;}
.xa3{left:722.360000pt;}
.x54{left:753.265752pt;}
.x53{left:758.035019pt;}
.x52{left:763.289685pt;}
.x9e{left:789.946267pt;}
.xc{left:793.742000pt;}
.x97{left:810.516533pt;}
}




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