
    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_9644f4ce81d086d0a9bb0e5f.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.945000;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_8459e06025d9234badd35885.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_5127437ef879f41f9bc33210.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.900000;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_cee57cbb59d81ca3a3e49fa1.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_218e87411b01bb7e1f1f67de.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.939453;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_218e87411b01bb7e1f1f67de.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.939453;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_f76f476d091ef0cd508ff950.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.939453;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_218e87411b01bb7e1f1f67de.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.939453;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_218e87411b01bb7e1f1f67de.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.939453;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_f76f476d091ef0cd508ff950.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.939453;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_b91ce0bbf77f15ef8059dbfa.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.939453;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_b91ce0bbf77f15ef8059dbfa.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.939453;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_d0dec4b2e7ced505f9cb61ed.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.939453;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_c94143421fea525927d27f3d.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.939453;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_c94143421fea525927d27f3d.woff2')format("woff");}.fff{font-family:fff;line-height:0.939453;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_c94143421fea525927d27f3d.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.939453;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_b06ac812542c85793d1c5c3e.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.939453;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_d045e5f20f2e3a1eb0bfb6b8.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.939453;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_1b2b3531c1c566061ef2835e.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.939453;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_1b2b3531c1c566061ef2835e.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.939453;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_f9cba8a537d35d19be6b951e.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.939453;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_f9cba8a537d35d19be6b951e.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.939453;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_022987c7815db0aa03c381b2.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.939453;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_402c4a610639a98407363360.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.939453;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_0fe31444f11f2628b39d5a8c.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.939453;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_0ff05451080ae24e7b7fe860.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.939453;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_931e7ab3d4d9bdd4d105a32d.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.938965;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_97217040143ab6f5735c06a2.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.938965;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_89102a88da8fb58b641b1d5e.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.938965;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_931e7ab3d4d9bdd4d105a32d.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:0.938965;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_97217040143ab6f5735c06a2.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:0.938965;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_dd4f5f08dc2489f6596219ad.woff2')format("woff");}.ff20{font-family:ff20;line-height:0.938965;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_5924e21bfe328e34adcad1f1.woff2')format("woff");}.ff21{font-family:ff21;line-height:0.938965;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_2ef0a8613a28438d0b72eabe.woff2')format("woff");}.ff22{font-family:ff22;line-height:0.938965;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_f0aeac5f9842c7fdee1b6ef8.woff2')format("woff");}.ff23{font-family:ff23;line-height:0.938965;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_5924e21bfe328e34adcad1f1.woff2')format("woff");}.ff24{font-family:ff24;line-height:0.938965;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_2ef0a8613a28438d0b72eabe.woff2')format("woff");}.ff25{font-family:ff25;line-height:0.938965;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_f0aeac5f9842c7fdee1b6ef8.woff2')format("woff");}.ff26{font-family:ff26;line-height:0.938965;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_94d0f83421c3d3849dc29fd3.woff2')format("woff");}.ff27{font-family:ff27;line-height:0.938965;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_1702d7d4877ee45870597b0d.woff2')format("woff");}.ff28{font-family:ff28;line-height:0.938965;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_e3b253d447a5f44ccfe36478.woff2')format("woff");}.ff29{font-family:ff29;line-height:0.938965;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_94d0f83421c3d3849dc29fd3.woff2')format("woff");}.ff2a{font-family:ff2a;line-height:0.938965;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_1702d7d4877ee45870597b0d.woff2')format("woff");}.ff2b{font-family:ff2b;line-height:0.938965;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_e3b253d447a5f44ccfe36478.woff2')format("woff");}.ff2c{font-family:ff2c;line-height:0.938965;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_7a3b0b200012d5500c5d8f98.woff2')format("woff");}.ff2d{font-family:ff2d;line-height:0.938965;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:ff2e;src:url('chunks/assets/font_4411b3b5e31dad0047c2c9b3.woff2')format("woff");}.ff2e{font-family:ff2e;line-height:0.938965;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:ff2f;src:url('chunks/assets/font_fda056dc121bcdde872e6260.woff2')format("woff");}.ff2f{font-family:ff2f;line-height:0.938965;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:ff30;src:url('chunks/assets/font_7a3b0b200012d5500c5d8f98.woff2')format("woff");}.ff30{font-family:ff30;line-height:0.938965;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:ff31;src:url('chunks/assets/font_4411b3b5e31dad0047c2c9b3.woff2')format("woff");}.ff31{font-family:ff31;line-height:0.938965;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:ff32;src:url('chunks/assets/font_fda056dc121bcdde872e6260.woff2')format("woff");}.ff32{font-family:ff32;line-height:0.938965;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;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:13.686000px;}
.ls2{letter-spacing:0.000000px;}
.ls4{letter-spacing:2.955527px;}
.ls1{letter-spacing:2.964877px;}
.lse{letter-spacing:2.983492px;}
.ls3{letter-spacing:2.983834px;}
.ls6{letter-spacing:2.984725px;}
.ls5{letter-spacing:2.986766px;}
.lsf{letter-spacing:2.987108px;}
.lsd{letter-spacing:2.987675px;}
.lsa{letter-spacing:2.988017px;}
.ls8{letter-spacing:2.988780px;}
.ls9{letter-spacing:2.989492px;}
.ls7{letter-spacing:2.989834px;}
.lsb{letter-spacing:2.990725px;}
.lsc{letter-spacing:2.992766px;}
.ls0{letter-spacing:2.993675px;}
.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:-14.943900px;}
.wsd{word-spacing:-14.920027px;}
.ws20{word-spacing:-11.955150px;}
.ws46{word-spacing:-2.988780px;}
.ws32{word-spacing:-0.059776px;}
.ws6c{word-spacing:-0.016652px;}
.ws10{word-spacing:0.000000px;}
.ws1e{word-spacing:0.002268px;}
.ws5f{word-spacing:0.006326px;}
.ws6a{word-spacing:0.012026px;}
.ws5d{word-spacing:0.020240px;}
.ws1a{word-spacing:0.597756px;}
.ws13{word-spacing:2.749678px;}
.wsc{word-spacing:2.929004px;}
.ws4c{word-spacing:2.988780px;}
.ws7{word-spacing:3.227882px;}
.ws19{word-spacing:3.526760px;}
.ws8{word-spacing:3.586536px;}
.ws62{word-spacing:3.646312px;}
.ws5b{word-spacing:4.184280px;}
.ws70{word-spacing:4.363619px;}
.ws1b{word-spacing:4.423394px;}
.ws14{word-spacing:4.602721px;}
.ws1c{word-spacing:4.722272px;}
.ws4a{word-spacing:4.782060px;}
.ws40{word-spacing:4.901599px;}
.ws6f{word-spacing:5.379804px;}
.ws65{word-spacing:5.379840px;}
.ws44{word-spacing:5.738458px;}
.ws6e{word-spacing:5.798233px;}
.ws9{word-spacing:5.917784px;}
.ws5e{word-spacing:5.923283px;}
.ws59{word-spacing:5.923745px;}
.ws3c{word-spacing:5.926319px;}
.ws69{word-spacing:5.929283px;}
.ws54{word-spacing:5.929745px;}
.ws12{word-spacing:5.929754px;}
.ws6b{word-spacing:5.935670px;}
.ws60{word-spacing:5.935781px;}
.ws55{word-spacing:5.936522px;}
.ws6d{word-spacing:5.940233px;}
.ws61{word-spacing:5.941670px;}
.ws1f{word-spacing:5.949757px;}
.ws4d{word-spacing:5.957386px;}
.wsa{word-spacing:5.977560px;}
.ws22{word-spacing:5.977575px;}
.ws1{word-spacing:6.336214px;}
.ws3f{word-spacing:6.395989px;}
.ws2a{word-spacing:6.572134px;}
.ws28{word-spacing:6.575316px;}
.ws37{word-spacing:6.694867px;}
.ws39{word-spacing:7.050883px;}
.ws38{word-spacing:7.354021px;}
.wse{word-spacing:7.471950px;}
.ws2b{word-spacing:7.650883px;}
.ws29{word-spacing:7.948021px;}
.ws17{word-spacing:8.308808px;}
.ws21{word-spacing:8.368584px;}
.ws1d{word-spacing:8.428360px;}
.ws36{word-spacing:8.966340px;}
.ws6{word-spacing:9.205442px;}
.ws57{word-spacing:9.384769px;}
.ws41{word-spacing:9.520517px;}
.ws18{word-spacing:9.743423px;}
.wsb{word-spacing:10.042301px;}
.ws2c{word-spacing:10.102076px;}
.ws2f{word-spacing:10.130134px;}
.ws16{word-spacing:10.221628px;}
.ws4e{word-spacing:10.341179px;}
.ws5c{word-spacing:10.455546px;}
.ws56{word-spacing:10.819384px;}
.ws30{word-spacing:11.208883px;}
.ws2e{word-spacing:11.500021px;}
.ws15{word-spacing:11.596466px;}
.ws31{word-spacing:11.740517px;}
.ws3b{word-spacing:11.955120px;}
.ws3d{word-spacing:12.134447px;}
.ws47{word-spacing:12.253998px;}
.ws2d{word-spacing:12.816329px;}
.ws71{word-spacing:13.724512px;}
.ws0{word-spacing:14.346180px;}
.ws5{word-spacing:15.302554px;}
.ws51{word-spacing:16.199188px;}
.ws4{word-spacing:16.796944px;}
.ws11{word-spacing:17.932680px;}
.ws2{word-spacing:20.116192px;}
.ws26{word-spacing:59.772490px;}
.ws25{word-spacing:59.775750px;}
.ws5a{word-spacing:61.257859px;}
.ws3e{word-spacing:71.730900px;}
.ws34{word-spacing:74.569971px;}
.ws50{word-spacing:78.535635px;}
.ws23{word-spacing:83.686050px;}
.ws48{word-spacing:91.624308px;}
.ws4b{word-spacing:91.885325px;}
.ws64{word-spacing:92.899489px;}
.ws68{word-spacing:92.899547px;}
.ws33{word-spacing:111.275835px;}
.ws3a{word-spacing:111.316597px;}
.ws24{word-spacing:111.565460px;}
.ws27{word-spacing:111.568200px;}
.ws35{word-spacing:118.102087px;}
.ws66{word-spacing:131.506650px;}
.ws53{word-spacing:140.783846px;}
.ws63{word-spacing:142.442083px;}
.ws67{word-spacing:142.731698px;}
.ws43{word-spacing:157.875058px;}
.ws42{word-spacing:182.749942px;}
.ws45{word-spacing:182.795302px;}
.ws4f{word-spacing:428.838730px;}
.ws52{word-spacing:539.320727px;}
.ws49{word-spacing:1072.185673px;}
.ws58{word-spacing:1103.269063px;}
.wsf{word-spacing:2731.998662px;}
._3{margin-left:-6.635092px;}
._22{margin-left:-5.559131px;}
._4{margin-left:-4.423394px;}
._0{margin-left:-2.689902px;}
._2{margin-left:-1.494390px;}
._16{width:1.331735px;}
._1{width:2.613685px;}
._5{width:3.805109px;}
._18{width:14.525471px;}
._b1{width:15.625667px;}
._13f{width:17.932725px;}
._49{width:19.952243px;}
._43{width:21.877870px;}
._17{width:25.524181px;}
._140{width:29.887875px;}
._13{width:51.466792px;}
._32{width:71.730900px;}
._11{width:74.719500px;}
._130{width:76.326465px;}
._28{width:77.708475px;}
._2f{width:80.967981px;}
._19{width:83.686050px;}
._38{width:85.407592px;}
._1d{width:90.954781px;}
._48{width:92.681802px;}
._a{width:94.624775px;}
._21{width:95.641200px;}
._c{width:97.972208px;}
._42{width:105.886092px;}
._27{width:107.596350px;}
._33{width:109.317892px;}
._31{width:112.234948px;}
._3e{width:113.860849px;}
._23{width:114.944433px;}
._1b{width:116.825726px;}
._8{width:117.877483px;}
._4e{width:119.777641px;}
._e{width:121.224917px;}
._37{width:122.946763px;}
._40{width:124.572663px;}
._1c{width:133.515115px;}
._34{width:134.901913px;}
._6{width:141.130192px;}
._25{width:142.942174px;}
._2c{width:145.393026px;}
._a1{width:147.118711px;}
._3f{width:148.769887px;}
._41{width:150.443608px;}
._30{width:152.738996px;}
._24{width:155.369723px;}
._e4{width:156.551490px;}
._2b{width:157.840435px;}
._95{width:164.752679px;}
._13e{width:167.756223px;}
._13d{width:168.962965px;}
._2a{width:170.267910px;}
._3a{width:173.766935px;}
._3b{width:178.897895px;}
._2e{width:180.123305px;}
._29{width:182.715319px;}
._26{width:183.965848px;}
._1a{width:197.212154px;}
._45{width:199.631999px;}
._36{width:212.562567px;}
._3c{width:220.950492px;}
._35{width:231.164780px;}
._ec{width:238.425883px;}
._55{width:247.715332px;}
._e8{width:251.253673px;}
._134{width:253.112341px;}
._81{width:255.898224px;}
._47{width:256.914439px;}
._111{width:260.497399px;}
._82{width:268.728090px;}
._dc{width:272.258759px;}
._b9{width:283.275756px;}
._39{width:291.678636px;}
._2d{width:297.699995px;}
._3d{width:299.269720px;}
._fa{width:313.210909px;}
._5f{width:317.597813px;}
._90{width:319.439520px;}
._77{width:323.348818px;}
._126{width:328.516102px;}
._76{width:331.633692px;}
._a7{width:332.697712px;}
._120{width:337.659055px;}
._20{width:339.287157px;}
._d1{width:340.885905px;}
._109{width:343.116569px;}
._ff{width:369.919854px;}
._108{width:371.677264px;}
._91{width:373.309121px;}
._58{width:374.564405px;}
._85{width:376.782073px;}
._7e{width:379.878452px;}
._1f{width:381.847491px;}
._7f{width:383.727978px;}
._66{width:386.837758px;}
._be{width:388.414372px;}
._e9{width:390.487174px;}
._71{width:392.054695px;}
._ad{width:393.573019px;}
._a3{width:396.657403px;}
._52{width:400.088513px;}
._103{width:401.236218px;}
._96{width:406.759774px;}
._54{width:409.293929px;}
._98{width:414.105871px;}
._d3{width:416.323519px;}
._57{width:427.782485px;}
._f3{width:430.257172px;}
._99{width:432.164023px;}
._6d{width:439.420477px;}
._117{width:440.783017px;}
._1e{width:445.544530px;}
._106{width:462.045749px;}
._cf{width:465.327760px;}
._a9{width:467.064458px;}
._101{width:468.446771px;}
._78{width:472.764095px;}
._72{width:474.143679px;}
._60{width:475.495229px;}
._e2{width:480.044142px;}
._10c{width:481.430916px;}
._6a{width:483.875748px;}
._73{width:484.945711px;}
._ea{width:485.991781px;}
._ab{width:487.486171px;}
._11d{width:500.373028px;}
._b3{width:502.053455px;}
._53{width:503.565757px;}
._a4{width:504.653670px;}
._8d{width:505.867111px;}
._11a{width:507.356222px;}
._5a{width:509.298221px;}
._b6{width:510.386134px;}
._4b{width:512.771173px;}
._d7{width:513.817243px;}
._5b{width:517.326418px;}
._9c{width:518.545480px;}
._6b{width:520.672873px;}
._c5{width:522.341224px;}
._51{width:525.401737px;}
._83{width:527.027617px;}
._50{width:532.192566px;}
._93{width:533.369565px;}
._11f{width:535.303810px;}
._4d{width:540.680321px;}
._c2{width:541.810076px;}
._75{width:546.454627px;}
._8c{width:555.785572px;}
._6f{width:558.535246px;}
._d5{width:560.513808px;}
._e6{width:563.120024px;}
._8f{width:565.194224px;}
._9a{width:567.764575px;}
._f1{width:569.802910px;}
._8a{width:575.660902px;}
._84{width:577.836727px;}
._a6{width:581.400077px;}
._dd{width:583.374690px;}
._12b{width:585.576920px;}
._107{width:588.415561px;}
._9d{width:589.510868px;}
._67{width:591.923108px;}
._c3{width:594.453578px;}
._11e{width:595.790512px;}
._ee{width:598.064746px;}
._70{width:599.367237px;}
._94{width:602.727227px;}
._9e{width:604.616119px;}
._114{width:606.068666px;}
._9b{width:608.172757px;}
._7d{width:610.713217px;}
._12d{width:615.531461px;}
._92{width:617.659122px;}
._69{width:620.635322px;}
._127{width:623.242276px;}
._13b{width:625.974580px;}
._b5{width:627.139508px;}
._f5{width:628.532284px;}
._11c{width:630.265030px;}
._122{width:631.928342px;}
._ae{width:633.655022px;}
._68{width:636.733472px;}
._c7{width:638.198348px;}
._b4{width:639.572396px;}
._87{width:641.730683px;}
._5c{width:642.842899px;}
._4a{width:644.086220px;}
._7b{width:646.548926px;}
._136{width:647.696990px;}
._a8{width:649.674853px;}
._74{width:652.275068px;}
._79{width:654.438952px;}
._86{width:657.003305px;}
._f6{width:658.669610px;}
._118{width:661.177164px;}
._da{width:662.693926px;}
._6e{width:664.122902px;}
._aa{width:666.208721px;}
._88{width:668.577710px;}
._e0{width:669.813523px;}
._97{width:670.936957px;}
._af{width:673.716866px;}
._59{width:675.539665px;}
._5e{width:677.882862px;}
._a2{width:679.217183px;}
._10e{width:681.272129px;}
._112{width:683.573483px;}
._61{width:685.659033px;}
._b2{width:686.843600px;}
._bd{width:690.561230px;}
._80{width:691.774672px;}
._bb{width:693.502567px;}
._8e{width:695.247624px;}
._d8{width:697.583426px;}
._b7{width:705.750167px;}
._135{width:709.706205px;}
._4c{width:710.717509px;}
._a0{width:718.512221px;}
._63{width:723.377680px;}
._9f{width:726.671567px;}
._65{width:729.038066px;}
._cc{width:732.404030px;}
._7c{width:735.960668px;}
._12e{width:738.297391px;}
._8b{width:740.605219px;}
._c1{width:742.621700px;}
._139{width:744.538442px;}
._ca{width:746.379526px;}
._10f{width:750.669976px;}
._cb{width:757.657724px;}
._104{width:760.313178px;}
._64{width:768.514367px;}
._5d{width:769.843789px;}
._df{width:772.506655px;}
._c8{width:779.756339px;}
._100{width:783.809482px;}
._121{width:788.598911px;}
._62{width:790.075750px;}
._eb{width:791.078179px;}
._129{width:792.609230px;}
._ac{width:796.423514px;}
._124{width:798.013541px;}
._89{width:802.747138px;}
._c9{width:804.631025px;}
._132{width:807.260800px;}
._56{width:809.825551px;}
._a5{width:812.700364px;}
._10a{width:816.626180px;}
._11b{width:825.115724px;}
._fe{width:826.130817px;}
._123{width:835.295476px;}
._bc{width:837.142892px;}
._fb{width:844.451642px;}
._fd{width:846.174994px;}
._b0{width:850.819544px;}
._f4{width:855.235133px;}
._f7{width:856.271059px;}
._115{width:858.496987px;}
._7a{width:861.363930px;}
._b8{width:865.643846px;}
._db{width:868.996152px;}
._46{width:870.288397px;}
._44{width:873.845035px;}
._6c{width:876.104546px;}
._f8{width:877.824279px;}
._d2{width:880.287741px;}
._e5{width:881.733577px;}
._4f{width:885.393648px;}
._f9{width:888.028261px;}
._105{width:890.257557px;}
._c6{width:903.653242px;}
._d4{width:909.379725px;}
._c0{width:910.402240px;}
._ed{width:911.902235px;}
._119{width:912.980016px;}
._116{width:914.231291px;}
._f2{width:918.083019px;}
._15{width:920.618656px;}
._102{width:927.718826px;}
._d0{width:935.748592px;}
._13c{width:937.517436px;}
._12f{width:940.165495px;}
._fc{width:941.970732px;}
._128{width:944.463341px;}
._e7{width:949.100485px;}
._110{width:952.597351px;}
._cd{width:957.002812px;}
._131{width:958.355150px;}
._125{width:965.516591px;}
._12c{width:968.326078px;}
._13a{width:972.330646px;}
._d6{width:980.889062px;}
._d9{width:989.383138px;}
._f0{width:997.817081px;}
._10b{width:1002.479959px;}
._c4{width:1007.684533px;}
._12a{width:1009.528895px;}
._10d{width:1035.129281px;}
._ce{width:1038.034967px;}
._bf{width:1040.665198px;}
._e3{width:1042.040738px;}
._de{width:1056.278918px;}
._113{width:1072.285688px;}
._138{width:1120.956661px;}
._ef{width:1127.327644px;}
._133{width:1131.052727px;}
._ba{width:1140.425514px;}
._e1{width:1142.719461px;}
._137{width:1151.974127px;}
._14{width:1334.146256px;}
._7{width:1649.938951px;}
._f{width:1744.445975px;}
._b{width:1810.735315px;}
._12{width:2000.763748px;}
._9{width:2007.636142px;}
._10{width:2125.216547px;}
._d{width:2273.278908px;}
.fc2{color:transparent;}
.fc1{color:rgb(26,26,26);}
.fc0{color:rgb(0,0,0);}
.fsb{font-size:41.842800px;}
.fs3{font-size:44.739000px;}
.fsc{font-size:46.426560px;}
.fs9{font-size:47.118240px;}
.fs2{font-size:47.820600px;}
.fs4{font-size:49.710000px;}
.fsa{font-size:52.353600px;}
.fsd{font-size:53.798400px;}
.fs5{font-size:54.970920px;}
.fs7{font-size:55.127520px;}
.fs1{font-size:59.775600px;}
.fs6{font-size:61.078800px;}
.fs8{font-size:61.252800px;}
.fs0{font-size:143.461800px;}
.y0{bottom:0.000000px;}
.yf4{bottom:9.877014px;}
.yc4{bottom:10.405278px;}
.y87{bottom:12.139412px;}
.ya5{bottom:12.173994px;}
.y196{bottom:13.189082px;}
.y1a2{bottom:14.629546px;}
.y5a{bottom:16.084261px;}
.y1f6{bottom:16.358108px;}
.y1ff{bottom:16.941211px;}
.y4b{bottom:17.740256px;}
.ybe{bottom:23.166468px;}
.yf1{bottom:24.807384px;}
.y82{bottom:27.027369px;}
.y9f{bottom:27.104364px;}
.ybf{bottom:37.934542px;}
.y19d{bottom:39.571388px;}
.y1a8{bottom:43.198463px;}
.y61{bottom:43.838006px;}
.ydb{bottom:44.256675px;}
.ya0{bottom:44.382753px;}
.yf5{bottom:46.552128px;}
.y1fc{bottom:47.550953px;}
.y52{bottom:47.566256px;}
.y83{bottom:48.564013px;}
.yaa{bottom:48.702362px;}
.y205{bottom:50.452613px;}
.y2c{bottom:52.687500px;}
.yc0{bottom:52.702628px;}
.y8c{bottom:55.742887px;}
.y5b{bottom:55.954819px;}
.y197{bottom:56.618641px;}
.yf2{bottom:58.373918px;}
.y4c{bottom:59.683069px;}
.y1a3{bottom:60.245716px;}
.ydc{bottom:61.485997px;}
.ya1{bottom:61.661157px;}
.y1f7{bottom:64.598206px;}
.yc1{bottom:67.470702px;}
.y200{bottom:67.499866px;}
.yf6{bottom:68.296872px;}
.y84{bottom:70.100650px;}
.yab{bottom:70.300352px;}
.ydd{bottom:78.715303px;}
.ya2{bottom:78.939546px;}
.yc2{bottom:82.238778px;}
.y8d{bottom:84.458406px;}
.y198{bottom:85.514336px;}
.y25a{bottom:88.778703px;}
.y216{bottom:89.141411px;}
.yf7{bottom:90.041616px;}
.y20d{bottom:91.535280px;}
.y85{bottom:91.637287px;}
.yac{bottom:91.898342px;}
.yf3{bottom:91.940453px;}
.y1b4{bottom:92.738258px;}
.y5c{bottom:93.355380px;}
.y4d{bottom:93.941535px;}
.y208{bottom:94.823826px;}
.yde{bottom:95.944613px;}
.ya3{bottom:96.217938px;}
.y1a4{bottom:96.365333px;}
.yc3{bottom:97.006856px;}
.y1f8{bottom:98.269547px;}
.y201{bottom:103.619483px;}
.yf8{bottom:111.786360px;}
.y25b{bottom:112.959201px;}
.y86{bottom:113.173924px;}
.ya4{bottom:113.496331px;}
.y199{bottom:114.410031px;}
.yc5{bottom:115.941411px;}
.y217{bottom:118.037106px;}
.y20e{bottom:118.472362px;}
.y21b{bottom:119.695500px;}
.y209{bottom:125.049453px;}
.y146{bottom:127.743000px;}
.y4e{bottom:128.200027px;}
.y1b5{bottom:128.857882px;}
.y59{bottom:129.121500px;}
.y5d{bottom:130.755941px;}
.y1f9{bottom:131.940896px;}
.y1a5{bottom:132.484957px;}
.y1ae{bottom:134.565000px;}
.y88{bottom:135.264094px;}
.yc6{bottom:135.530382px;}
.ya6{bottom:135.649431px;}
.y259{bottom:136.197000px;}
.y25c{bottom:137.139706px;}
.y145{bottom:139.698000px;}
.y202{bottom:139.739107px;}
.y19a{bottom:143.305733px;}
.y20f{bottom:145.409437px;}
.y21a{bottom:145.698000px;}
.y218{bottom:146.932808px;}
.y58{bottom:147.054000px;}
.y1f5{bottom:149.049000px;}
.y258{bottom:149.647500px;}
.y193{bottom:150.991500px;}
.y144{bottom:151.654500px;}
.y20a{bottom:155.275081px;}
.y89{bottom:158.117744px;}
.ya7{bottom:158.568186px;}
.y1ad{bottom:160.567500px;}
.y25d{bottom:161.320203px;}
.y4f{bottom:162.458494px;}
.y1f4{bottom:162.499500px;}
.y192{bottom:162.946500px;}
.y257{bottom:163.096500px;}
.y143{bottom:163.609500px;}
.y1b6{bottom:164.977506px;}
.y57{bottom:164.986500px;}
.y215{bottom:165.126000px;}
.y1b8{bottom:165.130500px;}
.y1fa{bottom:165.612244px;}
.y5e{bottom:168.156502px;}
.y1a6{bottom:168.604581px;}
.y19b{bottom:172.201428px;}
.y210{bottom:172.346511px;}
.y194{bottom:174.901500px;}
.y191{bottom:174.903000px;}
.ybc{bottom:175.390500px;}
.y142{bottom:175.564500px;}
.y219{bottom:175.828503px;}
.y203{bottom:175.858731px;}
.y1f3{bottom:175.948500px;}
.y256{bottom:177.144000px;}
.y1ac{bottom:179.994000px;}
.y20b{bottom:185.500708px;}
.y56{bottom:186.505500px;}
.y190{bottom:186.858000px;}
.y141{bottom:187.519500px;}
.y1f2{bottom:189.996000px;}
.y255{bottom:190.593000px;}
.y1b7{bottom:191.133000px;}
.ybb{bottom:191.530500px;}
.yb9{bottom:192.067500px;}
.y50{bottom:196.716967px;}
.y18f{bottom:198.813000px;}
.y1fb{bottom:199.283593px;}
.y140{bottom:199.474500px;}
.y19c{bottom:201.097131px;}
.y1f1{bottom:203.445000px;}
.y1a7{bottom:204.724206px;}
.y5f{bottom:205.557064px;}
.yba{bottom:207.669000px;}
.y20c{bottom:208.254558px;}
.y1b3{bottom:210.561000px;}
.y18e{bottom:210.768000px;}
.y13f{bottom:211.429500px;}
.y204{bottom:211.978356px;}
.y254{bottom:215.998500px;}
.y1fd{bottom:222.037443px;}
.y19e{bottom:222.408003px;}
.y18d{bottom:222.723000px;}
.y1a9{bottom:223.149137px;}
.y13e{bottom:223.384500px;}
.yb8{bottom:223.809000px;}
.y206{bottom:224.631394px;}
.y1f0{bottom:228.850500px;}
.y253{bottom:229.447500px;}
.y51{bottom:230.975446px;}
.y18c{bottom:234.678000px;}
.y13d{bottom:235.339500px;}
.yb7{bottom:239.949000px;}
.yb5{bottom:240.486000px;}
.y1ef{bottom:242.299500px;}
.y252{bottom:242.898000px;}
.y60{bottom:242.957625px;}
.y1fe{bottom:244.791292px;}
.y19f{bottom:245.161855px;}
.y1aa{bottom:245.902986px;}
.y18b{bottom:246.633000px;}
.y13c{bottom:247.294500px;}
.y207{bottom:247.385247px;}
.y53{bottom:254.194158px;}
.y1ee{bottom:255.748500px;}
.yb6{bottom:256.087500px;}
.y62{bottom:256.802366px;}
.y251{bottom:256.944000px;}
.y18a{bottom:258.588000px;}
.y13b{bottom:259.251000px;}
.y1ed{bottom:269.796000px;}
.y250{bottom:270.394500px;}
.y189{bottom:270.543000px;}
.y13a{bottom:271.206000px;}
.yb4{bottom:272.227500px;}
.y54{bottom:278.034244px;}
.y63{bottom:280.642453px;}
.y188{bottom:282.499500px;}
.y139{bottom:283.161000px;}
.y1ec{bottom:283.246500px;}
.yb3{bottom:288.366000px;}
.yb1{bottom:288.904500px;}
.y187{bottom:294.454500px;}
.y138{bottom:295.116000px;}
.y24f{bottom:295.798500px;}
.yb2{bottom:304.506000px;}
.y186{bottom:306.409500px;}
.y137{bottom:307.071000px;}
.y1eb{bottom:308.650500px;}
.y24e{bottom:309.249000px;}
.yf0{bottom:315.583500px;}
.y185{bottom:318.364500px;}
.y136{bottom:319.026000px;}
.yb0{bottom:321.243000px;}
.y1ea{bottom:322.101000px;}
.y24d{bottom:322.698000px;}
.y184{bottom:330.319500px;}
.y135{bottom:330.981000px;}
.yef{bottom:331.723500px;}
.yed{bottom:332.260500px;}
.y9d{bottom:333.516000px;}
.y1e9{bottom:335.550000px;}
.y24c{bottom:336.745500px;}
.yaf{bottom:337.383000px;}
.y183{bottom:342.274500px;}
.y134{bottom:342.936000px;}
.y1b{bottom:344.244000px;}
.yee{bottom:347.862000px;}
.y1e8{bottom:349.597500px;}
.y9c{bottom:349.656000px;}
.y9a{bottom:350.193000px;}
.y24b{bottom:350.194500px;}
.y182{bottom:354.229500px;}
.y133{bottom:354.891000px;}
.yae{bottom:363.027000px;}
.y1e7{bottom:363.046500px;}
.yec{bottom:364.002000px;}
.y9b{bottom:365.794500px;}
.y181{bottom:366.184500px;}
.y132{bottom:366.847500px;}
.yd9{bottom:367.497000px;}
.y24a{bottom:375.600000px;}
.y1a{bottom:377.121000px;}
.y180{bottom:378.139500px;}
.y131{bottom:378.802500px;}
.yeb{bottom:380.140500px;}
.ye9{bottom:380.679000px;}
.y99{bottom:381.934500px;}
.yd8{bottom:383.637000px;}
.yd6{bottom:384.174000px;}
.y1e6{bottom:388.452000px;}
.y249{bottom:389.049000px;}
.y17f{bottom:390.096000px;}
.y130{bottom:390.757500px;}
.yea{bottom:396.280500px;}
.y98{bottom:398.074500px;}
.y96{bottom:398.611500px;}
.yd7{bottom:399.775500px;}
.y1e5{bottom:401.901000px;}
.y17e{bottom:402.051000px;}
.y248{bottom:402.499500px;}
.y12f{bottom:402.712500px;}
.y19{bottom:409.998000px;}
.ye8{bottom:412.420500px;}
.y17d{bottom:414.006000px;}
.y97{bottom:414.213000px;}
.y12e{bottom:414.667500px;}
.y1e4{bottom:415.350000px;}
.yd5{bottom:415.915500px;}
.y247{bottom:416.545500px;}
.y17c{bottom:425.961000px;}
.y12d{bottom:426.622500px;}
.ye7{bottom:428.559000px;}
.ye5{bottom:429.097500px;}
.y1e3{bottom:429.397500px;}
.y246{bottom:429.996000px;}
.y95{bottom:430.353000px;}
.yd4{bottom:432.054000px;}
.yd2{bottom:432.592500px;}
.y17b{bottom:437.916000px;}
.y12c{bottom:438.577500px;}
.y214{bottom:438.738000px;}
.y1e2{bottom:442.848000px;}
.y18{bottom:442.873500px;}
.ye6{bottom:444.699000px;}
.y94{bottom:446.491500px;}
.y92{bottom:447.030000px;}
.yd3{bottom:448.194000px;}
.y17a{bottom:449.871000px;}
.y12b{bottom:450.532500px;}
.y1ab{bottom:453.607500px;}
.y245{bottom:455.400000px;}
.y213{bottom:458.164500px;}
.ye4{bottom:461.436000px;}
.y179{bottom:461.826000px;}
.y12a{bottom:462.487500px;}
.y93{bottom:462.631500px;}
.yd1{bottom:464.334000px;}
.y1e1{bottom:468.252000px;}
.y244{bottom:468.850500px;}
.y1a1{bottom:473.034000px;}
.y178{bottom:473.781000px;}
.y129{bottom:474.444000px;}
.y17{bottom:475.750500px;}
.ye3{bottom:477.576000px;}
.y91{bottom:479.368500px;}
.yd0{bottom:480.472500px;}
.yce{bottom:481.011000px;}
.y1e0{bottom:481.702500px;}
.y243{bottom:482.299500px;}
.y1b2{bottom:484.173000px;}
.y177{bottom:485.736000px;}
.y128{bottom:486.399000px;}
.y55{bottom:491.596500px;}
.y1df{bottom:495.151500px;}
.y90{bottom:495.508500px;}
.y242{bottom:496.347000px;}
.ycf{bottom:496.612500px;}
.y176{bottom:497.692500px;}
.y127{bottom:498.354000px;}
.ye2{bottom:503.218500px;}
.y1b1{bottom:503.599500px;}
.y16{bottom:508.627500px;}
.yad{bottom:508.840500px;}
.y1de{bottom:509.199000px;}
.y175{bottom:509.647500px;}
.y241{bottom:509.796000px;}
.y126{bottom:510.309000px;}
.ycd{bottom:513.349500px;}
.y8f{bottom:521.152500px;}
.y174{bottom:521.602500px;}
.y125{bottom:522.264000px;}
.y1dd{bottom:522.648000px;}
.ycc{bottom:529.489500px;}
.ya9{bottom:530.359500px;}
.y173{bottom:533.557500px;}
.y124{bottom:534.219000px;}
.y240{bottom:535.201500px;}
.y15{bottom:541.504500px;}
.y172{bottom:545.512500px;}
.y123{bottom:546.174000px;}
.y1dc{bottom:548.053500px;}
.y23f{bottom:548.650500px;}
.ye1{bottom:551.638500px;}
.ycb{bottom:555.132000px;}
.y171{bottom:557.467500px;}
.y122{bottom:558.129000px;}
.y1db{bottom:561.502500px;}
.y23e{bottom:562.101000px;}
.y49{bottom:562.675500px;}
.y80{bottom:565.702500px;}
.y170{bottom:569.422500px;}
.y8e{bottom:569.571000px;}
.y121{bottom:570.085500px;}
.yca{bottom:573.066000px;}
.ye0{bottom:573.157500px;}
.y14{bottom:574.381500px;}
.y1da{bottom:574.951500px;}
.y23d{bottom:576.147000px;}
.y48{bottom:580.608000px;}
.y16f{bottom:581.377500px;}
.y120{bottom:582.040500px;}
.y7f{bottom:583.635000px;}
.y1d9{bottom:588.999000px;}
.y23c{bottom:589.597500px;}
.y8b{bottom:591.090000px;}
.y16e{bottom:593.332500px;}
.y11f{bottom:593.995500px;}
.y47{bottom:598.542000px;}
.y7e{bottom:601.567500px;}
.y1d8{bottom:602.449500px;}
.y16d{bottom:605.289000px;}
.y11e{bottom:605.950500px;}
.y13{bottom:607.257000px;}
.y23b{bottom:615.001500px;}
.y16c{bottom:617.244000px;}
.y11d{bottom:617.905500px;}
.yc9{bottom:621.484500px;}
.y46{bottom:624.096000px;}
.y7d{bottom:627.121500px;}
.y1d7{bottom:627.853500px;}
.y23a{bottom:628.452000px;}
.y16b{bottom:629.199000px;}
.y11c{bottom:629.860500px;}
.y45{bottom:637.545000px;}
.y12{bottom:640.134000px;}
.y7c{bottom:640.570500px;}
.y16a{bottom:641.154000px;}
.y1d6{bottom:641.304000px;}
.y11b{bottom:641.815500px;}
.y239{bottom:641.901000px;}
.yc8{bottom:643.003500px;}
.y44{bottom:650.994000px;}
.y169{bottom:653.109000px;}
.y11a{bottom:653.770500px;}
.y7b{bottom:654.021000px;}
.y1d5{bottom:654.753000px;}
.y238{bottom:655.948500px;}
.y43{bottom:665.041500px;}
.y168{bottom:665.064000px;}
.y119{bottom:665.725500px;}
.y7a{bottom:668.068500px;}
.y1d4{bottom:668.800500px;}
.y237{bottom:669.397500px;}
.y11{bottom:673.011000px;}
.y167{bottom:677.019000px;}
.y118{bottom:677.682000px;}
.y1d3{bottom:682.249500px;}
.y166{bottom:688.974000px;}
.y117{bottom:689.637000px;}
.y42{bottom:691.941000px;}
.y236{bottom:694.803000px;}
.y79{bottom:694.966500px;}
.y165{bottom:700.929000px;}
.y10{bottom:701.031000px;}
.y116{bottom:701.592000px;}
.y41{bottom:705.390000px;}
.y1d2{bottom:707.655000px;}
.y235{bottom:708.252000px;}
.y78{bottom:708.417000px;}
.y164{bottom:712.885500px;}
.y115{bottom:713.547000px;}
.y40{bottom:718.840500px;}
.yf{bottom:718.963500px;}
.y1d1{bottom:721.104000px;}
.y234{bottom:721.702500px;}
.y77{bottom:721.866000px;}
.y163{bottom:724.840500px;}
.y114{bottom:725.502000px;}
.y212{bottom:731.778000px;}
.y3f{bottom:732.888000px;}
.y1d0{bottom:734.553000px;}
.y233{bottom:735.748500px;}
.y76{bottom:735.913500px;}
.y162{bottom:736.795500px;}
.ye{bottom:736.896000px;}
.y113{bottom:737.457000px;}
.y1a0{bottom:746.647500px;}
.y1cf{bottom:748.600500px;}
.y161{bottom:748.750500px;}
.y232{bottom:749.199000px;}
.y112{bottom:749.412000px;}
.y211{bottom:751.204500px;}
.yd{bottom:754.828500px;}
.y3e{bottom:759.786000px;}
.y160{bottom:760.705500px;}
.y111{bottom:761.367000px;}
.y1ce{bottom:762.051000px;}
.y75{bottom:762.813000px;}
.y195{bottom:766.074000px;}
.y15f{bottom:772.660500px;}
.yc{bottom:772.762500px;}
.y3d{bottom:773.236500px;}
.y110{bottom:773.322000px;}
.y231{bottom:774.603000px;}
.y74{bottom:776.262000px;}
.y1b0{bottom:777.213000px;}
.y15e{bottom:784.615500px;}
.y10f{bottom:785.278500px;}
.y3c{bottom:786.685500px;}
.y1cd{bottom:787.455000px;}
.y230{bottom:788.053500px;}
.y73{bottom:789.712500px;}
.yb{bottom:790.695000px;}
.ydf{bottom:796.111500px;}
.y15d{bottom:796.570500px;}
.y1af{bottom:796.639500px;}
.y4a{bottom:796.687500px;}
.y10e{bottom:797.233500px;}
.y3b{bottom:800.733000px;}
.y1cc{bottom:800.905500px;}
.y22f{bottom:801.502500px;}
.y72{bottom:803.758500px;}
.y15c{bottom:808.525500px;}
.ya{bottom:808.627500px;}
.y10d{bottom:809.188500px;}
.y8a{bottom:814.044000px;}
.y3a{bottom:814.182000px;}
.y1cb{bottom:814.354500px;}
.y22e{bottom:815.550000px;}
.y71{bottom:817.209000px;}
.yda{bottom:817.630500px;}
.y15b{bottom:820.482000px;}
.y10c{bottom:821.143500px;}
.y2b{bottom:825.936000px;}
.y9{bottom:826.560000px;}
.y1ca{bottom:828.402000px;}
.y22d{bottom:828.999000px;}
.y15a{bottom:832.437000px;}
.y10b{bottom:833.098500px;}
.y81{bottom:835.563000px;}
.yc7{bottom:840.000000px;}
.y39{bottom:841.081500px;}
.y1c9{bottom:841.851000px;}
.y2a{bottom:843.868500px;}
.y70{bottom:844.108500px;}
.y159{bottom:844.392000px;}
.y8{bottom:844.492500px;}
.y10a{bottom:845.053500px;}
.ya8{bottom:851.226000px;}
.y22c{bottom:854.404500px;}
.y38{bottom:854.532000px;}
.y158{bottom:856.347000px;}
.y109{bottom:857.008500px;}
.y6f{bottom:857.557500px;}
.ybd{bottom:861.519000px;}
.y29{bottom:861.801000px;}
.y7{bottom:862.426500px;}
.y1c8{bottom:867.256500px;}
.y22b{bottom:867.853500px;}
.y37{bottom:867.981000px;}
.y157{bottom:868.302000px;}
.y108{bottom:868.963500px;}
.y6e{bottom:871.006500px;}
.y9e{bottom:872.746500px;}
.y28{bottom:879.733500px;}
.y156{bottom:880.257000px;}
.y6{bottom:880.359000px;}
.y1c7{bottom:880.705500px;}
.y107{bottom:880.918500px;}
.y22a{bottom:881.302500px;}
.y36{bottom:882.028500px;}
.y6d{bottom:885.054000px;}
.y155{bottom:892.212000px;}
.y106{bottom:892.875000px;}
.y1c6{bottom:894.154500px;}
.y229{bottom:895.350000px;}
.y27{bottom:897.667500px;}
.y5{bottom:898.291500px;}
.y154{bottom:904.167000px;}
.y105{bottom:904.830000px;}
.y1c5{bottom:908.202000px;}
.y228{bottom:908.800500px;}
.y35{bottom:908.928000px;}
.y6c{bottom:911.953500px;}
.y26{bottom:915.600000px;}
.y153{bottom:916.122000px;}
.y4{bottom:916.224000px;}
.y104{bottom:916.785000px;}
.y1c4{bottom:921.652500px;}
.y34{bottom:922.377000px;}
.y6b{bottom:925.402500px;}
.y152{bottom:928.078500px;}
.y103{bottom:928.740000px;}
.y25{bottom:933.532500px;}
.y227{bottom:934.204500px;}
.y33{bottom:935.826000px;}
.y6a{bottom:938.853000px;}
.y151{bottom:940.033500px;}
.y102{bottom:940.695000px;}
.y1c3{bottom:947.056500px;}
.y226{bottom:947.655000px;}
.y32{bottom:949.873500px;}
.y24{bottom:951.465000px;}
.y150{bottom:951.988500px;}
.y101{bottom:952.650000px;}
.y69{bottom:952.900500px;}
.y1c2{bottom:960.507000px;}
.y225{bottom:961.104000px;}
.y14f{bottom:963.943500px;}
.y100{bottom:964.605000px;}
.y23{bottom:969.397500px;}
.y1c1{bottom:973.956000px;}
.y224{bottom:975.151500px;}
.y14e{bottom:975.898500px;}
.yff{bottom:976.560000px;}
.y31{bottom:976.773000px;}
.y68{bottom:979.798500px;}
.y22{bottom:987.330000px;}
.y14d{bottom:987.853500px;}
.y1c0{bottom:988.003500px;}
.yfe{bottom:988.515000px;}
.y223{bottom:988.600500px;}
.y30{bottom:990.222000px;}
.y67{bottom:993.249000px;}
.y14c{bottom:999.808500px;}
.yfd{bottom:1000.471500px;}
.y1bf{bottom:1001.452500px;}
.y222{bottom:1002.051000px;}
.y2f{bottom:1003.672500px;}
.y21{bottom:1005.264000px;}
.y66{bottom:1006.698000px;}
.y3{bottom:1009.420500px;}
.y14b{bottom:1011.763500px;}
.yfc{bottom:1012.426500px;}
.y221{bottom:1015.500000px;}
.y2e{bottom:1017.720000px;}
.y65{bottom:1020.745500px;}
.y20{bottom:1023.196500px;}
.y14a{bottom:1023.718500px;}
.yfb{bottom:1024.978500px;}
.y1be{bottom:1026.858000px;}
.y220{bottom:1028.949000px;}
.y2d{bottom:1031.169000px;}
.y64{bottom:1034.194500px;}
.y149{bottom:1035.675000px;}
.y1bd{bottom:1040.307000px;}
.y1f{bottom:1041.129000px;}
.y21f{bottom:1042.996500px;}
.yfa{bottom:1047.693000px;}
.y148{bottom:1048.227000px;}
.y2{bottom:1051.264500px;}
.y1bc{bottom:1053.756000px;}
.y21e{bottom:1056.447000px;}
.y1e{bottom:1059.061500px;}
.y25f{bottom:1063.993500px;}
.y1bb{bottom:1067.803500px;}
.y147{bottom:1070.941500px;}
.y1d{bottom:1076.994000px;}
.yf9{bottom:1077.267000px;}
.y25e{bottom:1077.442500px;}
.y21d{bottom:1080.207000px;}
.y1ba{bottom:1081.254000px;}
.y1{bottom:1093.107000px;}
.y21c{bottom:1098.139500px;}
.y1c{bottom:1099.635000px;}
.y1b9{bottom:1105.014000px;}
.h14{height:30.419716px;}
.h9{height:32.614906px;}
.h6{height:33.187496px;}
.h16{height:33.822474px;}
.h12{height:34.349381px;}
.h7{height:34.765576px;}
.ha{height:36.238784px;}
.h13{height:38.165979px;}
.h17{height:39.111437px;}
.hc{height:40.074015px;}
.hf{height:40.188177px;}
.h3{height:41.006062px;}
.h4{height:41.066062px;}
.h5{height:43.456861px;}
.hd{height:44.526684px;}
.h10{height:44.653530px;}
.h2{height:54.692062px;}
.h1{height:104.296729px;}
.h11{height:155.751960px;}
.hb{height:181.709430px;}
.he{height:182.227080px;}
.h15{height:269.128965px;}
.h8{height:305.095125px;}
.h0{height:1188.000000px;}
.w4{width:462.674940px;}
.w2{width:539.783895px;}
.w3{width:539.790300px;}
.w5{width:771.116145px;}
.w1{width:771.126375px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x36{left:7.787598px;}
.x26{left:9.085471px;}
.x50{left:13.420178px;}
.x18{left:15.254756px;}
.x30{left:16.767954px;}
.x19{left:55.578887px;}
.x1c{left:59.230844px;}
.x1d{left:62.337719px;}
.x23{left:64.201844px;}
.x22{left:67.308719px;}
.x8{left:73.446000px;}
.x51{left:76.983158px;}
.x4a{left:84.594000px;}
.x4{left:88.390500px;}
.x49{left:89.824500px;}
.x58{left:91.558500px;}
.x42{left:93.090000px;}
.x27{left:95.853045px;}
.x4d{left:97.084500px;}
.x2e{left:100.860000px;}
.x3{left:103.146000px;}
.x4c{left:104.929500px;}
.x13{left:110.005500px;}
.x37{left:113.668847px;}
.x3f{left:125.080500px;}
.x47{left:130.407000px;}
.x46{left:135.637500px;}
.x2b{left:137.520000px;}
.x56{left:139.717500px;}
.x44{left:140.845500px;}
.x2{left:142.006500px;}
.x38{left:144.299610px;}
.x31{left:145.858230px;}
.x33{left:152.868000px;}
.x5f{left:155.482500px;}
.x60{left:163.428000px;}
.x1{left:164.547000px;}
.x28{left:166.439730px;}
.x45{left:172.503000px;}
.x43{left:174.982500px;}
.x1f{left:176.064000px;}
.x48{left:177.480000px;}
.x4b{left:179.968500px;}
.x2f{left:182.752500px;}
.x39{left:186.184500px;}
.x25{left:189.112500px;}
.x12{left:191.694000px;}
.x29{left:204.613980px;}
.x2a{left:208.758000px;}
.x4e{left:215.887500px;}
.x32{left:223.572720px;}
.x35{left:227.665500px;}
.x3c{left:234.076500px;}
.x14{left:252.115500px;}
.x15{left:255.103500px;}
.x20{left:257.752500px;}
.x41{left:259.504500px;}
.x1e{left:260.740500px;}
.xe{left:272.614500px;}
.x2d{left:273.909000px;}
.x9{left:291.433500px;}
.x1a{left:293.289000px;}
.x34{left:294.954000px;}
.x1b{left:301.366875px;}
.x55{left:308.297255px;}
.xa{left:314.448000px;}
.x3d{left:315.967500px;}
.x10{left:320.329500px;}
.x5c{left:323.168262px;}
.x53{left:324.256385px;}
.x3e{left:338.643000px;}
.x52{left:344.930712px;}
.x4f{left:348.181065px;}
.xb{left:354.228000px;}
.x24{left:358.017000px;}
.xc{left:365.017500px;}
.x17{left:366.300563px;}
.x21{left:368.475375px;}
.x5e{left:371.565000px;}
.x5a{left:373.186500px;}
.x5d{left:378.430500px;}
.x59{left:380.049000px;}
.x54{left:382.896000px;}
.x40{left:386.449500px;}
.x2c{left:390.334500px;}
.x5b{left:391.687500px;}
.x57{left:397.012500px;}
.x3b{left:407.125500px;}
.x61{left:417.157500px;}
.xd{left:424.210500px;}
.x11{left:427.206000px;}
.x16{left:451.360500px;}
.xf{left:455.263500px;}
.x3a{left:456.943500px;}
.x5{left:529.201500px;}
.x6{left:584.838000px;}
.x7{left:834.183000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:12.165333pt;}
.ls2{letter-spacing:0.000000pt;}
.ls4{letter-spacing:2.627135pt;}
.ls1{letter-spacing:2.635446pt;}
.lse{letter-spacing:2.651993pt;}
.ls3{letter-spacing:2.652297pt;}
.ls6{letter-spacing:2.653089pt;}
.ls5{letter-spacing:2.654903pt;}
.lsf{letter-spacing:2.655207pt;}
.lsd{letter-spacing:2.655711pt;}
.lsa{letter-spacing:2.656015pt;}
.ls8{letter-spacing:2.656693pt;}
.ls9{letter-spacing:2.657326pt;}
.ls7{letter-spacing:2.657630pt;}
.lsb{letter-spacing:2.658422pt;}
.lsc{letter-spacing:2.660237pt;}
.ls0{letter-spacing:2.661044pt;}
.ws3{word-spacing:-13.283467pt;}
.wsd{word-spacing:-13.262246pt;}
.ws20{word-spacing:-10.626800pt;}
.ws46{word-spacing:-2.656693pt;}
.ws32{word-spacing:-0.053134pt;}
.ws6c{word-spacing:-0.014802pt;}
.ws10{word-spacing:0.000000pt;}
.ws1e{word-spacing:0.002016pt;}
.ws5f{word-spacing:0.005623pt;}
.ws6a{word-spacing:0.010690pt;}
.ws5d{word-spacing:0.017991pt;}
.ws1a{word-spacing:0.531339pt;}
.ws13{word-spacing:2.444158pt;}
.wsc{word-spacing:2.603559pt;}
.ws4c{word-spacing:2.656693pt;}
.ws7{word-spacing:2.869229pt;}
.ws19{word-spacing:3.134898pt;}
.ws8{word-spacing:3.188032pt;}
.ws62{word-spacing:3.241166pt;}
.ws5b{word-spacing:3.719360pt;}
.ws70{word-spacing:3.878772pt;}
.ws1b{word-spacing:3.931906pt;}
.ws14{word-spacing:4.091308pt;}
.ws1c{word-spacing:4.197575pt;}
.ws4a{word-spacing:4.250720pt;}
.ws40{word-spacing:4.356977pt;}
.ws6f{word-spacing:4.782048pt;}
.ws65{word-spacing:4.782080pt;}
.ws44{word-spacing:5.100851pt;}
.ws6e{word-spacing:5.153985pt;}
.ws9{word-spacing:5.260253pt;}
.ws5e{word-spacing:5.265141pt;}
.ws59{word-spacing:5.265551pt;}
.ws3c{word-spacing:5.267839pt;}
.ws69{word-spacing:5.270474pt;}
.ws54{word-spacing:5.270885pt;}
.ws12{word-spacing:5.270893pt;}
.ws6b{word-spacing:5.276151pt;}
.ws60{word-spacing:5.276250pt;}
.ws55{word-spacing:5.276908pt;}
.ws6d{word-spacing:5.280207pt;}
.ws61{word-spacing:5.281484pt;}
.ws1f{word-spacing:5.288673pt;}
.ws4d{word-spacing:5.295454pt;}
.wsa{word-spacing:5.313387pt;}
.ws22{word-spacing:5.313400pt;}
.ws1{word-spacing:5.632190pt;}
.ws3f{word-spacing:5.685324pt;}
.ws2a{word-spacing:5.841897pt;}
.ws28{word-spacing:5.844725pt;}
.ws37{word-spacing:5.950993pt;}
.ws39{word-spacing:6.267452pt;}
.ws38{word-spacing:6.536908pt;}
.wse{word-spacing:6.641733pt;}
.ws2b{word-spacing:6.800785pt;}
.ws29{word-spacing:7.064908pt;}
.ws17{word-spacing:7.385607pt;}
.ws21{word-spacing:7.438741pt;}
.ws1d{word-spacing:7.491875pt;}
.ws36{word-spacing:7.970080pt;}
.ws6{word-spacing:8.182615pt;}
.ws57{word-spacing:8.342017pt;}
.ws41{word-spacing:8.462682pt;}
.ws18{word-spacing:8.660820pt;}
.wsb{word-spacing:8.926490pt;}
.ws2c{word-spacing:8.979623pt;}
.ws2f{word-spacing:9.004563pt;}
.ws16{word-spacing:9.085891pt;}
.ws4e{word-spacing:9.192159pt;}
.ws5c{word-spacing:9.293819pt;}
.ws56{word-spacing:9.617230pt;}
.ws30{word-spacing:9.963452pt;}
.ws2e{word-spacing:10.222241pt;}
.ws15{word-spacing:10.307970pt;}
.ws31{word-spacing:10.436015pt;}
.ws3b{word-spacing:10.626773pt;}
.ws3d{word-spacing:10.786175pt;}
.ws47{word-spacing:10.892443pt;}
.ws2d{word-spacing:11.392292pt;}
.ws71{word-spacing:12.199566pt;}
.ws0{word-spacing:12.752160pt;}
.ws5{word-spacing:13.602270pt;}
.ws51{word-spacing:14.399278pt;}
.ws4{word-spacing:14.930617pt;}
.ws11{word-spacing:15.940160pt;}
.ws2{word-spacing:17.881059pt;}
.ws26{word-spacing:53.131102pt;}
.ws25{word-spacing:53.134000pt;}
.ws5a{word-spacing:54.451430pt;}
.ws3e{word-spacing:63.760800pt;}
.ws34{word-spacing:66.284419pt;}
.ws50{word-spacing:69.809454pt;}
.ws23{word-spacing:74.387600pt;}
.ws48{word-spacing:81.443829pt;}
.ws4b{word-spacing:81.675845pt;}
.ws64{word-spacing:82.577323pt;}
.ws68{word-spacing:82.577375pt;}
.ws33{word-spacing:98.911853pt;}
.ws3a{word-spacing:98.948086pt;}
.ws24{word-spacing:99.169298pt;}
.ws27{word-spacing:99.171733pt;}
.ws35{word-spacing:104.979633pt;}
.ws66{word-spacing:116.894800pt;}
.ws53{word-spacing:125.141197pt;}
.ws63{word-spacing:126.615185pt;}
.ws67{word-spacing:126.872620pt;}
.ws43{word-spacing:140.333385pt;}
.ws42{word-spacing:162.444393pt;}
.ws45{word-spacing:162.484713pt;}
.ws4f{word-spacing:381.189982pt;}
.ws52{word-spacing:479.396202pt;}
.ws49{word-spacing:953.053931pt;}
.ws58{word-spacing:980.683611pt;}
.wsf{word-spacing:2428.443255pt;}
._3{margin-left:-5.897859pt;}
._22{margin-left:-4.941450pt;}
._4{margin-left:-3.931906pt;}
._0{margin-left:-2.391024pt;}
._2{margin-left:-1.328347pt;}
._16{width:1.183765pt;}
._1{width:2.323276pt;}
._5{width:3.382319pt;}
._18{width:12.911530pt;}
._b1{width:13.889482pt;}
._13f{width:15.940200pt;}
._49{width:17.735327pt;}
._43{width:19.446995pt;}
._17{width:22.688161pt;}
._140{width:26.567000pt;}
._13{width:45.748259pt;}
._32{width:63.760800pt;}
._11{width:66.417333pt;}
._130{width:67.845747pt;}
._28{width:69.074200pt;}
._2f{width:71.971539pt;}
._19{width:74.387600pt;}
._38{width:75.917859pt;}
._1d{width:80.848694pt;}
._48{width:82.383824pt;}
._a{width:84.110911pt;}
._21{width:85.014400pt;}
._c{width:87.086407pt;}
._42{width:94.120971pt;}
._27{width:95.641200pt;}
._33{width:97.171459pt;}
._31{width:99.764398pt;}
._3e{width:101.209643pt;}
._23{width:102.172829pt;}
._1b{width:103.845090pt;}
._8{width:104.779985pt;}
._4e{width:106.469014pt;}
._e{width:107.755482pt;}
._37{width:109.286011pt;}
._40{width:110.731256pt;}
._1c{width:118.680102pt;}
._34{width:119.912811pt;}
._6{width:125.449059pt;}
._25{width:127.059710pt;}
._2c{width:129.238245pt;}
._a1{width:130.772187pt;}
._3f{width:132.239899pt;}
._41{width:133.727651pt;}
._30{width:135.767997pt;}
._24{width:138.106421pt;}
._e4{width:139.156880pt;}
._2b{width:140.302609pt;}
._95{width:146.446826pt;}
._13e{width:149.116643pt;}
._13d{width:150.189303pt;}
._2a{width:151.349253pt;}
._3a{width:154.459498pt;}
._3b{width:159.020351pt;}
._2e{width:160.109605pt;}
._29{width:162.413617pt;}
._26{width:163.525198pt;}
._1a{width:175.299693pt;}
._45{width:177.450666pt;}
._36{width:188.944504pt;}
._3c{width:196.400438pt;}
._35{width:205.479805pt;}
._ec{width:211.934118pt;}
._55{width:220.191406pt;}
._e8{width:223.336598pt;}
._134{width:224.988747pt;}
._81{width:227.465088pt;}
._47{width:228.368390pt;}
._111{width:231.553244pt;}
._82{width:238.869413pt;}
._dc{width:242.007786pt;}
._b9{width:251.800672pt;}
._39{width:259.269899pt;}
._2d{width:264.622218pt;}
._3d{width:266.017529pt;}
._fa{width:278.409697pt;}
._5f{width:282.309167pt;}
._90{width:283.946240pt;}
._77{width:287.421171pt;}
._126{width:292.014313pt;}
._76{width:294.785504pt;}
._a7{width:295.731299pt;}
._120{width:300.141382pt;}
._20{width:301.588584pt;}
._d1{width:303.009693pt;}
._109{width:304.992506pt;}
._ff{width:328.817648pt;}
._108{width:330.379790pt;}
._91{width:331.830330pt;}
._58{width:332.946138pt;}
._85{width:334.917398pt;}
._7e{width:337.669735pt;}
._1f{width:339.419992pt;}
._7f{width:341.091536pt;}
._66{width:343.855785pt;}
._be{width:345.257219pt;}
._e9{width:347.099710pt;}
._71{width:348.493062pt;}
._ad{width:349.842684pt;}
._a3{width:352.584358pt;}
._52{width:355.634234pt;}
._103{width:356.654416pt;}
._96{width:361.564243pt;}
._54{width:363.816826pt;}
._98{width:368.094108pt;}
._d3{width:370.065350pt;}
._57{width:380.251098pt;}
._f3{width:382.450819pt;}
._99{width:384.145798pt;}
._6d{width:390.595979pt;}
._117{width:391.807126pt;}
._1e{width:396.039582pt;}
._106{width:410.707332pt;}
._cf{width:413.624675pt;}
._a9{width:415.168407pt;}
._101{width:416.397130pt;}
._78{width:420.234751pt;}
._72{width:421.461048pt;}
._60{width:422.662426pt;}
._e2{width:426.705904pt;}
._10c{width:427.938592pt;}
._6a{width:430.111776pt;}
._73{width:431.062854pt;}
._ea{width:431.992694pt;}
._ab{width:433.321041pt;}
._11d{width:444.776025pt;}
._b3{width:446.269738pt;}
._53{width:447.614006pt;}
._a4{width:448.581040pt;}
._8d{width:449.659654pt;}
._11a{width:450.983309pt;}
._5a{width:452.709530pt;}
._b6{width:453.676563pt;}
._4b{width:455.796598pt;}
._d7{width:456.726438pt;}
._5b{width:459.845705pt;}
._9c{width:460.929315pt;}
._6b{width:462.820331pt;}
._c5{width:464.303310pt;}
._51{width:467.023766pt;}
._83{width:468.468993pt;}
._50{width:473.060059pt;}
._93{width:474.106280pt;}
._11f{width:475.825609pt;}
._4d{width:480.604730pt;}
._c2{width:481.608957pt;}
._75{width:485.737446pt;}
._8c{width:494.031619pt;}
._6f{width:496.475774pt;}
._d5{width:498.234496pt;}
._e6{width:500.551133pt;}
._8f{width:502.394866pt;}
._9a{width:504.679622pt;}
._f1{width:506.491475pt;}
._8a{width:511.698579pt;}
._84{width:513.632646pt;}
._a6{width:516.800068pt;}
._dd{width:518.555280pt;}
._12b{width:520.512818pt;}
._107{width:523.036054pt;}
._9d{width:524.009661pt;}
._67{width:526.153874pt;}
._c3{width:528.403181pt;}
._11e{width:529.591566pt;}
._ee{width:531.613107pt;}
._70{width:532.770877pt;}
._94{width:535.757535pt;}
._9e{width:537.436550pt;}
._114{width:538.727703pt;}
._9b{width:540.598006pt;}
._7d{width:542.856193pt;}
._12d{width:547.139076pt;}
._92{width:549.030331pt;}
._69{width:551.675842pt;}
._127{width:553.993134pt;}
._13b{width:556.421849pt;}
._b5{width:557.457341pt;}
._f5{width:558.695363pt;}
._11c{width:560.235582pt;}
._122{width:561.714082pt;}
._ae{width:563.248909pt;}
._68{width:565.985309pt;}
._c7{width:567.287421pt;}
._b4{width:568.508797pt;}
._87{width:570.427274pt;}
._5c{width:571.415910pt;}
._4a{width:572.521085pt;}
._7b{width:574.710157pt;}
._136{width:575.730658pt;}
._a8{width:577.488758pt;}
._74{width:579.800061pt;}
._79{width:581.723513pt;}
._86{width:584.002938pt;}
._f6{width:585.484098pt;}
._118{width:587.713035pt;}
._da{width:589.061267pt;}
._6e{width:590.331469pt;}
._aa{width:592.185530pt;}
._88{width:594.291298pt;}
._e0{width:595.389798pt;}
._97{width:596.388406pt;}
._af{width:598.859437pt;}
._59{width:600.479702pt;}
._5e{width:602.562544pt;}
._a2{width:603.748607pt;}
._10e{width:605.575226pt;}
._112{width:607.620874pt;}
._61{width:609.474696pt;}
._b2{width:610.527645pt;}
._bd{width:613.832205pt;}
._80{width:614.910819pt;}
._bb{width:616.446726pt;}
._8e{width:617.997888pt;}
._d8{width:620.074156pt;}
._b7{width:627.333482pt;}
._135{width:630.849960pt;}
._4c{width:631.748897pt;}
._a0{width:638.677530pt;}
._63{width:643.002382pt;}
._9f{width:645.930282pt;}
._65{width:648.033836pt;}
._cc{width:651.025805pt;}
._7c{width:654.187261pt;}
._12e{width:656.264348pt;}
._8b{width:658.315750pt;}
._c1{width:660.108178pt;}
._139{width:661.811949pt;}
._ca{width:663.448467pt;}
._10f{width:667.262201pt;}
._cb{width:673.473532pt;}
._104{width:675.833936pt;}
._64{width:683.123882pt;}
._5d{width:684.305591pt;}
._df{width:686.672582pt;}
._c8{width:693.116746pt;}
._100{width:696.719540pt;}
._121{width:700.976810pt;}
._62{width:702.289555pt;}
._eb{width:703.180603pt;}
._129{width:704.541538pt;}
._ac{width:707.932013pt;}
._124{width:709.345370pt;}
._89{width:713.553012pt;}
._c9{width:715.227578pt;}
._132{width:717.565155pt;}
._56{width:719.844934pt;}
._a5{width:722.400323pt;}
._10a{width:725.889938pt;}
._11b{width:733.436199pt;}
._fe{width:734.338504pt;}
._123{width:742.484867pt;}
._bc{width:744.127015pt;}
._fb{width:750.623682pt;}
._fd{width:752.155550pt;}
._b0{width:756.284039pt;}
._f4{width:760.209007pt;}
._f7{width:761.129830pt;}
._115{width:763.108433pt;}
._7a{width:765.656827pt;}
._b8{width:769.461197pt;}
._db{width:772.441024pt;}
._46{width:773.589686pt;}
._44{width:776.751142pt;}
._6c{width:778.759597pt;}
._f8{width:780.288248pt;}
._d2{width:782.477992pt;}
._e5{width:783.763179pt;}
._4f{width:787.016576pt;}
._f9{width:789.358454pt;}
._105{width:791.340051pt;}
._c6{width:803.247326pt;}
._d4{width:808.337533pt;}
._c0{width:809.246435pt;}
._ed{width:810.579765pt;}
._119{width:811.537792pt;}
._116{width:812.650036pt;}
._f2{width:816.073795pt;}
._15{width:818.327694pt;}
._102{width:824.638956pt;}
._d0{width:831.776526pt;}
._13c{width:833.348832pt;}
._12f{width:835.702662pt;}
._fc{width:837.307317pt;}
._128{width:839.522970pt;}
._e7{width:843.644875pt;}
._110{width:846.753200pt;}
._cd{width:850.669166pt;}
._131{width:851.871245pt;}
._125{width:858.236970pt;}
._12c{width:860.734291pt;}
._13a{width:864.293907pt;}
._d6{width:871.901388pt;}
._d9{width:879.451678pt;}
._f0{width:886.948517pt;}
._10b{width:891.093296pt;}
._c4{width:895.719585pt;}
._12a{width:897.359018pt;}
._10d{width:920.114917pt;}
._ce{width:922.697748pt;}
._bf{width:925.035731pt;}
._e3{width:926.258434pt;}
._de{width:938.914594pt;}
._113{width:953.142834pt;}
._138{width:996.405921pt;}
._ef{width:1002.069017pt;}
._133{width:1005.380202pt;}
._ba{width:1013.711568pt;}
._e1{width:1015.750632pt;}
._137{width:1023.977002pt;}
._14{width:1185.907783pt;}
._7{width:1466.612401pt;}
._f{width:1550.618644pt;}
._b{width:1609.542502pt;}
._12{width:1778.456665pt;}
._9{width:1784.565459pt;}
._10{width:1889.081375pt;}
._d{width:2020.692363pt;}
.fsb{font-size:37.193600pt;}
.fs3{font-size:39.768000pt;}
.fsc{font-size:41.268053pt;}
.fs9{font-size:41.882880pt;}
.fs2{font-size:42.507200pt;}
.fs4{font-size:44.186667pt;}
.fsa{font-size:46.536533pt;}
.fsd{font-size:47.820800pt;}
.fs5{font-size:48.863040pt;}
.fs7{font-size:49.002240pt;}
.fs1{font-size:53.133867pt;}
.fs6{font-size:54.292267pt;}
.fs8{font-size:54.446933pt;}
.fs0{font-size:127.521600pt;}
.y0{bottom:0.000000pt;}
.yf4{bottom:8.779568pt;}
.yc4{bottom:9.249136pt;}
.y87{bottom:10.790588pt;}
.ya5{bottom:10.821328pt;}
.y196{bottom:11.723628pt;}
.y1a2{bottom:13.004041pt;}
.y5a{bottom:14.297121pt;}
.y1f6{bottom:14.540541pt;}
.y1ff{bottom:15.058855pt;}
.y4b{bottom:15.769117pt;}
.ybe{bottom:20.592416pt;}
.yf1{bottom:22.051008pt;}
.y82{bottom:24.024328pt;}
.y9f{bottom:24.092768pt;}
.ybf{bottom:33.719593pt;}
.y19d{bottom:35.174567pt;}
.y1a8{bottom:38.398634pt;}
.y61{bottom:38.967117pt;}
.ydb{bottom:39.339267pt;}
.ya0{bottom:39.451336pt;}
.yf5{bottom:41.379669pt;}
.y1fc{bottom:42.267514pt;}
.y52{bottom:42.281117pt;}
.y83{bottom:43.168012pt;}
.yaa{bottom:43.290988pt;}
.y205{bottom:44.846767pt;}
.y2c{bottom:46.833333pt;}
.yc0{bottom:46.846781pt;}
.y8c{bottom:49.549233pt;}
.y5b{bottom:49.737617pt;}
.y197{bottom:50.327681pt;}
.yf2{bottom:51.887927pt;}
.y4c{bottom:53.051617pt;}
.y1a3{bottom:53.551747pt;}
.ydc{bottom:54.654220pt;}
.ya1{bottom:54.809917pt;}
.y1f7{bottom:57.420627pt;}
.yc1{bottom:59.973957pt;}
.y200{bottom:59.999881pt;}
.yf6{bottom:60.708331pt;}
.y84{bottom:62.311689pt;}
.yab{bottom:62.489201pt;}
.ydd{bottom:69.969159pt;}
.ya2{bottom:70.168485pt;}
.yc2{bottom:73.101136pt;}
.y8d{bottom:75.074138pt;}
.y198{bottom:76.012743pt;}
.y25a{bottom:78.914403pt;}
.y216{bottom:79.236810pt;}
.yf7{bottom:80.036992pt;}
.y20d{bottom:81.364694pt;}
.y85{bottom:81.455366pt;}
.yac{bottom:81.687415pt;}
.yf3{bottom:81.724847pt;}
.y1b4{bottom:82.434007pt;}
.y5c{bottom:82.982560pt;}
.y4d{bottom:83.503587pt;}
.y208{bottom:84.287845pt;}
.yde{bottom:85.284100pt;}
.ya3{bottom:85.527056pt;}
.y1a4{bottom:85.658074pt;}
.yc3{bottom:86.228316pt;}
.y1f8{bottom:87.350709pt;}
.y201{bottom:92.106207pt;}
.yf8{bottom:99.365653pt;}
.y25b{bottom:100.408179pt;}
.y86{bottom:100.599044pt;}
.ya4{bottom:100.885628pt;}
.y199{bottom:101.697805pt;}
.yc5{bottom:103.059032pt;}
.y217{bottom:104.921872pt;}
.y20e{bottom:105.308766pt;}
.y21b{bottom:106.396000pt;}
.y209{bottom:111.155070pt;}
.y146{bottom:113.549333pt;}
.y4e{bottom:113.955580pt;}
.y1b5{bottom:114.540340pt;}
.y59{bottom:114.774667pt;}
.y5d{bottom:116.227503pt;}
.y1f9{bottom:117.280796pt;}
.y1a5{bottom:117.764406pt;}
.y1ae{bottom:119.613333pt;}
.y88{bottom:120.234750pt;}
.yc6{bottom:120.471451pt;}
.ya6{bottom:120.577272pt;}
.y259{bottom:121.064000pt;}
.y25c{bottom:121.901961pt;}
.y145{bottom:124.176000pt;}
.y202{bottom:124.212540pt;}
.y19a{bottom:127.382874pt;}
.y20f{bottom:129.252833pt;}
.y21a{bottom:129.509333pt;}
.y218{bottom:130.606941pt;}
.y58{bottom:130.714667pt;}
.y1f5{bottom:132.488000pt;}
.y258{bottom:133.020000pt;}
.y193{bottom:134.214667pt;}
.y144{bottom:134.804000pt;}
.y20a{bottom:138.022294pt;}
.y89{bottom:140.549105pt;}
.ya7{bottom:140.949499pt;}
.y1ad{bottom:142.726667pt;}
.y25d{bottom:143.395736pt;}
.y4f{bottom:144.407550pt;}
.y1f4{bottom:144.444000pt;}
.y192{bottom:144.841333pt;}
.y257{bottom:144.974667pt;}
.y143{bottom:145.430667pt;}
.y1b6{bottom:146.646672pt;}
.y57{bottom:146.654667pt;}
.y215{bottom:146.778667pt;}
.y1b8{bottom:146.782667pt;}
.y1fa{bottom:147.210884pt;}
.y5e{bottom:149.472447pt;}
.y1a6{bottom:149.870739pt;}
.y19b{bottom:153.067936pt;}
.y210{bottom:153.196899pt;}
.y194{bottom:155.468000pt;}
.y191{bottom:155.469333pt;}
.ybc{bottom:155.902667pt;}
.y142{bottom:156.057333pt;}
.y219{bottom:156.292003pt;}
.y203{bottom:156.318872pt;}
.y1f3{bottom:156.398667pt;}
.y256{bottom:157.461333pt;}
.y1ac{bottom:159.994667pt;}
.y20b{bottom:164.889518pt;}
.y56{bottom:165.782667pt;}
.y190{bottom:166.096000pt;}
.y141{bottom:166.684000pt;}
.y1f2{bottom:168.885333pt;}
.y255{bottom:169.416000pt;}
.y1b7{bottom:169.896000pt;}
.ybb{bottom:170.249333pt;}
.yb9{bottom:170.726667pt;}
.y50{bottom:174.859526pt;}
.y18f{bottom:176.722667pt;}
.y1fb{bottom:177.140972pt;}
.y140{bottom:177.310667pt;}
.y19c{bottom:178.753005pt;}
.y1f1{bottom:180.840000pt;}
.y1a7{bottom:181.977072pt;}
.y5f{bottom:182.717390pt;}
.yba{bottom:184.594667pt;}
.y20c{bottom:185.115163pt;}
.y1b3{bottom:187.165333pt;}
.y18e{bottom:187.349333pt;}
.y13f{bottom:187.937333pt;}
.y204{bottom:188.425205pt;}
.y254{bottom:191.998667pt;}
.y1fd{bottom:197.366616pt;}
.y19e{bottom:197.696002pt;}
.y18d{bottom:197.976000pt;}
.y1a9{bottom:198.354789pt;}
.y13e{bottom:198.564000pt;}
.yb8{bottom:198.941333pt;}
.y206{bottom:199.672351pt;}
.y1f0{bottom:203.422667pt;}
.y253{bottom:203.953333pt;}
.y51{bottom:205.311507pt;}
.y18c{bottom:208.602667pt;}
.y13d{bottom:209.190667pt;}
.yb7{bottom:213.288000pt;}
.yb5{bottom:213.765333pt;}
.y1ef{bottom:215.377333pt;}
.y252{bottom:215.909333pt;}
.y60{bottom:215.962333pt;}
.y1fe{bottom:217.592259pt;}
.y19f{bottom:217.921649pt;}
.y1aa{bottom:218.580432pt;}
.y18b{bottom:219.229333pt;}
.y13c{bottom:219.817333pt;}
.y207{bottom:219.897997pt;}
.y53{bottom:225.950363pt;}
.y1ee{bottom:227.332000pt;}
.yb6{bottom:227.633333pt;}
.y62{bottom:228.268770pt;}
.y251{bottom:228.394667pt;}
.y18a{bottom:229.856000pt;}
.y13b{bottom:230.445333pt;}
.y1ed{bottom:239.818667pt;}
.y250{bottom:240.350667pt;}
.y189{bottom:240.482667pt;}
.y13a{bottom:241.072000pt;}
.yb4{bottom:241.980000pt;}
.y54{bottom:247.141550pt;}
.y63{bottom:249.459958pt;}
.y188{bottom:251.110667pt;}
.y139{bottom:251.698667pt;}
.y1ec{bottom:251.774667pt;}
.yb3{bottom:256.325333pt;}
.yb1{bottom:256.804000pt;}
.y187{bottom:261.737333pt;}
.y138{bottom:262.325333pt;}
.y24f{bottom:262.932000pt;}
.yb2{bottom:270.672000pt;}
.y186{bottom:272.364000pt;}
.y137{bottom:272.952000pt;}
.y1eb{bottom:274.356000pt;}
.y24e{bottom:274.888000pt;}
.yf0{bottom:280.518667pt;}
.y185{bottom:282.990667pt;}
.y136{bottom:283.578667pt;}
.yb0{bottom:285.549333pt;}
.y1ea{bottom:286.312000pt;}
.y24d{bottom:286.842667pt;}
.y184{bottom:293.617333pt;}
.y135{bottom:294.205333pt;}
.yef{bottom:294.865333pt;}
.yed{bottom:295.342667pt;}
.y9d{bottom:296.458667pt;}
.y1e9{bottom:298.266667pt;}
.y24c{bottom:299.329333pt;}
.yaf{bottom:299.896000pt;}
.y183{bottom:304.244000pt;}
.y134{bottom:304.832000pt;}
.y1b{bottom:305.994667pt;}
.yee{bottom:309.210667pt;}
.y1e8{bottom:310.753333pt;}
.y9c{bottom:310.805333pt;}
.y9a{bottom:311.282667pt;}
.y24b{bottom:311.284000pt;}
.y182{bottom:314.870667pt;}
.y133{bottom:315.458667pt;}
.yae{bottom:322.690667pt;}
.y1e7{bottom:322.708000pt;}
.yec{bottom:323.557333pt;}
.y9b{bottom:325.150667pt;}
.y181{bottom:325.497333pt;}
.y132{bottom:326.086667pt;}
.yd9{bottom:326.664000pt;}
.y24a{bottom:333.866667pt;}
.y1a{bottom:335.218667pt;}
.y180{bottom:336.124000pt;}
.y131{bottom:336.713333pt;}
.yeb{bottom:337.902667pt;}
.ye9{bottom:338.381333pt;}
.y99{bottom:339.497333pt;}
.yd8{bottom:341.010667pt;}
.yd6{bottom:341.488000pt;}
.y1e6{bottom:345.290667pt;}
.y249{bottom:345.821333pt;}
.y17f{bottom:346.752000pt;}
.y130{bottom:347.340000pt;}
.yea{bottom:352.249333pt;}
.y98{bottom:353.844000pt;}
.y96{bottom:354.321333pt;}
.yd7{bottom:355.356000pt;}
.y1e5{bottom:357.245333pt;}
.y17e{bottom:357.378667pt;}
.y248{bottom:357.777333pt;}
.y12f{bottom:357.966667pt;}
.y19{bottom:364.442667pt;}
.ye8{bottom:366.596000pt;}
.y17d{bottom:368.005333pt;}
.y97{bottom:368.189333pt;}
.y12e{bottom:368.593333pt;}
.y1e4{bottom:369.200000pt;}
.yd5{bottom:369.702667pt;}
.y247{bottom:370.262667pt;}
.y17c{bottom:378.632000pt;}
.y12d{bottom:379.220000pt;}
.ye7{bottom:380.941333pt;}
.ye5{bottom:381.420000pt;}
.y1e3{bottom:381.686667pt;}
.y246{bottom:382.218667pt;}
.y95{bottom:382.536000pt;}
.yd4{bottom:384.048000pt;}
.yd2{bottom:384.526667pt;}
.y17b{bottom:389.258667pt;}
.y12c{bottom:389.846667pt;}
.y214{bottom:389.989333pt;}
.y1e2{bottom:393.642667pt;}
.y18{bottom:393.665333pt;}
.ye6{bottom:395.288000pt;}
.y94{bottom:396.881333pt;}
.y92{bottom:397.360000pt;}
.yd3{bottom:398.394667pt;}
.y17a{bottom:399.885333pt;}
.y12b{bottom:400.473333pt;}
.y1ab{bottom:403.206667pt;}
.y245{bottom:404.800000pt;}
.y213{bottom:407.257333pt;}
.ye4{bottom:410.165333pt;}
.y179{bottom:410.512000pt;}
.y12a{bottom:411.100000pt;}
.y93{bottom:411.228000pt;}
.yd1{bottom:412.741333pt;}
.y1e1{bottom:416.224000pt;}
.y244{bottom:416.756000pt;}
.y1a1{bottom:420.474667pt;}
.y178{bottom:421.138667pt;}
.y129{bottom:421.728000pt;}
.y17{bottom:422.889333pt;}
.ye3{bottom:424.512000pt;}
.y91{bottom:426.105333pt;}
.yd0{bottom:427.086667pt;}
.yce{bottom:427.565333pt;}
.y1e0{bottom:428.180000pt;}
.y243{bottom:428.710667pt;}
.y1b2{bottom:430.376000pt;}
.y177{bottom:431.765333pt;}
.y128{bottom:432.354667pt;}
.y55{bottom:436.974667pt;}
.y1df{bottom:440.134667pt;}
.y90{bottom:440.452000pt;}
.y242{bottom:441.197333pt;}
.ycf{bottom:441.433333pt;}
.y176{bottom:442.393333pt;}
.y127{bottom:442.981333pt;}
.ye2{bottom:447.305333pt;}
.y1b1{bottom:447.644000pt;}
.y16{bottom:452.113333pt;}
.yad{bottom:452.302667pt;}
.y1de{bottom:452.621333pt;}
.y175{bottom:453.020000pt;}
.y241{bottom:453.152000pt;}
.y126{bottom:453.608000pt;}
.ycd{bottom:456.310667pt;}
.y8f{bottom:463.246667pt;}
.y174{bottom:463.646667pt;}
.y125{bottom:464.234667pt;}
.y1dd{bottom:464.576000pt;}
.ycc{bottom:470.657333pt;}
.ya9{bottom:471.430667pt;}
.y173{bottom:474.273333pt;}
.y124{bottom:474.861333pt;}
.y240{bottom:475.734667pt;}
.y15{bottom:481.337333pt;}
.y172{bottom:484.900000pt;}
.y123{bottom:485.488000pt;}
.y1dc{bottom:487.158667pt;}
.y23f{bottom:487.689333pt;}
.ye1{bottom:490.345333pt;}
.ycb{bottom:493.450667pt;}
.y171{bottom:495.526667pt;}
.y122{bottom:496.114667pt;}
.y1db{bottom:499.113333pt;}
.y23e{bottom:499.645333pt;}
.y49{bottom:500.156000pt;}
.y80{bottom:502.846667pt;}
.y170{bottom:506.153333pt;}
.y8e{bottom:506.285333pt;}
.y121{bottom:506.742667pt;}
.yca{bottom:509.392000pt;}
.ye0{bottom:509.473333pt;}
.y14{bottom:510.561333pt;}
.y1da{bottom:511.068000pt;}
.y23d{bottom:512.130667pt;}
.y48{bottom:516.096000pt;}
.y16f{bottom:516.780000pt;}
.y120{bottom:517.369333pt;}
.y7f{bottom:518.786667pt;}
.y1d9{bottom:523.554667pt;}
.y23c{bottom:524.086667pt;}
.y8b{bottom:525.413333pt;}
.y16e{bottom:527.406667pt;}
.y11f{bottom:527.996000pt;}
.y47{bottom:532.037333pt;}
.y7e{bottom:534.726667pt;}
.y1d8{bottom:535.510667pt;}
.y16d{bottom:538.034667pt;}
.y11e{bottom:538.622667pt;}
.y13{bottom:539.784000pt;}
.y23b{bottom:546.668000pt;}
.y16c{bottom:548.661333pt;}
.y11d{bottom:549.249333pt;}
.yc9{bottom:552.430667pt;}
.y46{bottom:554.752000pt;}
.y7d{bottom:557.441333pt;}
.y1d7{bottom:558.092000pt;}
.y23a{bottom:558.624000pt;}
.y16b{bottom:559.288000pt;}
.y11c{bottom:559.876000pt;}
.y45{bottom:566.706667pt;}
.y12{bottom:569.008000pt;}
.y7c{bottom:569.396000pt;}
.y16a{bottom:569.914667pt;}
.y1d6{bottom:570.048000pt;}
.y11b{bottom:570.502667pt;}
.y239{bottom:570.578667pt;}
.yc8{bottom:571.558667pt;}
.y44{bottom:578.661333pt;}
.y169{bottom:580.541333pt;}
.y11a{bottom:581.129333pt;}
.y7b{bottom:581.352000pt;}
.y1d5{bottom:582.002667pt;}
.y238{bottom:583.065333pt;}
.y43{bottom:591.148000pt;}
.y168{bottom:591.168000pt;}
.y119{bottom:591.756000pt;}
.y7a{bottom:593.838667pt;}
.y1d4{bottom:594.489333pt;}
.y237{bottom:595.020000pt;}
.y11{bottom:598.232000pt;}
.y167{bottom:601.794667pt;}
.y118{bottom:602.384000pt;}
.y1d3{bottom:606.444000pt;}
.y166{bottom:612.421333pt;}
.y117{bottom:613.010667pt;}
.y42{bottom:615.058667pt;}
.y236{bottom:617.602667pt;}
.y79{bottom:617.748000pt;}
.y165{bottom:623.048000pt;}
.y10{bottom:623.138667pt;}
.y116{bottom:623.637333pt;}
.y41{bottom:627.013333pt;}
.y1d2{bottom:629.026667pt;}
.y235{bottom:629.557333pt;}
.y78{bottom:629.704000pt;}
.y164{bottom:633.676000pt;}
.y115{bottom:634.264000pt;}
.y40{bottom:638.969333pt;}
.yf{bottom:639.078667pt;}
.y1d1{bottom:640.981333pt;}
.y234{bottom:641.513333pt;}
.y77{bottom:641.658667pt;}
.y163{bottom:644.302667pt;}
.y114{bottom:644.890667pt;}
.y212{bottom:650.469333pt;}
.y3f{bottom:651.456000pt;}
.y1d0{bottom:652.936000pt;}
.y233{bottom:653.998667pt;}
.y76{bottom:654.145333pt;}
.y162{bottom:654.929333pt;}
.ye{bottom:655.018667pt;}
.y113{bottom:655.517333pt;}
.y1a0{bottom:663.686667pt;}
.y1cf{bottom:665.422667pt;}
.y161{bottom:665.556000pt;}
.y232{bottom:665.954667pt;}
.y112{bottom:666.144000pt;}
.y211{bottom:667.737333pt;}
.yd{bottom:670.958667pt;}
.y3e{bottom:675.365333pt;}
.y160{bottom:676.182667pt;}
.y111{bottom:676.770667pt;}
.y1ce{bottom:677.378667pt;}
.y75{bottom:678.056000pt;}
.y195{bottom:680.954667pt;}
.y15f{bottom:686.809333pt;}
.yc{bottom:686.900000pt;}
.y3d{bottom:687.321333pt;}
.y110{bottom:687.397333pt;}
.y231{bottom:688.536000pt;}
.y74{bottom:690.010667pt;}
.y1b0{bottom:690.856000pt;}
.y15e{bottom:697.436000pt;}
.y10f{bottom:698.025333pt;}
.y3c{bottom:699.276000pt;}
.y1cd{bottom:699.960000pt;}
.y230{bottom:700.492000pt;}
.y73{bottom:701.966667pt;}
.yb{bottom:702.840000pt;}
.ydf{bottom:707.654667pt;}
.y15d{bottom:708.062667pt;}
.y1af{bottom:708.124000pt;}
.y4a{bottom:708.166667pt;}
.y10e{bottom:708.652000pt;}
.y3b{bottom:711.762667pt;}
.y1cc{bottom:711.916000pt;}
.y22f{bottom:712.446667pt;}
.y72{bottom:714.452000pt;}
.y15c{bottom:718.689333pt;}
.ya{bottom:718.780000pt;}
.y10d{bottom:719.278667pt;}
.y8a{bottom:723.594667pt;}
.y3a{bottom:723.717333pt;}
.y1cb{bottom:723.870667pt;}
.y22e{bottom:724.933333pt;}
.y71{bottom:726.408000pt;}
.yda{bottom:726.782667pt;}
.y15b{bottom:729.317333pt;}
.y10c{bottom:729.905333pt;}
.y2b{bottom:734.165333pt;}
.y9{bottom:734.720000pt;}
.y1ca{bottom:736.357333pt;}
.y22d{bottom:736.888000pt;}
.y15a{bottom:739.944000pt;}
.y10b{bottom:740.532000pt;}
.y81{bottom:742.722667pt;}
.yc7{bottom:746.666667pt;}
.y39{bottom:747.628000pt;}
.y1c9{bottom:748.312000pt;}
.y2a{bottom:750.105333pt;}
.y70{bottom:750.318667pt;}
.y159{bottom:750.570667pt;}
.y8{bottom:750.660000pt;}
.y10a{bottom:751.158667pt;}
.ya8{bottom:756.645333pt;}
.y22c{bottom:759.470667pt;}
.y38{bottom:759.584000pt;}
.y158{bottom:761.197333pt;}
.y109{bottom:761.785333pt;}
.y6f{bottom:762.273333pt;}
.ybd{bottom:765.794667pt;}
.y29{bottom:766.045333pt;}
.y7{bottom:766.601333pt;}
.y1c8{bottom:770.894667pt;}
.y22b{bottom:771.425333pt;}
.y37{bottom:771.538667pt;}
.y157{bottom:771.824000pt;}
.y108{bottom:772.412000pt;}
.y6e{bottom:774.228000pt;}
.y9e{bottom:775.774667pt;}
.y28{bottom:781.985333pt;}
.y156{bottom:782.450667pt;}
.y6{bottom:782.541333pt;}
.y1c7{bottom:782.849333pt;}
.y107{bottom:783.038667pt;}
.y22a{bottom:783.380000pt;}
.y36{bottom:784.025333pt;}
.y6d{bottom:786.714667pt;}
.y155{bottom:793.077333pt;}
.y106{bottom:793.666667pt;}
.y1c6{bottom:794.804000pt;}
.y229{bottom:795.866667pt;}
.y27{bottom:797.926667pt;}
.y5{bottom:798.481333pt;}
.y154{bottom:803.704000pt;}
.y105{bottom:804.293333pt;}
.y1c5{bottom:807.290667pt;}
.y228{bottom:807.822667pt;}
.y35{bottom:807.936000pt;}
.y6c{bottom:810.625333pt;}
.y26{bottom:813.866667pt;}
.y153{bottom:814.330667pt;}
.y4{bottom:814.421333pt;}
.y104{bottom:814.920000pt;}
.y1c4{bottom:819.246667pt;}
.y34{bottom:819.890667pt;}
.y6b{bottom:822.580000pt;}
.y152{bottom:824.958667pt;}
.y103{bottom:825.546667pt;}
.y25{bottom:829.806667pt;}
.y227{bottom:830.404000pt;}
.y33{bottom:831.845333pt;}
.y6a{bottom:834.536000pt;}
.y151{bottom:835.585333pt;}
.y102{bottom:836.173333pt;}
.y1c3{bottom:841.828000pt;}
.y226{bottom:842.360000pt;}
.y32{bottom:844.332000pt;}
.y24{bottom:845.746667pt;}
.y150{bottom:846.212000pt;}
.y101{bottom:846.800000pt;}
.y69{bottom:847.022667pt;}
.y1c2{bottom:853.784000pt;}
.y225{bottom:854.314667pt;}
.y14f{bottom:856.838667pt;}
.y100{bottom:857.426667pt;}
.y23{bottom:861.686667pt;}
.y1c1{bottom:865.738667pt;}
.y224{bottom:866.801333pt;}
.y14e{bottom:867.465333pt;}
.yff{bottom:868.053333pt;}
.y31{bottom:868.242667pt;}
.y68{bottom:870.932000pt;}
.y22{bottom:877.626667pt;}
.y14d{bottom:878.092000pt;}
.y1c0{bottom:878.225333pt;}
.yfe{bottom:878.680000pt;}
.y223{bottom:878.756000pt;}
.y30{bottom:880.197333pt;}
.y67{bottom:882.888000pt;}
.y14c{bottom:888.718667pt;}
.yfd{bottom:889.308000pt;}
.y1bf{bottom:890.180000pt;}
.y222{bottom:890.712000pt;}
.y2f{bottom:892.153333pt;}
.y21{bottom:893.568000pt;}
.y66{bottom:894.842667pt;}
.y3{bottom:897.262667pt;}
.y14b{bottom:899.345333pt;}
.yfc{bottom:899.934667pt;}
.y221{bottom:902.666667pt;}
.y2e{bottom:904.640000pt;}
.y65{bottom:907.329333pt;}
.y20{bottom:909.508000pt;}
.y14a{bottom:909.972000pt;}
.yfb{bottom:911.092000pt;}
.y1be{bottom:912.762667pt;}
.y220{bottom:914.621333pt;}
.y2d{bottom:916.594667pt;}
.y64{bottom:919.284000pt;}
.y149{bottom:920.600000pt;}
.y1bd{bottom:924.717333pt;}
.y1f{bottom:925.448000pt;}
.y21f{bottom:927.108000pt;}
.yfa{bottom:931.282667pt;}
.y148{bottom:931.757333pt;}
.y2{bottom:934.457333pt;}
.y1bc{bottom:936.672000pt;}
.y21e{bottom:939.064000pt;}
.y1e{bottom:941.388000pt;}
.y25f{bottom:945.772000pt;}
.y1bb{bottom:949.158667pt;}
.y147{bottom:951.948000pt;}
.y1d{bottom:957.328000pt;}
.yf9{bottom:957.570667pt;}
.y25e{bottom:957.726667pt;}
.y21d{bottom:960.184000pt;}
.y1ba{bottom:961.114667pt;}
.y1{bottom:971.650667pt;}
.y21c{bottom:976.124000pt;}
.y1c{bottom:977.453333pt;}
.y1b9{bottom:982.234667pt;}
.h14{height:27.039747pt;}
.h9{height:28.991027pt;}
.h6{height:29.499997pt;}
.h16{height:30.064422pt;}
.h12{height:30.532783pt;}
.h7{height:30.902734pt;}
.ha{height:32.212253pt;}
.h13{height:33.925315pt;}
.h17{height:34.765722pt;}
.hc{height:35.621347pt;}
.hf{height:35.722824pt;}
.h3{height:36.449833pt;}
.h4{height:36.503166pt;}
.h5{height:38.628321pt;}
.hd{height:39.579274pt;}
.h10{height:39.692027pt;}
.h2{height:48.615166pt;}
.h1{height:92.708203pt;}
.h11{height:138.446187pt;}
.hb{height:161.519493pt;}
.he{height:161.979627pt;}
.h15{height:239.225747pt;}
.h8{height:271.195667pt;}
.h0{height:1056.000000pt;}
.w4{width:411.266613pt;}
.w2{width:479.807907pt;}
.w3{width:479.813600pt;}
.w5{width:685.436573pt;}
.w1{width:685.445667pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x36{left:6.922309pt;}
.x26{left:8.075975pt;}
.x50{left:11.929047pt;}
.x18{left:13.559783pt;}
.x30{left:14.904848pt;}
.x19{left:49.403455pt;}
.x1c{left:52.649640pt;}
.x1d{left:55.411306pt;}
.x23{left:57.068306pt;}
.x22{left:59.829973pt;}
.x8{left:65.285333pt;}
.x51{left:68.429474pt;}
.x4a{left:75.194667pt;}
.x4{left:78.569333pt;}
.x49{left:79.844000pt;}
.x58{left:81.385333pt;}
.x42{left:82.746667pt;}
.x27{left:85.202707pt;}
.x4d{left:86.297333pt;}
.x2e{left:89.653333pt;}
.x3{left:91.685333pt;}
.x4c{left:93.270667pt;}
.x13{left:97.782667pt;}
.x37{left:101.038975pt;}
.x3f{left:111.182667pt;}
.x47{left:115.917333pt;}
.x46{left:120.566667pt;}
.x2b{left:122.240000pt;}
.x56{left:124.193333pt;}
.x44{left:125.196000pt;}
.x2{left:126.228000pt;}
.x38{left:128.266320pt;}
.x31{left:129.651760pt;}
.x33{left:135.882667pt;}
.x5f{left:138.206667pt;}
.x60{left:145.269333pt;}
.x1{left:146.264000pt;}
.x28{left:147.946427pt;}
.x45{left:153.336000pt;}
.x43{left:155.540000pt;}
.x1f{left:156.501333pt;}
.x48{left:157.760000pt;}
.x4b{left:159.972000pt;}
.x2f{left:162.446667pt;}
.x39{left:165.497333pt;}
.x25{left:168.100000pt;}
.x12{left:170.394667pt;}
.x29{left:181.879093pt;}
.x2a{left:185.562667pt;}
.x4e{left:191.900000pt;}
.x32{left:198.731307pt;}
.x35{left:202.369333pt;}
.x3c{left:208.068000pt;}
.x14{left:224.102667pt;}
.x15{left:226.758667pt;}
.x20{left:229.113333pt;}
.x41{left:230.670667pt;}
.x1e{left:231.769333pt;}
.xe{left:242.324000pt;}
.x2d{left:243.474667pt;}
.x9{left:259.052000pt;}
.x1a{left:260.701333pt;}
.x34{left:262.181333pt;}
.x1b{left:267.881667pt;}
.x55{left:274.042004pt;}
.xa{left:279.509333pt;}
.x3d{left:280.860000pt;}
.x10{left:284.737333pt;}
.x5c{left:287.260677pt;}
.x53{left:288.227897pt;}
.x3e{left:301.016000pt;}
.x52{left:306.605077pt;}
.x4f{left:309.494280pt;}
.xb{left:314.869333pt;}
.x24{left:318.237333pt;}
.xc{left:324.460000pt;}
.x17{left:325.600500pt;}
.x21{left:327.533667pt;}
.x5e{left:330.280000pt;}
.x5a{left:331.721333pt;}
.x5d{left:336.382667pt;}
.x59{left:337.821333pt;}
.x54{left:340.352000pt;}
.x40{left:343.510667pt;}
.x2c{left:346.964000pt;}
.x5b{left:348.166667pt;}
.x57{left:352.900000pt;}
.x3b{left:361.889333pt;}
.x61{left:370.806667pt;}
.xd{left:377.076000pt;}
.x11{left:379.738667pt;}
.x16{left:401.209333pt;}
.xf{left:404.678667pt;}
.x3a{left:406.172000pt;}
.x5{left:470.401333pt;}
.x6{left:519.856000pt;}
.x7{left:741.496000pt;}
}




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