
    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_67fea3ff920b62dbc4ea46e4.woff')format("woff");}.ff1{font-family:ff1;line-height:0.730957;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_1acd638b5b149830b1075c5b.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_4f853ff27942f65ab5fc4b28.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_02ad62636dd75566b4297cec.woff')format("woff");}.ff4{font-family:ff4;line-height:0.936000;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_9f54955ca32a4054c8d4c14f.woff')format("woff");}.ff5{font-family:ff5;line-height:0.912308;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_9c0296f20bc9a06df99216e5.woff')format("woff");}.ff6{font-family:ff6;line-height:0.938477;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_5c07c56073d6b7ea5aa15e26.woff')format("woff");}.ff7{font-family:ff7;line-height:0.942871;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_e14832a153847fc3d4d7fc08.woff')format("woff");}.ff8{font-family:ff8;line-height:0.938477;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_940242fbcd4cc15a55e92bb9.woff')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_02ad62636dd75566b4297cec.woff')format("woff");}.ffa{font-family:ffa;line-height:0.936000;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_473a21658f7c9886ba5218be.woff')format("woff");}.ffb{font-family:ffb;line-height:0.943359;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_02ad62636dd75566b4297cec.woff')format("woff");}.ffc{font-family:ffc;line-height:0.936000;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_b5bf625fc3ff695e2d630b87.woff')format("woff");}.ffd{font-family:ffd;line-height:0.927734;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_7fc33387a16d983a41e61a11.woff')format("woff");}.ffe{font-family:ffe;line-height:1.078613;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_ed4c42d8941e52f6bfe5256c.woff')format("woff");}.fff{font-family:fff;line-height:0.781000;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_1f91cf7b2b042ae22df59dc6.woff')format("woff");}.ff10{font-family:ff10;line-height:0.912308;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_dc39458ef8373ef4c417ce7c.woff')format("woff");}.ff11{font-family:ff11;line-height:0.715820;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_3c1bdf9d74fd060c38524ae0.woff')format("woff");}.ff12{font-family:ff12;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_02ad62636dd75566b4297cec.woff')format("woff");}.ff13{font-family:ff13;line-height:0.936000;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_8e9fb1e63f6ce2926558af0d.woff')format("woff");}.ff14{font-family:ff14;line-height:0.927734;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_6888d928728e7bb0d64cab02.woff')format("woff");}.ff15{font-family:ff15;line-height:1.078613;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_ed4c42d8941e52f6bfe5256c.woff')format("woff");}.ff16{font-family:ff16;line-height:0.781000;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_1f91cf7b2b042ae22df59dc6.woff')format("woff");}.ff17{font-family:ff17;line-height:0.912308;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_dc39458ef8373ef4c417ce7c.woff')format("woff");}.ff18{font-family:ff18;line-height:0.715820;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_3c1bdf9d74fd060c38524ae0.woff')format("woff");}.ff19{font-family:ff19;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a;src:url('chunks/assets/font_ed4c42d8941e52f6bfe5256c.woff')format("woff");}.ff1a{font-family:ff1a;line-height:0.781000;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_1f91cf7b2b042ae22df59dc6.woff')format("woff");}.ff1b{font-family:ff1b;line-height:0.912308;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_dc39458ef8373ef4c417ce7c.woff')format("woff");}.ff1c{font-family:ff1c;line-height:0.715820;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_3c1bdf9d74fd060c38524ae0.woff')format("woff");}.ff1d{font-family:ff1d;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1e;src:url('chunks/assets/font_058c6b0e1c12ff42957ec8ea.woff')format("woff");}.ff1e{font-family:ff1e;line-height:0.927734;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_a46418e2d27ff7dbfdad5c13.woff')format("woff");}.ff1f{font-family:ff1f;line-height:1.078613;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_ed4c42d8941e52f6bfe5256c.woff')format("woff");}.ff20{font-family:ff20;line-height:0.781000;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_02ad62636dd75566b4297cec.woff')format("woff");}.ff21{font-family:ff21;line-height:0.936000;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_1f91cf7b2b042ae22df59dc6.woff')format("woff");}.ff22{font-family:ff22;line-height:0.912308;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_dc39458ef8373ef4c417ce7c.woff')format("woff");}.ff23{font-family:ff23;line-height:0.715820;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_3c1bdf9d74fd060c38524ae0.woff')format("woff");}.ff24{font-family:ff24;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff25;src:url('chunks/assets/font_058c6b0e1c12ff42957ec8ea.woff')format("woff");}.ff25{font-family:ff25;line-height:0.927734;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_a46418e2d27ff7dbfdad5c13.woff')format("woff");}.ff26{font-family:ff26;line-height:1.078613;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_ed4c42d8941e52f6bfe5256c.woff')format("woff");}.ff27{font-family:ff27;line-height:0.781000;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_02ad62636dd75566b4297cec.woff')format("woff");}.ff28{font-family:ff28;line-height:0.936000;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_1f91cf7b2b042ae22df59dc6.woff')format("woff");}.ff29{font-family:ff29;line-height:0.912308;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_dc39458ef8373ef4c417ce7c.woff')format("woff");}.ff2a{font-family:ff2a;line-height:0.715820;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_3c1bdf9d74fd060c38524ae0.woff')format("woff");}.ff2b{font-family:ff2b;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2c;src:url('chunks/assets/font_b2ecd0663fe50e1f6c90e786.woff')format("woff");}.ff2c{font-family:ff2c;line-height:0.690918;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;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:2.142000px;}
.v2{vertical-align:6.046800px;}
.v3{vertical-align:19.980000px;}
.v4{vertical-align:32.400000px;}
.v5{vertical-align:64.800000px;}
.lsf{letter-spacing:-1.650000px;}
.lse{letter-spacing:-1.320000px;}
.ls0{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.001200px;}
.ls6{letter-spacing:0.003600px;}
.ls5{letter-spacing:8.640000px;}
.ls1{letter-spacing:10.800000px;}
.ls3{letter-spacing:13.200000px;}
.ls9{letter-spacing:14.400000px;}
.ls2{letter-spacing:19.585200px;}
.ls8{letter-spacing:28.800000px;}
.ls4{letter-spacing:36.000000px;}
.lsa{letter-spacing:91.408200px;}
.lsc{letter-spacing:91.642200px;}
.lsd{letter-spacing:96.208800px;}
.lsb{letter-spacing:826.108800px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(255,255,255),0 0.015em rgb(255,255,255),0.015em 0 rgb(255,255,255),0 -0.015em  rgb(255,255,255);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(255,255,255);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-420.000000px;}
.ws20{word-spacing:-98.766600px;}
.wsc{word-spacing:-92.160000px;}
.wsb{word-spacing:-75.600000px;}
.ws6b{word-spacing:-72.479400px;}
.ws21{word-spacing:-36.180000px;}
.ws6{word-spacing:-25.812000px;}
.wsfb{word-spacing:-20.016000px;}
.ws77{word-spacing:-16.680000px;}
.ws6d{word-spacing:-15.012000px;}
.wsd{word-spacing:-14.520000px;}
.ws79{word-spacing:-14.400000px;}
.ws32{word-spacing:-14.388000px;}
.ws2f{word-spacing:-14.322000px;}
.ws64{word-spacing:-14.190000px;}
.ws65{word-spacing:-13.926000px;}
.ws37{word-spacing:-13.728000px;}
.ws56{word-spacing:-13.596000px;}
.ws5a{word-spacing:-13.530000px;}
.ws3d{word-spacing:-13.464000px;}
.ws78{word-spacing:-13.344000px;}
.ws43{word-spacing:-13.134000px;}
.ws15{word-spacing:-13.068000px;}
.ws7{word-spacing:-12.960000px;}
.ws5f{word-spacing:-12.936000px;}
.ws40{word-spacing:-12.870000px;}
.ws4a{word-spacing:-12.804000px;}
.ws26{word-spacing:-12.672000px;}
.ws44{word-spacing:-12.606000px;}
.ws51{word-spacing:-12.540000px;}
.ws33{word-spacing:-12.474000px;}
.ws45{word-spacing:-12.408000px;}
.ws2b{word-spacing:-12.342000px;}
.ws13{word-spacing:-12.078000px;}
.ws4f{word-spacing:-12.012000px;}
.ws18{word-spacing:-11.748000px;}
.ws62{word-spacing:-11.616000px;}
.ws29{word-spacing:-11.550000px;}
.ws61{word-spacing:-11.484000px;}
.ws17{word-spacing:-11.352000px;}
.ws2e{word-spacing:-11.286000px;}
.wse{word-spacing:-11.154000px;}
.ws1c{word-spacing:-11.088000px;}
.ws52{word-spacing:-10.890000px;}
.ws3f{word-spacing:-10.824000px;}
.ws3a{word-spacing:-10.758000px;}
.ws19{word-spacing:-10.428000px;}
.ws38{word-spacing:-10.362000px;}
.ws54{word-spacing:-10.230000px;}
.ws66{word-spacing:-10.098000px;}
.ws60{word-spacing:-9.702000px;}
.ws10{word-spacing:-9.570000px;}
.ws22{word-spacing:-9.438000px;}
.wsf{word-spacing:-9.372000px;}
.ws4e{word-spacing:-9.240000px;}
.ws5b{word-spacing:-9.108000px;}
.ws94{word-spacing:-9.060000px;}
.ws3e{word-spacing:-9.042000px;}
.ws5e{word-spacing:-8.976000px;}
.ws30{word-spacing:-8.844000px;}
.ws5c{word-spacing:-8.778000px;}
.ws25{word-spacing:-8.514000px;}
.wsf9{word-spacing:-8.424000px;}
.ws2c{word-spacing:-8.316000px;}
.ws36{word-spacing:-8.250000px;}
.ws68{word-spacing:-8.052000px;}
.ws24{word-spacing:-7.986000px;}
.ws41{word-spacing:-7.920000px;}
.ws31{word-spacing:-7.722000px;}
.ws7a{word-spacing:-7.680000px;}
.ws46{word-spacing:-7.656000px;}
.ws63{word-spacing:-7.392000px;}
.wsa3{word-spacing:-7.200000px;}
.ws1b{word-spacing:-7.128000px;}
.ws5d{word-spacing:-7.062000px;}
.ws14{word-spacing:-6.996000px;}
.ws48{word-spacing:-6.864000px;}
.wsea{word-spacing:-6.840000px;}
.ws4c{word-spacing:-6.666000px;}
.ws82{word-spacing:-6.660000px;}
.ws81{word-spacing:-6.600000px;}
.ws23{word-spacing:-6.534000px;}
.ws58{word-spacing:-6.402000px;}
.ws4d{word-spacing:-6.270000px;}
.ws55{word-spacing:-6.204000px;}
.ws69{word-spacing:-5.940000px;}
.ws11{word-spacing:-5.874000px;}
.ws47{word-spacing:-5.676000px;}
.wsb7{word-spacing:-5.460000px;}
.ws27{word-spacing:-5.346000px;}
.wsc5{word-spacing:-5.340000px;}
.ws53{word-spacing:-5.280000px;}
.ws3b{word-spacing:-5.214000px;}
.ws67{word-spacing:-4.950000px;}
.ws2d{word-spacing:-4.818000px;}
.ws8c{word-spacing:-4.800000px;}
.ws42{word-spacing:-4.752000px;}
.ws89{word-spacing:-4.740000px;}
.wsf6{word-spacing:-4.644000px;}
.ws2a{word-spacing:-4.422000px;}
.wsaf{word-spacing:-4.320000px;}
.ws34{word-spacing:-4.224000px;}
.wsf1{word-spacing:-4.200000px;}
.wsfc{word-spacing:-3.960000px;}
.ws16{word-spacing:-3.894000px;}
.ws3c{word-spacing:-3.498000px;}
.ws39{word-spacing:-3.432000px;}
.wse9{word-spacing:-3.300000px;}
.ws59{word-spacing:-2.838000px;}
.ws50{word-spacing:-2.772000px;}
.ws57{word-spacing:-2.706000px;}
.ws28{word-spacing:-2.640000px;}
.ws49{word-spacing:-2.442000px;}
.ws1d{word-spacing:-2.376000px;}
.ws2{word-spacing:-2.220000px;}
.ws4b{word-spacing:-2.112000px;}
.wsa6{word-spacing:-2.100000px;}
.ws1a{word-spacing:-2.046000px;}
.ws3{word-spacing:-1.998000px;}
.wsb6{word-spacing:-1.800000px;}
.ws1e{word-spacing:-1.782000px;}
.ws12{word-spacing:-1.776000px;}
.ws80{word-spacing:-1.620000px;}
.wsb1{word-spacing:-1.560000px;}
.ws70{word-spacing:-1.512000px;}
.wsbd{word-spacing:-1.260000px;}
.ws4{word-spacing:-0.972000px;}
.wsdf{word-spacing:-0.960000px;}
.ws35{word-spacing:-0.864000px;}
.wsb3{word-spacing:-0.780000px;}
.ws7e{word-spacing:-0.540000px;}
.ws73{word-spacing:-0.486000px;}
.wsed{word-spacing:-0.480000px;}
.wsa7{word-spacing:-0.420000px;}
.wsd0{word-spacing:-0.180000px;}
.ws1{word-spacing:0.000000px;}
.wsdb{word-spacing:0.060000px;}
.ws7f{word-spacing:0.120000px;}
.wsd2{word-spacing:0.480000px;}
.wsa5{word-spacing:0.660000px;}
.wsa2{word-spacing:0.780000px;}
.wsdd{word-spacing:0.840000px;}
.ws8b{word-spacing:0.900000px;}
.wsf8{word-spacing:1.242000px;}
.wse3{word-spacing:1.380000px;}
.wsd9{word-spacing:1.980000px;}
.wsa4{word-spacing:2.040000px;}
.ws75{word-spacing:2.052000px;}
.wsf0{word-spacing:2.280000px;}
.wsb5{word-spacing:2.340000px;}
.wse5{word-spacing:2.520000px;}
.wsd1{word-spacing:2.760000px;}
.ws87{word-spacing:3.060000px;}
.ws86{word-spacing:3.120000px;}
.ws99{word-spacing:3.360000px;}
.wsa8{word-spacing:3.420000px;}
.ws8d{word-spacing:3.600000px;}
.wse8{word-spacing:3.780000px;}
.wscb{word-spacing:3.900000px;}
.ws97{word-spacing:4.380000px;}
.ws8f{word-spacing:4.500000px;}
.ws71{word-spacing:4.644000px;}
.wse4{word-spacing:4.680000px;}
.wsb2{word-spacing:4.860000px;}
.wsb0{word-spacing:5.040000px;}
.ws6e{word-spacing:5.238000px;}
.ws88{word-spacing:5.280000px;}
.ws93{word-spacing:5.400000px;}
.ws9d{word-spacing:5.424000px;}
.wsef{word-spacing:5.580000px;}
.wsc9{word-spacing:5.700000px;}
.wsbe{word-spacing:5.760000px;}
.wsaa{word-spacing:5.820000px;}
.ws7d{word-spacing:6.000000px;}
.wsf5{word-spacing:6.642000px;}
.ws9a{word-spacing:6.660000px;}
.wsf4{word-spacing:6.696000px;}
.ws9e{word-spacing:6.720000px;}
.wsf3{word-spacing:6.804000px;}
.wsde{word-spacing:6.840000px;}
.wsc6{word-spacing:6.960000px;}
.ws9c{word-spacing:7.260000px;}
.wsdc{word-spacing:7.560000px;}
.ws7c{word-spacing:7.620000px;}
.ws98{word-spacing:7.680000px;}
.ws76{word-spacing:7.776000px;}
.wsac{word-spacing:7.920000px;}
.wseb{word-spacing:7.980000px;}
.wse7{word-spacing:8.100000px;}
.wscf{word-spacing:8.460000px;}
.ws6f{word-spacing:8.532000px;}
.wsec{word-spacing:8.640000px;}
.wsa9{word-spacing:8.700000px;}
.wsb4{word-spacing:8.940000px;}
.wsee{word-spacing:9.000000px;}
.ws74{word-spacing:9.018000px;}
.wse2{word-spacing:9.060000px;}
.ws95{word-spacing:9.300000px;}
.ws72{word-spacing:9.504000px;}
.ws84{word-spacing:9.720000px;}
.wsb8{word-spacing:9.780000px;}
.wsbc{word-spacing:9.840000px;}
.wsc4{word-spacing:10.200000px;}
.ws96{word-spacing:10.440000px;}
.wsa1{word-spacing:10.620000px;}
.wsfa{word-spacing:10.746000px;}
.wsf2{word-spacing:10.854000px;}
.wsce{word-spacing:10.920000px;}
.ws9b{word-spacing:11.880000px;}
.wscd{word-spacing:11.940000px;}
.ws8a{word-spacing:12.720000px;}
.wsb9{word-spacing:13.020000px;}
.ws83{word-spacing:13.140000px;}
.ws8e{word-spacing:13.620000px;}
.wsc7{word-spacing:15.180000px;}
.wse1{word-spacing:15.300000px;}
.wsf7{word-spacing:15.552000px;}
.wsad{word-spacing:15.600000px;}
.wse0{word-spacing:15.720000px;}
.wsab{word-spacing:16.140000px;}
.ws85{word-spacing:16.380000px;}
.ws9f{word-spacing:16.704000px;}
.wscc{word-spacing:18.180000px;}
.wsda{word-spacing:18.600000px;}
.wsba{word-spacing:18.840000px;}
.ws90{word-spacing:19.500000px;}
.wsa0{word-spacing:20.040000px;}
.wsca{word-spacing:20.400000px;}
.wsc8{word-spacing:20.460000px;}
.ws8{word-spacing:20.574000px;}
.wsbb{word-spacing:21.660000px;}
.ws92{word-spacing:21.720000px;}
.ws91{word-spacing:22.380000px;}
.wse6{word-spacing:23.820000px;}
.ws7b{word-spacing:25.620000px;}
.wsae{word-spacing:29.040000px;}
.ws9{word-spacing:41.597400px;}
.wsa{word-spacing:41.633400px;}
.ws6c{word-spacing:79.594800px;}
.ws1f{word-spacing:81.017400px;}
.wsc3{word-spacing:83.894400px;}
.wsd6{word-spacing:100.898400px;}
.ws5{word-spacing:101.888400px;}
.ws6a{word-spacing:107.243400px;}
.wsd5{word-spacing:107.364600px;}
.wsd7{word-spacing:111.397200px;}
.wsd3{word-spacing:146.947200px;}
.wsbf{word-spacing:154.410600px;}
.wsc2{word-spacing:160.317000px;}
.wsc1{word-spacing:165.411600px;}
.wsd4{word-spacing:171.690600px;}
.wsd8{word-spacing:246.502200px;}
.wsc0{word-spacing:603.061200px;}
._f{margin-left:-2067.096000px;}
._35{margin-left:-1881.693600px;}
._2c{margin-left:-1721.301600px;}
._2a{margin-left:-1718.806800px;}
._3e{margin-left:-1698.882600px;}
._33{margin-left:-1597.708200px;}
._37{margin-left:-1537.439400px;}
._24{margin-left:-1473.690000px;}
._2e{margin-left:-1406.215800px;}
._26{margin-left:-1348.122600px;}
._7{margin-left:-1344.388800px;}
._42{margin-left:-1325.889000px;}
._2f{margin-left:-1314.353400px;}
._16{margin-left:-1272.573000px;}
._d{margin-left:-1238.490600px;}
._31{margin-left:-1212.406200px;}
._28{margin-left:-1194.318600px;}
._11{margin-left:-1134.312600px;}
._b{margin-left:-1121.347800px;}
._29{margin-left:-1086.210000px;}
._3a{margin-left:-1072.250400px;}
._1b{margin-left:-1068.670800px;}
._13{margin-left:-1065.258000px;}
._8{margin-left:-1053.270000px;}
._1d{margin-left:-1029.294000px;}
._9{margin-left:-998.220000px;}
._14{margin-left:-951.156000px;}
._34{margin-left:-937.422000px;}
._22{margin-left:-927.258600px;}
._10{margin-left:-924.264000px;}
._20{margin-left:-915.300000px;}
._17{margin-left:-897.210000px;}
._41{margin-left:-891.096000px;}
._3d{margin-left:-882.966000px;}
._1f{margin-left:-878.310000px;}
._12{margin-left:-861.192000px;}
._3b{margin-left:-858.276000px;}
._19{margin-left:-853.032000px;}
._30{margin-left:-840.294000px;}
._1a{margin-left:-838.440000px;}
._c{margin-left:-813.078000px;}
._15{margin-left:-796.932000px;}
._21{margin-left:-786.240000px;}
._1c{margin-left:-782.130000px;}
._1e{margin-left:-775.422000px;}
._32{margin-left:-767.210400px;}
._3f{margin-left:-762.156000px;}
._23{margin-left:-724.446000px;}
._39{margin-left:-705.240000px;}
._2b{margin-left:-696.222000px;}
._6{margin-left:-693.252000px;}
._3c{margin-left:-609.336000px;}
._5{margin-left:-571.860000px;}
._40{margin-left:-563.239800px;}
._0{margin-left:-508.577400px;}
._18{margin-left:-480.864000px;}
._2d{margin-left:-441.126000px;}
._e{margin-left:-399.114000px;}
._27{margin-left:-389.048400px;}
._38{margin-left:-378.162000px;}
._36{margin-left:-366.120000px;}
._25{margin-left:-264.060000px;}
._48{margin-left:-13.186800px;}
._4f{margin-left:-12.103800px;}
._43{margin-left:-10.800000px;}
._4a{margin-left:-8.923800px;}
._a{margin-left:-6.993000px;}
._44{margin-left:-5.940600px;}
._3{margin-left:-4.017600px;}
._2{margin-left:-2.220000px;}
._4{margin-left:-1.043400px;}
._49{width:1.015200px;}
._1{width:2.196000px;}
._4b{width:3.608400px;}
._52{width:4.714200px;}
._4e{width:5.716200px;}
._4c{width:6.926400px;}
._47{width:8.532000px;}
._46{width:10.492200px;}
._57{width:11.865600px;}
._51{width:13.888200px;}
._53{width:16.999200px;}
._50{width:19.255200px;}
._45{width:20.593200px;}
._77{width:28.983000px;}
._78{width:33.000600px;}
._76{width:59.007000px;}
._56{width:62.304000px;}
._60{width:69.830400px;}
._55{width:72.288000px;}
._54{width:73.584000px;}
._62{width:77.656200px;}
._61{width:79.008000px;}
._79{width:98.932200px;}
._63{width:113.128200px;}
._69{width:115.910400px;}
._58{width:222.272400px;}
._68{width:228.785400px;}
._6e{width:230.302200px;}
._4d{width:231.586200px;}
._5b{width:245.844000px;}
._6d{width:248.166600px;}
._5a{width:250.939800px;}
._67{width:257.158200px;}
._5f{width:269.277000px;}
._65{width:270.786000px;}
._6f{width:276.996600px;}
._64{width:281.777400px;}
._75{width:284.032800px;}
._6c{width:290.151600px;}
._59{width:296.634000px;}
._66{width:299.142000px;}
._6b{width:366.932400px;}
._6a{width:375.924000px;}
._5c{width:388.489200px;}
._72{width:420.471600px;}
._70{width:422.793000px;}
._5e{width:545.145600px;}
._71{width:725.563200px;}
._74{width:783.729000px;}
._73{width:923.207400px;}
._5d{width:1107.072600px;}
.fc0{color:rgb(213,185,16);}
.fc1{color:rgb(217,182,26);}
.fc2{color:transparent;}
.fc3{color:rgb(35,31,32);}
.fc4{color:rgb(255,255,255);}
.fc6{color:rgb(48,169,64);}
.fcb{color:rgb(13,13,13);}
.fc5{color:rgb(61,123,199);}
.fca{color:rgb(5,99,193);}
.fc7{color:rgb(210,32,39);}
.fcd{color:rgb(105,198,71);}
.fc9{color:rgb(90,198,243);}
.fc8{color:rgb(47,92,179);}
.fcc{color:rgb(246,131,19);}
.fsc{font-size:34.980000px;}
.fsa{font-size:48.000000px;}
.fs4{font-size:54.000000px;}
.fs5{font-size:60.000000px;}
.fs7{font-size:66.000000px;}
.fs6{font-size:72.000000px;}
.fsd{font-size:126.000000px;}
.fsb{font-size:144.000000px;}
.fs8{font-size:180.000000px;}
.fs9{font-size:288.000000px;}
.fs2{font-size:300.000000px;}
.fs0{font-size:300.112800px;}
.fs3{font-size:420.000000px;}
.fs1{font-size:420.157800px;}
.y0{bottom:0.000000px;}
.y1{bottom:72.509250px;}
.y3{bottom:72.957000px;}
.y5{bottom:83.368950px;}
.y6{bottom:83.904450px;}
.y36{bottom:84.471900px;}
.ya2{bottom:85.007400px;}
.y61{bottom:126.811800px;}
.y35{bottom:127.558950px;}
.y5d{bottom:127.559100px;}
.y216{bottom:127.559250px;}
.y22a{bottom:127.559400px;}
.y13d{bottom:128.869650px;}
.y246{bottom:134.015100px;}
.y6c{bottom:134.096100px;}
.y17e{bottom:138.702450px;}
.y1b5{bottom:141.958950px;}
.y1ea{bottom:141.959100px;}
.y60{bottom:143.011800px;}
.y13c{bottom:143.269650px;}
.y34{bottom:146.811000px;}
.y157{bottom:147.521550px;}
.y5c{bottom:148.011000px;}
.y11c{bottom:148.669650px;}
.y109{bottom:149.817750px;}
.y245{bottom:150.215100px;}
.y6b{bottom:152.096100px;}
.y1b4{bottom:156.358950px;}
.y17d{bottom:158.202450px;}
.y5f{bottom:159.211800px;}
.y156{bottom:161.921700px;}
.y11b{bottom:163.069650px;}
.y108{bottom:164.217750px;}
.y33{bottom:166.062900px;}
.y244{bottom:166.415100px;}
.y13b{bottom:167.321550px;}
.y5b{bottom:168.463050px;}
.y215{bottom:169.559100px;}
.y6a{bottom:170.096100px;}
.y1b3{bottom:170.758950px;}
.yd4{bottom:174.904350px;}
.y5e{bottom:175.411800px;}
.y229{bottom:175.626000px;}
.y1e9{bottom:175.911000px;}
.y13a{bottom:181.721700px;}
.y243{bottom:182.614950px;}
.y11a{bottom:182.869650px;}
.y1b2{bottom:185.158950px;}
.y32{bottom:185.314950px;}
.y17c{bottom:186.206400px;}
.y145{bottom:187.121550px;}
.y214{bottom:187.559100px;}
.y69{bottom:188.096100px;}
.y107{bottom:188.269650px;}
.y5a{bottom:188.914950px;}
.yd3{bottom:189.304350px;}
.y1e8{bottom:193.911000px;}
.y242{bottom:198.815100px;}
.y1b1{bottom:199.558950px;}
.y139{bottom:201.521550px;}
.y106{bottom:202.669650px;}
.y31{bottom:204.566850px;}
.y213{bottom:205.559100px;}
.y17b{bottom:205.706400px;}
.y155{bottom:205.773600px;}
.y68{bottom:206.096100px;}
.yd2{bottom:209.104350px;}
.y59{bottom:209.366850px;}
.ya1{bottom:209.507550px;}
.y1e7{bottom:211.911000px;}
.y241{bottom:215.015100px;}
.y154{bottom:220.173600px;}
.y144{bottom:221.321550px;}
.y228{bottom:222.878250px;}
.y212{bottom:223.559100px;}
.y30{bottom:223.818900px;}
.y67{bottom:224.096100px;}
.y17a{bottom:225.206400px;}
.y138{bottom:225.573600px;}
.y105{bottom:226.721700px;}
.y58{bottom:229.818900px;}
.y1e6{bottom:229.911000px;}
.ya0{bottom:229.959600px;}
.y1b0{bottom:230.430450px;}
.y240{bottom:231.215100px;}
.yd1{bottom:233.156400px;}
.y137{bottom:239.973600px;}
.y104{bottom:241.121550px;}
.y211{bottom:241.559100px;}
.y66{bottom:242.096100px;}
.y2f{bottom:243.070800px;}
.y179{bottom:244.706400px;}
.y143{bottom:245.373600px;}
.y23f{bottom:247.415100px;}
.yd0{bottom:247.556250px;}
.y1e5{bottom:247.911000px;}
.y1af{bottom:248.430450px;}
.y57{bottom:250.270800px;}
.y9f{bottom:250.411500px;}
.y253{bottom:253.855950px;}
.y210{bottom:259.559100px;}
.y142{bottom:259.773600px;}
.y65{bottom:260.096100px;}
.y119{bottom:260.921700px;}
.y2e{bottom:262.322700px;}
.y23e{bottom:263.614950px;}
.y136{bottom:264.025500px;}
.y178{bottom:264.206400px;}
.y103{bottom:265.173600px;}
.y1e4{bottom:265.911000px;}
.y1ae{bottom:266.430450px;}
.ycf{bottom:267.356250px;}
.y56{bottom:270.722850px;}
.y9e{bottom:270.863550px;}
.y252{bottom:271.855950px;}
.y227{bottom:276.524100px;}
.y20f{bottom:277.559100px;}
.y135{bottom:278.425500px;}
.y102{bottom:279.573600px;}
.y23d{bottom:279.815100px;}
.y2d{bottom:281.574750px;}
.y177{bottom:283.706400px;}
.y1e3{bottom:283.911000px;}
.y1ad{bottom:284.430450px;}
.y226{bottom:284.624100px;}
.y118{bottom:284.973600px;}
.y64{bottom:286.600050px;}
.y55{bottom:291.174750px;}
.y9d{bottom:291.315450px;}
.yce{bottom:291.408300px;}
.y20e{bottom:295.559100px;}
.y134{bottom:298.225500px;}
.y101{bottom:299.373600px;}
.y2c{bottom:300.826650px;}
.y1e2{bottom:301.911000px;}
.y1ac{bottom:302.430450px;}
.y176{bottom:303.206400px;}
.y141{bottom:303.625650px;}
.y63{bottom:304.600050px;}
.y269{bottom:305.730000px;}
.ycd{bottom:305.808300px;}
.y54{bottom:311.626800px;}
.y9c{bottom:311.767350px;}
.y20d{bottom:313.559100px;}
.y23c{bottom:314.015100px;}
.y140{bottom:318.025500px;}
.y117{bottom:319.173600px;}
.y1e1{bottom:319.911000px;}
.y2b{bottom:320.078700px;}
.y1ab{bottom:320.430450px;}
.y133{bottom:322.277550px;}
.y175{bottom:322.706400px;}
.y100{bottom:323.425500px;}
.y268{bottom:325.530000px;}
.ycc{bottom:325.608300px;}
.y62{bottom:331.104000px;}
.y20c{bottom:331.559100px;}
.y23b{bottom:332.015100px;}
.y53{bottom:332.078700px;}
.y9b{bottom:332.219400px;}
.y132{bottom:336.677550px;}
.yff{bottom:337.825500px;}
.y1e0{bottom:337.911000px;}
.y1aa{bottom:338.430450px;}
.y2a{bottom:339.330600px;}
.y116{bottom:343.225500px;}
.y267{bottom:345.330000px;}
.y225{bottom:346.369800px;}
.ycb{bottom:349.660200px;}
.y23a{bottom:350.015100px;}
.y52{bottom:352.530600px;}
.y9a{bottom:352.671300px;}
.y174{bottom:354.095250px;}
.y1df{bottom:355.911000px;}
.y1a9{bottom:356.430450px;}
.y153{bottom:356.477550px;}
.yfe{bottom:357.625650px;}
.y29{bottom:358.582650px;}
.y131{bottom:360.729450px;}
.y13f{bottom:361.877550px;}
.yca{bottom:364.060200px;}
.y266{bottom:365.130000px;}
.y20b{bottom:367.559100px;}
.y239{bottom:368.015100px;}
.y51{bottom:372.982650px;}
.y99{bottom:373.123350px;}
.y173{bottom:373.595250px;}
.y1de{bottom:373.911000px;}
.y1a8{bottom:374.430450px;}
.y130{bottom:375.129450px;}
.y13e{bottom:376.277550px;}
.y115{bottom:377.425500px;}
.y28{bottom:377.834550px;}
.y152{bottom:380.529450px;}
.yfd{bottom:381.677550px;}
.y265{bottom:384.930000px;}
.y20a{bottom:385.559100px;}
.y238{bottom:386.015100px;}
.yc9{bottom:388.112250px;}
.y1dd{bottom:391.911000px;}
.y1a7{bottom:392.430450px;}
.y50{bottom:393.434550px;}
.y98{bottom:393.575250px;}
.y12f{bottom:394.929450px;}
.yfc{bottom:396.077550px;}
.y27{bottom:397.086600px;}
.y114{bottom:401.477550px;}
.y172{bottom:401.599200px;}
.yc8{bottom:402.512250px;}
.y237{bottom:404.015100px;}
.y1dc{bottom:409.911150px;}
.y224{bottom:410.067300px;}
.y1a6{bottom:410.430450px;}
.y4f{bottom:413.886600px;}
.y97{bottom:414.027300px;}
.y151{bottom:414.729450px;}
.y113{bottom:415.877550px;}
.y26{bottom:416.338500px;}
.y12e{bottom:418.981500px;}
.yfb{bottom:420.129450px;}
.y208{bottom:420.194400px;}
.y171{bottom:421.099200px;}
.y236{bottom:422.015100px;}
.yc7{bottom:422.312250px;}
.y222{bottom:426.267300px;}
.y1db{bottom:427.911150px;}
.y207{bottom:428.294400px;}
.y1a5{bottom:428.430450px;}
.y25e{bottom:432.045300px;}
.y12d{bottom:433.381500px;}
.y4e{bottom:434.338500px;}
.y96{bottom:434.479200px;}
.yfa{bottom:434.529450px;}
.y25{bottom:435.590400px;}
.y209{bottom:436.394400px;}
.y150{bottom:438.781500px;}
.y112{bottom:439.929450px;}
.y235{bottom:440.015100px;}
.y170{bottom:440.599200px;}
.y223{bottom:442.467300px;}
.y1da{bottom:445.911150px;}
.yc6{bottom:446.364150px;}
.y1a4{bottom:446.430450px;}
.y25d{bottom:451.845300px;}
.y12c{bottom:453.181500px;}
.yf9{bottom:454.329450px;}
.y4d{bottom:454.790550px;}
.y24{bottom:454.842450px;}
.y95{bottom:454.931250px;}
.y234{bottom:458.015100px;}
.y16f{bottom:460.099200px;}
.yc5{bottom:460.764150px;}
.y1d9{bottom:463.911150px;}
.y1a3{bottom:464.430450px;}
.y25c{bottom:471.645300px;}
.y14f{bottom:472.981500px;}
.y23{bottom:474.094500px;}
.y4c{bottom:475.242450px;}
.y94{bottom:475.383150px;}
.y233{bottom:476.015100px;}
.y12b{bottom:477.233400px;}
.yf8{bottom:478.381500px;}
.y16e{bottom:479.599200px;}
.yc4{bottom:480.564300px;}
.y1d8{bottom:481.911150px;}
.y1a2{bottom:482.430450px;}
.y205{bottom:489.993450px;}
.y12a{bottom:491.633400px;}
.yf7{bottom:492.781500px;}
.y22{bottom:493.346400px;}
.y232{bottom:494.015100px;}
.y4b{bottom:495.694500px;}
.y93{bottom:495.835200px;}
.y14e{bottom:497.033400px;}
.y204{bottom:498.093450px;}
.y16d{bottom:499.099200px;}
.y1d7{bottom:499.911150px;}
.y1a1{bottom:500.430450px;}
.y221{bottom:503.026350px;}
.yc3{bottom:504.616200px;}
.y206{bottom:506.193450px;}
.y220{bottom:511.126350px;}
.y129{bottom:511.433400px;}
.y231{bottom:512.015100px;}
.y21{bottom:512.598300px;}
.y4a{bottom:516.146400px;}
.y92{bottom:516.287100px;}
.yf6{bottom:516.833400px;}
.y1d6{bottom:517.911150px;}
.y1a0{bottom:518.430450px;}
.y264{bottom:518.760750px;}
.yc2{bottom:519.016200px;}
.y230{bottom:530.015100px;}
.y16c{bottom:530.125050px;}
.yf5{bottom:531.233400px;}
.y20{bottom:531.850350px;}
.y128{bottom:535.485450px;}
.y1d5{bottom:535.911150px;}
.y19f{bottom:536.430450px;}
.y49{bottom:536.598450px;}
.y91{bottom:536.739000px;}
.y263{bottom:538.560750px;}
.yc1{bottom:538.816200px;}
.y22f{bottom:548.015100px;}
.y16b{bottom:549.625050px;}
.y127{bottom:549.885450px;}
.yf4{bottom:551.033400px;}
.y1f{bottom:551.102400px;}
.y1d4{bottom:553.911150px;}
.y19e{bottom:554.430450px;}
.y14d{bottom:555.285450px;}
.y48{bottom:557.050350px;}
.y262{bottom:558.360600px;}
.y202{bottom:559.792500px;}
.yc0{bottom:562.868250px;}
.y22e{bottom:566.015100px;}
.y201{bottom:567.892500px;}
.y126{bottom:569.685450px;}
.y1e{bottom:570.354300px;}
.y19d{bottom:572.430450px;}
.y21f{bottom:572.984550px;}
.yf3{bottom:575.085450px;}
.y203{bottom:575.992500px;}
.ybf{bottom:577.268100px;}
.y47{bottom:577.502400px;}
.y16a{bottom:577.628850px;}
.y261{bottom:578.160750px;}
.y1d3{bottom:580.415100px;}
.y90{bottom:580.616550px;}
.y21e{bottom:581.084550px;}
.y22d{bottom:584.015100px;}
.yf2{bottom:589.485450px;}
.y1d{bottom:589.606200px;}
.y19c{bottom:590.430450px;}
.y125{bottom:593.737350px;}
.ybe{bottom:597.068100px;}
.y8f{bottom:597.116550px;}
.y169{bottom:597.128850px;}
.y46{bottom:597.954300px;}
.y260{bottom:597.960600px;}
.y22c{bottom:602.015100px;}
.y124{bottom:608.137350px;}
.y19b{bottom:608.430450px;}
.y1c{bottom:608.858250px;}
.yf1{bottom:609.285450px;}
.y14c{bottom:613.537350px;}
.y8e{bottom:613.616550px;}
.y168{bottom:616.628850px;}
.y25f{bottom:617.760750px;}
.y45{bottom:618.406200px;}
.y1d2{bottom:620.015100px;}
.ybd{bottom:621.120150px;}
.y19a{bottom:626.430450px;}
.y123{bottom:627.937350px;}
.y1b{bottom:628.110150px;}
.y1ff{bottom:629.591400px;}
.y8d{bottom:630.116550px;}
.yf0{bottom:633.337350px;}
.ybc{bottom:635.520150px;}
.y167{bottom:636.128850px;}
.y1fe{bottom:637.691550px;}
.y1d1{bottom:638.015100px;}
.y44{bottom:638.858250px;}
.y21d{bottom:642.942750px;}
.y199{bottom:644.430450px;}
.y200{bottom:645.791400px;}
.y8c{bottom:646.616550px;}
.y1a{bottom:647.362200px;}
.yef{bottom:647.737350px;}
.y21c{bottom:651.042750px;}
.ybb{bottom:655.320150px;}
.y166{bottom:655.628850px;}
.y1d0{bottom:656.015100px;}
.y43{bottom:659.310150px;}
.y198{bottom:662.430450px;}
.y8b{bottom:663.116550px;}
.y19{bottom:666.614100px;}
.yee{bottom:667.537350px;}
.y122{bottom:671.789400px;}
.y1cf{bottom:674.015100px;}
.y165{bottom:675.128850px;}
.y25b{bottom:677.952450px;}
.yba{bottom:679.372050px;}
.y8a{bottom:679.616550px;}
.y42{bottom:679.762200px;}
.y197{bottom:680.430450px;}
.y18{bottom:685.866000px;}
.y121{bottom:686.189400px;}
.yed{bottom:691.589250px;}
.y1ce{bottom:692.015100px;}
.yb9{bottom:693.772050px;}
.y164{bottom:694.628850px;}
.y89{bottom:696.116550px;}
.y25a{bottom:697.752450px;}
.y196{bottom:698.430450px;}
.y1fd{bottom:699.390450px;}
.y41{bottom:700.214100px;}
.y17{bottom:705.118050px;}
.yec{bottom:705.989250px;}
.y1fc{bottom:707.490450px;}
.y1cd{bottom:710.015100px;}
.y88{bottom:712.616550px;}
.y21b{bottom:712.900800px;}
.yb8{bottom:713.572050px;}
.y195{bottom:716.430450px;}
.y259{bottom:717.552450px;}
.y40{bottom:720.666150px;}
.y21a{bottom:721.000800px;}
.y16{bottom:724.369950px;}
.yeb{bottom:725.789400px;}
.y1cc{bottom:728.015100px;}
.y87{bottom:729.116550px;}
.y120{bottom:730.041300px;}
.y194{bottom:734.430450px;}
.y258{bottom:737.352450px;}
.yb7{bottom:737.624100px;}
.y3f{bottom:741.118050px;}
.y15{bottom:743.622000px;}
.y11f{bottom:744.441300px;}
.y86{bottom:745.616550px;}
.y1cb{bottom:746.015100px;}
.yea{bottom:749.841300px;}
.yb6{bottom:752.024100px;}
.y2{bottom:754.869900px;}
.y4{bottom:755.061000px;}
.y193{bottom:760.934400px;}
.y3e{bottom:761.570100px;}
.y85{bottom:762.116550px;}
.y1fb{bottom:762.422400px;}
.y14{bottom:762.873900px;}
.y1ca{bottom:764.015100px;}
.ye9{bottom:764.241300px;}
.y254{bottom:766.563300px;}
.y219{bottom:767.644050px;}
.y163{bottom:775.237500px;}
.yb5{bottom:776.076000px;}
.y84{bottom:778.616550px;}
.y1c9{bottom:782.015100px;}
.y3d{bottom:782.022000px;}
.y13{bottom:782.125950px;}
.ye8{bottom:784.041300px;}
.y218{bottom:785.644050px;}
.y11e{bottom:788.293200px;}
.yb4{bottom:790.476000px;}
.y1fa{bottom:794.119050px;}
.y162{bottom:795.037500px;}
.y83{bottom:795.116550px;}
.y1c8{bottom:800.015100px;}
.y192{bottom:800.534400px;}
.y12{bottom:801.378000px;}
.y3c{bottom:802.474050px;}
.y11d{bottom:802.693200px;}
.y257{bottom:805.427700px;}
.ye7{bottom:808.093350px;}
.y82{bottom:811.616550px;}
.y1f9{bottom:812.119050px;}
.yb3{bottom:814.528050px;}
.y161{bottom:814.837500px;}
.y1c7{bottom:818.015100px;}
.y191{bottom:818.534400px;}
.y11{bottom:820.629900px;}
.ye6{bottom:822.493350px;}
.y3b{bottom:822.925950px;}
.y81{bottom:828.116550px;}
.yb2{bottom:828.928050px;}
.y160{bottom:834.637500px;}
.y256{bottom:835.531800px;}
.y1c6{bottom:836.015100px;}
.y190{bottom:836.534400px;}
.y10{bottom:839.881950px;}
.y111{bottom:842.293200px;}
.y3a{bottom:843.378000px;}
.y80{bottom:844.616550px;}
.ye5{bottom:846.545250px;}
.y1f8{bottom:848.119050px;}
.yb1{bottom:852.979950px;}
.y1c5{bottom:854.015100px;}
.y18f{bottom:854.534400px;}
.yf{bottom:859.133850px;}
.ye4{bottom:860.945250px;}
.y7f{bottom:861.116550px;}
.y39{bottom:863.829900px;}
.y255{bottom:865.635750px;}
.y1f7{bottom:866.119050px;}
.y110{bottom:866.345250px;}
.yb0{bottom:867.379950px;}
.y1c4{bottom:872.015100px;}
.y18e{bottom:872.534400px;}
.y15f{bottom:874.237500px;}
.ye3{bottom:880.745250px;}
.y1f6{bottom:884.119050px;}
.y38{bottom:884.281800px;}
.yaf{bottom:887.179950px;}
.y1c3{bottom:890.015100px;}
.y18d{bottom:890.534400px;}
.y15e{bottom:894.037500px;}
.y14b{bottom:900.545250px;}
.y7e{bottom:900.712950px;}
.y1f5{bottom:902.119050px;}
.yc{bottom:903.943050px;}
.y37{bottom:904.733850px;}
.ye2{bottom:904.797150px;}
.y1c2{bottom:908.015100px;}
.y18c{bottom:908.534400px;}
.yae{bottom:911.232000px;}
.y15d{bottom:913.837500px;}
.y7d{bottom:917.212950px;}
.ye1{bottom:919.197300px;}
.y1f4{bottom:920.119050px;}
.yb{bottom:921.943050px;}
.y14a{bottom:924.597150px;}
.yad{bottom:925.632000px;}
.y1c1{bottom:926.015100px;}
.y18b{bottom:926.534400px;}
.y15c{bottom:933.637500px;}
.y7c{bottom:933.712950px;}
.y1f3{bottom:938.119050px;}
.y10f{bottom:938.997300px;}
.ye0{bottom:943.249200px;}
.y1c0{bottom:944.015100px;}
.y18a{bottom:944.534400px;}
.ya{bottom:948.446850px;}
.yac{bottom:949.683900px;}
.y7b{bottom:950.212950px;}
.y1f2{bottom:956.119050px;}
.ydf{bottom:957.649200px;}
.y217{bottom:958.443900px;}
.y149{bottom:958.797150px;}
.y1bf{bottom:962.015100px;}
.y189{bottom:962.534400px;}
.y10e{bottom:963.049200px;}
.yab{bottom:964.083900px;}
.y9{bottom:966.446850px;}
.y7a{bottom:966.712950px;}
.y1f1{bottom:974.119050px;}
.yde{bottom:977.449200px;}
.y1be{bottom:980.015100px;}
.y188{bottom:980.534400px;}
.y148{bottom:982.849200px;}
.y79{bottom:983.212950px;}
.yaa{bottom:983.883900px;}
.ye{bottom:987.166650px;}
.y1f0{bottom:992.119050px;}
.y8{bottom:992.950800px;}
.y251{bottom:993.211050px;}
.y10d{bottom:997.249200px;}
.y1bd{bottom:998.015100px;}
.y187{bottom:998.534400px;}
.y78{bottom:999.712950px;}
.ydd{bottom:1001.501100px;}
.y15b{bottom:1007.437350px;}
.ya9{bottom:1007.935950px;}
.yd{bottom:1008.766800px;}
.y250{bottom:1009.411050px;}
.y1ef{bottom:1010.119050px;}
.y7{bottom:1010.950800px;}
.ydc{bottom:1015.901250px;}
.y1bc{bottom:1016.015100px;}
.y77{bottom:1016.212950px;}
.y186{bottom:1016.534400px;}
.y10c{bottom:1021.301100px;}
.ya8{bottom:1022.335950px;}
.y24f{bottom:1025.611050px;}
.y1ee{bottom:1028.119050px;}
.y76{bottom:1032.712950px;}
.y1bb{bottom:1034.015100px;}
.y185{bottom:1034.534400px;}
.ydb{bottom:1035.701100px;}
.y24e{bottom:1041.811050px;}
.y22b{bottom:1042.518900px;}
.y1ed{bottom:1046.119050px;}
.ya7{bottom:1046.387850px;}
.y75{bottom:1049.212950px;}
.y15a{bottom:1050.637500px;}
.y184{bottom:1052.534400px;}
.y10b{bottom:1055.501100px;}
.y24d{bottom:1058.011050px;}
.yda{bottom:1059.753150px;}
.y1ba{bottom:1060.518900px;}
.ya6{bottom:1060.787850px;}
.y1ec{bottom:1064.119050px;}
.y74{bottom:1065.712950px;}
.y183{bottom:1070.534400px;}
.yd9{bottom:1074.153150px;}
.y24c{bottom:1074.211050px;}
.y10a{bottom:1079.553150px;}
.y1eb{bottom:1082.119050px;}
.y73{bottom:1082.212950px;}
.y182{bottom:1088.534400px;}
.y24b{bottom:1090.411050px;}
.y159{bottom:1093.837500px;}
.yd8{bottom:1093.953150px;}
.y72{bottom:1098.712950px;}
.y1b9{bottom:1100.119050px;}
.y181{bottom:1106.534400px;}
.y24a{bottom:1106.611050px;}
.ya5{bottom:1109.035500px;}
.y147{bottom:1113.753150px;}
.y71{bottom:1115.212950px;}
.yd7{bottom:1118.005050px;}
.y1b8{bottom:1118.119050px;}
.y249{bottom:1122.811050px;}
.y180{bottom:1124.534400px;}
.y70{bottom:1131.712950px;}
.yd6{bottom:1132.405050px;}
.y1b7{bottom:1136.119050px;}
.y158{bottom:1137.037500px;}
.y146{bottom:1137.805050px;}
.y248{bottom:1139.011050px;}
.y6f{bottom:1148.212950px;}
.y17f{bottom:1151.038350px;}
.yd5{bottom:1152.205050px;}
.y1b6{bottom:1154.119050px;}
.y247{bottom:1155.211050px;}
.y6e{bottom:1164.712950px;}
.y6d{bottom:1181.212950px;}
.ya3{bottom:1201.511100px;}
.ya4{bottom:1203.022800px;}
.h16{height:34.945312px;}
.h20{height:34.992188px;}
.h18{height:35.156250px;}
.h22{height:35.179688px;}
.h7{height:39.312000px;}
.hb{height:39.313477px;}
.hc{height:39.366211px;}
.h6{height:39.474000px;}
.hd{height:39.550781px;}
.hf{height:39.577148px;}
.he{height:41.454000px;}
.h23{height:42.568359px;}
.h8{height:43.681641px;}
.h1c{height:43.740234px;}
.h9{height:43.945312px;}
.h1f{height:43.974609px;}
.h24{height:44.797354px;}
.h21{height:45.479957px;}
.h1e{height:45.480557px;}
.h15{height:46.825195px;}
.h1b{height:48.049805px;}
.h10{height:48.114258px;}
.h11{height:48.372070px;}
.h1d{height:51.082031px;}
.ha{height:52.417969px;}
.h2b{height:52.488281px;}
.h13{height:52.560000px;}
.h17{height:57.169922px;}
.h29{height:71.713477px;}
.h28{height:71.714077px;}
.h26{height:71.765611px;}
.h25{height:71.766211px;}
.h2a{height:85.148438px;}
.h1a{height:102.164062px;}
.h27{height:104.166211px;}
.h12{height:155.917969px;}
.h19{height:155.918569px;}
.h14{height:204.328125px;}
.h4{height:215.625000px;}
.h2{height:215.706075px;}
.h5{height:297.360000px;}
.h3{height:297.471722px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:43.643400px;}
.x9{left:68.031450px;}
.x1b{left:72.776850px;}
.x2a{left:74.031450px;}
.x3a{left:80.818500px;}
.x18{left:82.227600px;}
.x3c{left:85.689900px;}
.x3e{left:86.831400px;}
.x45{left:88.116150px;}
.x48{left:93.945150px;}
.x47{left:94.968300px;}
.x5{left:96.944850px;}
.x49{left:98.654250px;}
.x1f{left:101.553150px;}
.x2b{left:102.744600px;}
.xa{left:104.598450px;}
.x14{left:106.299150px;}
.x4{left:108.374100px;}
.x1a{left:110.551200px;}
.x2e{left:115.395150px;}
.x2d{left:127.559100px;}
.x1d{left:140.314950px;}
.x20{left:141.349950px;}
.x3{left:142.368300px;}
.x2f{left:145.753200px;}
.x21{left:153.391050px;}
.x4b{left:168.038400px;}
.x44{left:178.582650px;}
.x50{left:198.173850px;}
.x4a{left:201.950550px;}
.x1c{left:208.346400px;}
.x51{left:212.393850px;}
.x19{left:215.016000px;}
.x4f{left:218.645850px;}
.x52{left:226.428600px;}
.x40{left:256.507650px;}
.x17{left:280.629900px;}
.x46{left:299.518350px;}
.x3d{left:303.102450px;}
.x4c{left:315.243300px;}
.x30{left:330.650100px;}
.x32{left:332.898000px;}
.x34{left:335.524800px;}
.x41{left:338.333850px;}
.x27{left:352.470450px;}
.x43{left:356.685300px;}
.x4d{left:359.700600px;}
.x4e{left:369.487800px;}
.x33{left:400.891050px;}
.x35{left:403.517850px;}
.x3b{left:414.677400px;}
.x42{left:431.956950px;}
.x23{left:441.679500px;}
.x28{left:460.019400px;}
.x37{left:470.383650px;}
.x38{left:473.379750px;}
.x36{left:476.006550px;}
.x29{left:492.304500px;}
.x3f{left:509.854050px;}
.x8{left:511.976100px;}
.x26{left:520.058100px;}
.x25{left:527.314350px;}
.x24{left:535.041300px;}
.x22{left:539.031600px;}
.x39{left:542.346900px;}
.xf{left:581.778450px;}
.xb{left:596.738100px;}
.x12{left:599.176800px;}
.xe{left:605.154750px;}
.x6{left:611.421900px;}
.x10{left:612.957600px;}
.xc{left:617.239800px;}
.x31{left:631.809150px;}
.xd{left:634.041900px;}
.x11{left:652.837950px;}
.x13{left:656.048550px;}
.x2c{left:661.345650px;}
.x7{left:666.801750px;}
.x1{left:705.924150px;}
.x1e{left:772.793700px;}
.x16{left:776.033700px;}
.x15{left:855.139050px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:1.904000pt;}
.v2{vertical-align:5.374933pt;}
.v3{vertical-align:17.760000pt;}
.v4{vertical-align:28.800000pt;}
.v5{vertical-align:57.600000pt;}
.lsf{letter-spacing:-1.466667pt;}
.lse{letter-spacing:-1.173333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.001067pt;}
.ls6{letter-spacing:0.003200pt;}
.ls5{letter-spacing:7.680000pt;}
.ls1{letter-spacing:9.600000pt;}
.ls3{letter-spacing:11.733333pt;}
.ls9{letter-spacing:12.800000pt;}
.ls2{letter-spacing:17.409067pt;}
.ls8{letter-spacing:25.600000pt;}
.ls4{letter-spacing:32.000000pt;}
.lsa{letter-spacing:81.251733pt;}
.lsc{letter-spacing:81.459733pt;}
.lsd{letter-spacing:85.518933pt;}
.lsb{letter-spacing:734.318933pt;}
.ws0{word-spacing:-373.333333pt;}
.ws20{word-spacing:-87.792533pt;}
.wsc{word-spacing:-81.920000pt;}
.wsb{word-spacing:-67.200000pt;}
.ws6b{word-spacing:-64.426133pt;}
.ws21{word-spacing:-32.160000pt;}
.ws6{word-spacing:-22.944000pt;}
.wsfb{word-spacing:-17.792000pt;}
.ws77{word-spacing:-14.826667pt;}
.ws6d{word-spacing:-13.344000pt;}
.wsd{word-spacing:-12.906667pt;}
.ws79{word-spacing:-12.800000pt;}
.ws32{word-spacing:-12.789333pt;}
.ws2f{word-spacing:-12.730667pt;}
.ws64{word-spacing:-12.613333pt;}
.ws65{word-spacing:-12.378667pt;}
.ws37{word-spacing:-12.202667pt;}
.ws56{word-spacing:-12.085333pt;}
.ws5a{word-spacing:-12.026667pt;}
.ws3d{word-spacing:-11.968000pt;}
.ws78{word-spacing:-11.861333pt;}
.ws43{word-spacing:-11.674667pt;}
.ws15{word-spacing:-11.616000pt;}
.ws7{word-spacing:-11.520000pt;}
.ws5f{word-spacing:-11.498667pt;}
.ws40{word-spacing:-11.440000pt;}
.ws4a{word-spacing:-11.381333pt;}
.ws26{word-spacing:-11.264000pt;}
.ws44{word-spacing:-11.205333pt;}
.ws51{word-spacing:-11.146667pt;}
.ws33{word-spacing:-11.088000pt;}
.ws45{word-spacing:-11.029333pt;}
.ws2b{word-spacing:-10.970667pt;}
.ws13{word-spacing:-10.736000pt;}
.ws4f{word-spacing:-10.677333pt;}
.ws18{word-spacing:-10.442667pt;}
.ws62{word-spacing:-10.325333pt;}
.ws29{word-spacing:-10.266667pt;}
.ws61{word-spacing:-10.208000pt;}
.ws17{word-spacing:-10.090667pt;}
.ws2e{word-spacing:-10.032000pt;}
.wse{word-spacing:-9.914667pt;}
.ws1c{word-spacing:-9.856000pt;}
.ws52{word-spacing:-9.680000pt;}
.ws3f{word-spacing:-9.621333pt;}
.ws3a{word-spacing:-9.562667pt;}
.ws19{word-spacing:-9.269333pt;}
.ws38{word-spacing:-9.210667pt;}
.ws54{word-spacing:-9.093333pt;}
.ws66{word-spacing:-8.976000pt;}
.ws60{word-spacing:-8.624000pt;}
.ws10{word-spacing:-8.506667pt;}
.ws22{word-spacing:-8.389333pt;}
.wsf{word-spacing:-8.330667pt;}
.ws4e{word-spacing:-8.213333pt;}
.ws5b{word-spacing:-8.096000pt;}
.ws94{word-spacing:-8.053333pt;}
.ws3e{word-spacing:-8.037333pt;}
.ws5e{word-spacing:-7.978667pt;}
.ws30{word-spacing:-7.861333pt;}
.ws5c{word-spacing:-7.802667pt;}
.ws25{word-spacing:-7.568000pt;}
.wsf9{word-spacing:-7.488000pt;}
.ws2c{word-spacing:-7.392000pt;}
.ws36{word-spacing:-7.333333pt;}
.ws68{word-spacing:-7.157333pt;}
.ws24{word-spacing:-7.098667pt;}
.ws41{word-spacing:-7.040000pt;}
.ws31{word-spacing:-6.864000pt;}
.ws7a{word-spacing:-6.826667pt;}
.ws46{word-spacing:-6.805333pt;}
.ws63{word-spacing:-6.570667pt;}
.wsa3{word-spacing:-6.400000pt;}
.ws1b{word-spacing:-6.336000pt;}
.ws5d{word-spacing:-6.277333pt;}
.ws14{word-spacing:-6.218667pt;}
.ws48{word-spacing:-6.101333pt;}
.wsea{word-spacing:-6.080000pt;}
.ws4c{word-spacing:-5.925333pt;}
.ws82{word-spacing:-5.920000pt;}
.ws81{word-spacing:-5.866667pt;}
.ws23{word-spacing:-5.808000pt;}
.ws58{word-spacing:-5.690667pt;}
.ws4d{word-spacing:-5.573333pt;}
.ws55{word-spacing:-5.514667pt;}
.ws69{word-spacing:-5.280000pt;}
.ws11{word-spacing:-5.221333pt;}
.ws47{word-spacing:-5.045333pt;}
.wsb7{word-spacing:-4.853333pt;}
.ws27{word-spacing:-4.752000pt;}
.wsc5{word-spacing:-4.746667pt;}
.ws53{word-spacing:-4.693333pt;}
.ws3b{word-spacing:-4.634667pt;}
.ws67{word-spacing:-4.400000pt;}
.ws2d{word-spacing:-4.282667pt;}
.ws8c{word-spacing:-4.266667pt;}
.ws42{word-spacing:-4.224000pt;}
.ws89{word-spacing:-4.213333pt;}
.wsf6{word-spacing:-4.128000pt;}
.ws2a{word-spacing:-3.930667pt;}
.wsaf{word-spacing:-3.840000pt;}
.ws34{word-spacing:-3.754667pt;}
.wsf1{word-spacing:-3.733333pt;}
.wsfc{word-spacing:-3.520000pt;}
.ws16{word-spacing:-3.461333pt;}
.ws3c{word-spacing:-3.109333pt;}
.ws39{word-spacing:-3.050667pt;}
.wse9{word-spacing:-2.933333pt;}
.ws59{word-spacing:-2.522667pt;}
.ws50{word-spacing:-2.464000pt;}
.ws57{word-spacing:-2.405333pt;}
.ws28{word-spacing:-2.346667pt;}
.ws49{word-spacing:-2.170667pt;}
.ws1d{word-spacing:-2.112000pt;}
.ws2{word-spacing:-1.973333pt;}
.ws4b{word-spacing:-1.877333pt;}
.wsa6{word-spacing:-1.866667pt;}
.ws1a{word-spacing:-1.818667pt;}
.ws3{word-spacing:-1.776000pt;}
.wsb6{word-spacing:-1.600000pt;}
.ws1e{word-spacing:-1.584000pt;}
.ws12{word-spacing:-1.578667pt;}
.ws80{word-spacing:-1.440000pt;}
.wsb1{word-spacing:-1.386667pt;}
.ws70{word-spacing:-1.344000pt;}
.wsbd{word-spacing:-1.120000pt;}
.ws4{word-spacing:-0.864000pt;}
.wsdf{word-spacing:-0.853333pt;}
.ws35{word-spacing:-0.768000pt;}
.wsb3{word-spacing:-0.693333pt;}
.ws7e{word-spacing:-0.480000pt;}
.ws73{word-spacing:-0.432000pt;}
.wsed{word-spacing:-0.426667pt;}
.wsa7{word-spacing:-0.373333pt;}
.wsd0{word-spacing:-0.160000pt;}
.ws1{word-spacing:0.000000pt;}
.wsdb{word-spacing:0.053333pt;}
.ws7f{word-spacing:0.106667pt;}
.wsd2{word-spacing:0.426667pt;}
.wsa5{word-spacing:0.586667pt;}
.wsa2{word-spacing:0.693333pt;}
.wsdd{word-spacing:0.746667pt;}
.ws8b{word-spacing:0.800000pt;}
.wsf8{word-spacing:1.104000pt;}
.wse3{word-spacing:1.226667pt;}
.wsd9{word-spacing:1.760000pt;}
.wsa4{word-spacing:1.813333pt;}
.ws75{word-spacing:1.824000pt;}
.wsf0{word-spacing:2.026667pt;}
.wsb5{word-spacing:2.080000pt;}
.wse5{word-spacing:2.240000pt;}
.wsd1{word-spacing:2.453333pt;}
.ws87{word-spacing:2.720000pt;}
.ws86{word-spacing:2.773333pt;}
.ws99{word-spacing:2.986667pt;}
.wsa8{word-spacing:3.040000pt;}
.ws8d{word-spacing:3.200000pt;}
.wse8{word-spacing:3.360000pt;}
.wscb{word-spacing:3.466667pt;}
.ws97{word-spacing:3.893333pt;}
.ws8f{word-spacing:4.000000pt;}
.ws71{word-spacing:4.128000pt;}
.wse4{word-spacing:4.160000pt;}
.wsb2{word-spacing:4.320000pt;}
.wsb0{word-spacing:4.480000pt;}
.ws6e{word-spacing:4.656000pt;}
.ws88{word-spacing:4.693333pt;}
.ws93{word-spacing:4.800000pt;}
.ws9d{word-spacing:4.821333pt;}
.wsef{word-spacing:4.960000pt;}
.wsc9{word-spacing:5.066667pt;}
.wsbe{word-spacing:5.120000pt;}
.wsaa{word-spacing:5.173333pt;}
.ws7d{word-spacing:5.333333pt;}
.wsf5{word-spacing:5.904000pt;}
.ws9a{word-spacing:5.920000pt;}
.wsf4{word-spacing:5.952000pt;}
.ws9e{word-spacing:5.973333pt;}
.wsf3{word-spacing:6.048000pt;}
.wsde{word-spacing:6.080000pt;}
.wsc6{word-spacing:6.186667pt;}
.ws9c{word-spacing:6.453333pt;}
.wsdc{word-spacing:6.720000pt;}
.ws7c{word-spacing:6.773333pt;}
.ws98{word-spacing:6.826667pt;}
.ws76{word-spacing:6.912000pt;}
.wsac{word-spacing:7.040000pt;}
.wseb{word-spacing:7.093333pt;}
.wse7{word-spacing:7.200000pt;}
.wscf{word-spacing:7.520000pt;}
.ws6f{word-spacing:7.584000pt;}
.wsec{word-spacing:7.680000pt;}
.wsa9{word-spacing:7.733333pt;}
.wsb4{word-spacing:7.946667pt;}
.wsee{word-spacing:8.000000pt;}
.ws74{word-spacing:8.016000pt;}
.wse2{word-spacing:8.053333pt;}
.ws95{word-spacing:8.266667pt;}
.ws72{word-spacing:8.448000pt;}
.ws84{word-spacing:8.640000pt;}
.wsb8{word-spacing:8.693333pt;}
.wsbc{word-spacing:8.746667pt;}
.wsc4{word-spacing:9.066667pt;}
.ws96{word-spacing:9.280000pt;}
.wsa1{word-spacing:9.440000pt;}
.wsfa{word-spacing:9.552000pt;}
.wsf2{word-spacing:9.648000pt;}
.wsce{word-spacing:9.706667pt;}
.ws9b{word-spacing:10.560000pt;}
.wscd{word-spacing:10.613333pt;}
.ws8a{word-spacing:11.306667pt;}
.wsb9{word-spacing:11.573333pt;}
.ws83{word-spacing:11.680000pt;}
.ws8e{word-spacing:12.106667pt;}
.wsc7{word-spacing:13.493333pt;}
.wse1{word-spacing:13.600000pt;}
.wsf7{word-spacing:13.824000pt;}
.wsad{word-spacing:13.866667pt;}
.wse0{word-spacing:13.973333pt;}
.wsab{word-spacing:14.346667pt;}
.ws85{word-spacing:14.560000pt;}
.ws9f{word-spacing:14.848000pt;}
.wscc{word-spacing:16.160000pt;}
.wsda{word-spacing:16.533333pt;}
.wsba{word-spacing:16.746667pt;}
.ws90{word-spacing:17.333333pt;}
.wsa0{word-spacing:17.813333pt;}
.wsca{word-spacing:18.133333pt;}
.wsc8{word-spacing:18.186667pt;}
.ws8{word-spacing:18.288000pt;}
.wsbb{word-spacing:19.253333pt;}
.ws92{word-spacing:19.306667pt;}
.ws91{word-spacing:19.893333pt;}
.wse6{word-spacing:21.173333pt;}
.ws7b{word-spacing:22.773333pt;}
.wsae{word-spacing:25.813333pt;}
.ws9{word-spacing:36.975467pt;}
.wsa{word-spacing:37.007467pt;}
.ws6c{word-spacing:70.750933pt;}
.ws1f{word-spacing:72.015467pt;}
.wsc3{word-spacing:74.572800pt;}
.wsd6{word-spacing:89.687467pt;}
.ws5{word-spacing:90.567467pt;}
.ws6a{word-spacing:95.327467pt;}
.wsd5{word-spacing:95.435200pt;}
.wsd7{word-spacing:99.019733pt;}
.wsd3{word-spacing:130.619733pt;}
.wsbf{word-spacing:137.253867pt;}
.wsc2{word-spacing:142.504000pt;}
.wsc1{word-spacing:147.032533pt;}
.wsd4{word-spacing:152.613867pt;}
.wsd8{word-spacing:219.113067pt;}
.wsc0{word-spacing:536.054400pt;}
._f{margin-left:-1837.418667pt;}
._35{margin-left:-1672.616533pt;}
._2c{margin-left:-1530.045867pt;}
._2a{margin-left:-1527.828267pt;}
._3e{margin-left:-1510.117867pt;}
._33{margin-left:-1420.185067pt;}
._37{margin-left:-1366.612800pt;}
._24{margin-left:-1309.946667pt;}
._2e{margin-left:-1249.969600pt;}
._26{margin-left:-1198.331200pt;}
._7{margin-left:-1195.012267pt;}
._42{margin-left:-1178.568000pt;}
._2f{margin-left:-1168.314133pt;}
._16{margin-left:-1131.176000pt;}
._d{margin-left:-1100.880533pt;}
._31{margin-left:-1077.694400pt;}
._28{margin-left:-1061.616533pt;}
._11{margin-left:-1008.277867pt;}
._b{margin-left:-996.753600pt;}
._29{margin-left:-965.520000pt;}
._3a{margin-left:-953.111467pt;}
._1b{margin-left:-949.929600pt;}
._13{margin-left:-946.896000pt;}
._8{margin-left:-936.240000pt;}
._1d{margin-left:-914.928000pt;}
._9{margin-left:-887.306667pt;}
._14{margin-left:-845.472000pt;}
._34{margin-left:-833.264000pt;}
._22{margin-left:-824.229867pt;}
._10{margin-left:-821.568000pt;}
._20{margin-left:-813.600000pt;}
._17{margin-left:-797.520000pt;}
._41{margin-left:-792.085333pt;}
._3d{margin-left:-784.858667pt;}
._1f{margin-left:-780.720000pt;}
._12{margin-left:-765.504000pt;}
._3b{margin-left:-762.912000pt;}
._19{margin-left:-758.250667pt;}
._30{margin-left:-746.928000pt;}
._1a{margin-left:-745.280000pt;}
._c{margin-left:-722.736000pt;}
._15{margin-left:-708.384000pt;}
._21{margin-left:-698.880000pt;}
._1c{margin-left:-695.226667pt;}
._1e{margin-left:-689.264000pt;}
._32{margin-left:-681.964800pt;}
._3f{margin-left:-677.472000pt;}
._23{margin-left:-643.952000pt;}
._39{margin-left:-626.880000pt;}
._2b{margin-left:-618.864000pt;}
._6{margin-left:-616.224000pt;}
._3c{margin-left:-541.632000pt;}
._5{margin-left:-508.320000pt;}
._40{margin-left:-500.657600pt;}
._0{margin-left:-452.068800pt;}
._18{margin-left:-427.434667pt;}
._2d{margin-left:-392.112000pt;}
._e{margin-left:-354.768000pt;}
._27{margin-left:-345.820800pt;}
._38{margin-left:-336.144000pt;}
._36{margin-left:-325.440000pt;}
._25{margin-left:-234.720000pt;}
._48{margin-left:-11.721600pt;}
._4f{margin-left:-10.758933pt;}
._43{margin-left:-9.600000pt;}
._4a{margin-left:-7.932267pt;}
._a{margin-left:-6.216000pt;}
._44{margin-left:-5.280533pt;}
._3{margin-left:-3.571200pt;}
._2{margin-left:-1.973333pt;}
._4{margin-left:-0.927467pt;}
._49{width:0.902400pt;}
._1{width:1.952000pt;}
._4b{width:3.207467pt;}
._52{width:4.190400pt;}
._4e{width:5.081067pt;}
._4c{width:6.156800pt;}
._47{width:7.584000pt;}
._46{width:9.326400pt;}
._57{width:10.547200pt;}
._51{width:12.345067pt;}
._53{width:15.110400pt;}
._50{width:17.115733pt;}
._45{width:18.305067pt;}
._77{width:25.762667pt;}
._78{width:29.333867pt;}
._76{width:52.450667pt;}
._56{width:55.381333pt;}
._60{width:62.071467pt;}
._55{width:64.256000pt;}
._54{width:65.408000pt;}
._62{width:69.027733pt;}
._61{width:70.229333pt;}
._79{width:87.939733pt;}
._63{width:100.558400pt;}
._69{width:103.031467pt;}
._58{width:197.575467pt;}
._68{width:203.364800pt;}
._6e{width:204.713067pt;}
._4d{width:205.854400pt;}
._5b{width:218.528000pt;}
._6d{width:220.592533pt;}
._5a{width:223.057600pt;}
._67{width:228.585067pt;}
._5f{width:239.357333pt;}
._65{width:240.698667pt;}
._6f{width:246.219200pt;}
._64{width:250.468800pt;}
._75{width:252.473600pt;}
._6c{width:257.912533pt;}
._59{width:263.674667pt;}
._66{width:265.904000pt;}
._6b{width:326.162133pt;}
._6a{width:334.154667pt;}
._5c{width:345.323733pt;}
._72{width:373.752533pt;}
._70{width:375.816000pt;}
._5e{width:484.573867pt;}
._71{width:644.945067pt;}
._74{width:696.648000pt;}
._73{width:820.628800pt;}
._5d{width:984.064533pt;}
.fsc{font-size:31.093333pt;}
.fsa{font-size:42.666667pt;}
.fs4{font-size:48.000000pt;}
.fs5{font-size:53.333333pt;}
.fs7{font-size:58.666667pt;}
.fs6{font-size:64.000000pt;}
.fsd{font-size:112.000000pt;}
.fsb{font-size:128.000000pt;}
.fs8{font-size:160.000000pt;}
.fs9{font-size:256.000000pt;}
.fs2{font-size:266.666667pt;}
.fs0{font-size:266.766933pt;}
.fs3{font-size:373.333333pt;}
.fs1{font-size:373.473600pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:64.452667pt;}
.y3{bottom:64.850667pt;}
.y5{bottom:74.105733pt;}
.y6{bottom:74.581733pt;}
.y36{bottom:75.086133pt;}
.ya2{bottom:75.562133pt;}
.y61{bottom:112.721600pt;}
.y35{bottom:113.385733pt;}
.y5d{bottom:113.385867pt;}
.y216{bottom:113.386000pt;}
.y22a{bottom:113.386133pt;}
.y13d{bottom:114.550800pt;}
.y246{bottom:119.124533pt;}
.y6c{bottom:119.196533pt;}
.y17e{bottom:123.291067pt;}
.y1b5{bottom:126.185733pt;}
.y1ea{bottom:126.185867pt;}
.y60{bottom:127.121600pt;}
.y13c{bottom:127.350800pt;}
.y34{bottom:130.498667pt;}
.y157{bottom:131.130267pt;}
.y5c{bottom:131.565333pt;}
.y11c{bottom:132.150800pt;}
.y109{bottom:133.171333pt;}
.y245{bottom:133.524533pt;}
.y6b{bottom:135.196533pt;}
.y1b4{bottom:138.985733pt;}
.y17d{bottom:140.624400pt;}
.y5f{bottom:141.521600pt;}
.y156{bottom:143.930400pt;}
.y11b{bottom:144.950800pt;}
.y108{bottom:145.971333pt;}
.y33{bottom:147.611467pt;}
.y244{bottom:147.924533pt;}
.y13b{bottom:148.730267pt;}
.y5b{bottom:149.744933pt;}
.y215{bottom:150.719200pt;}
.y6a{bottom:151.196533pt;}
.y1b3{bottom:151.785733pt;}
.yd4{bottom:155.470533pt;}
.y5e{bottom:155.921600pt;}
.y229{bottom:156.112000pt;}
.y1e9{bottom:156.365333pt;}
.y13a{bottom:161.530400pt;}
.y243{bottom:162.324400pt;}
.y11a{bottom:162.550800pt;}
.y1b2{bottom:164.585733pt;}
.y32{bottom:164.724400pt;}
.y17c{bottom:165.516800pt;}
.y145{bottom:166.330267pt;}
.y214{bottom:166.719200pt;}
.y69{bottom:167.196533pt;}
.y107{bottom:167.350800pt;}
.y5a{bottom:167.924400pt;}
.yd3{bottom:168.270533pt;}
.y1e8{bottom:172.365333pt;}
.y242{bottom:176.724533pt;}
.y1b1{bottom:177.385733pt;}
.y139{bottom:179.130267pt;}
.y106{bottom:180.150800pt;}
.y31{bottom:181.837200pt;}
.y213{bottom:182.719200pt;}
.y17b{bottom:182.850133pt;}
.y155{bottom:182.909867pt;}
.y68{bottom:183.196533pt;}
.yd2{bottom:185.870533pt;}
.y59{bottom:186.103867pt;}
.ya1{bottom:186.228933pt;}
.y1e7{bottom:188.365333pt;}
.y241{bottom:191.124533pt;}
.y154{bottom:195.709867pt;}
.y144{bottom:196.730267pt;}
.y228{bottom:198.114000pt;}
.y212{bottom:198.719200pt;}
.y30{bottom:198.950133pt;}
.y67{bottom:199.196533pt;}
.y17a{bottom:200.183467pt;}
.y138{bottom:200.509867pt;}
.y105{bottom:201.530400pt;}
.y58{bottom:204.283467pt;}
.y1e6{bottom:204.365333pt;}
.ya0{bottom:204.408533pt;}
.y1b0{bottom:204.827067pt;}
.y240{bottom:205.524533pt;}
.yd1{bottom:207.250133pt;}
.y137{bottom:213.309867pt;}
.y104{bottom:214.330267pt;}
.y211{bottom:214.719200pt;}
.y66{bottom:215.196533pt;}
.y2f{bottom:216.062933pt;}
.y179{bottom:217.516800pt;}
.y143{bottom:218.109867pt;}
.y23f{bottom:219.924533pt;}
.yd0{bottom:220.050000pt;}
.y1e5{bottom:220.365333pt;}
.y1af{bottom:220.827067pt;}
.y57{bottom:222.462933pt;}
.y9f{bottom:222.588000pt;}
.y253{bottom:225.649733pt;}
.y210{bottom:230.719200pt;}
.y142{bottom:230.909867pt;}
.y65{bottom:231.196533pt;}
.y119{bottom:231.930400pt;}
.y2e{bottom:233.175733pt;}
.y23e{bottom:234.324400pt;}
.y136{bottom:234.689333pt;}
.y178{bottom:234.850133pt;}
.y103{bottom:235.709867pt;}
.y1e4{bottom:236.365333pt;}
.y1ae{bottom:236.827067pt;}
.ycf{bottom:237.650000pt;}
.y56{bottom:240.642533pt;}
.y9e{bottom:240.767600pt;}
.y252{bottom:241.649733pt;}
.y227{bottom:245.799200pt;}
.y20f{bottom:246.719200pt;}
.y135{bottom:247.489333pt;}
.y102{bottom:248.509867pt;}
.y23d{bottom:248.724533pt;}
.y2d{bottom:250.288667pt;}
.y177{bottom:252.183467pt;}
.y1e3{bottom:252.365333pt;}
.y1ad{bottom:252.827067pt;}
.y226{bottom:252.999200pt;}
.y118{bottom:253.309867pt;}
.y64{bottom:254.755600pt;}
.y55{bottom:258.822000pt;}
.y9d{bottom:258.947067pt;}
.yce{bottom:259.029600pt;}
.y20e{bottom:262.719200pt;}
.y134{bottom:265.089333pt;}
.y101{bottom:266.109867pt;}
.y2c{bottom:267.401467pt;}
.y1e2{bottom:268.365333pt;}
.y1ac{bottom:268.827067pt;}
.y176{bottom:269.516800pt;}
.y141{bottom:269.889467pt;}
.y63{bottom:270.755600pt;}
.y269{bottom:271.760000pt;}
.ycd{bottom:271.829600pt;}
.y54{bottom:277.001600pt;}
.y9c{bottom:277.126533pt;}
.y20d{bottom:278.719200pt;}
.y23c{bottom:279.124533pt;}
.y140{bottom:282.689333pt;}
.y117{bottom:283.709867pt;}
.y1e1{bottom:284.365333pt;}
.y2b{bottom:284.514400pt;}
.y1ab{bottom:284.827067pt;}
.y133{bottom:286.468933pt;}
.y175{bottom:286.850133pt;}
.y100{bottom:287.489333pt;}
.y268{bottom:289.360000pt;}
.ycc{bottom:289.429600pt;}
.y62{bottom:294.314667pt;}
.y20c{bottom:294.719200pt;}
.y23b{bottom:295.124533pt;}
.y53{bottom:295.181067pt;}
.y9b{bottom:295.306133pt;}
.y132{bottom:299.268933pt;}
.yff{bottom:300.289333pt;}
.y1e0{bottom:300.365333pt;}
.y1aa{bottom:300.827067pt;}
.y2a{bottom:301.627200pt;}
.y116{bottom:305.089333pt;}
.y267{bottom:306.960000pt;}
.y225{bottom:307.884267pt;}
.ycb{bottom:310.809067pt;}
.y23a{bottom:311.124533pt;}
.y52{bottom:313.360533pt;}
.y9a{bottom:313.485600pt;}
.y174{bottom:314.751333pt;}
.y1df{bottom:316.365333pt;}
.y1a9{bottom:316.827067pt;}
.y153{bottom:316.868933pt;}
.yfe{bottom:317.889467pt;}
.y29{bottom:318.740133pt;}
.y131{bottom:320.648400pt;}
.y13f{bottom:321.668933pt;}
.yca{bottom:323.609067pt;}
.y266{bottom:324.560000pt;}
.y20b{bottom:326.719200pt;}
.y239{bottom:327.124533pt;}
.y51{bottom:331.540133pt;}
.y99{bottom:331.665200pt;}
.y173{bottom:332.084667pt;}
.y1de{bottom:332.365333pt;}
.y1a8{bottom:332.827067pt;}
.y130{bottom:333.448400pt;}
.y13e{bottom:334.468933pt;}
.y115{bottom:335.489333pt;}
.y28{bottom:335.852933pt;}
.y152{bottom:338.248400pt;}
.yfd{bottom:339.268933pt;}
.y265{bottom:342.160000pt;}
.y20a{bottom:342.719200pt;}
.y238{bottom:343.124533pt;}
.yc9{bottom:344.988667pt;}
.y1dd{bottom:348.365333pt;}
.y1a7{bottom:348.827067pt;}
.y50{bottom:349.719600pt;}
.y98{bottom:349.844667pt;}
.y12f{bottom:351.048400pt;}
.yfc{bottom:352.068933pt;}
.y27{bottom:352.965867pt;}
.y114{bottom:356.868933pt;}
.y172{bottom:356.977067pt;}
.yc8{bottom:357.788667pt;}
.y237{bottom:359.124533pt;}
.y1dc{bottom:364.365467pt;}
.y224{bottom:364.504267pt;}
.y1a6{bottom:364.827067pt;}
.y4f{bottom:367.899200pt;}
.y97{bottom:368.024267pt;}
.y151{bottom:368.648400pt;}
.y113{bottom:369.668933pt;}
.y26{bottom:370.078667pt;}
.y12e{bottom:372.428000pt;}
.yfb{bottom:373.448400pt;}
.y208{bottom:373.506133pt;}
.y171{bottom:374.310400pt;}
.y236{bottom:375.124533pt;}
.yc7{bottom:375.388667pt;}
.y222{bottom:378.904267pt;}
.y1db{bottom:380.365467pt;}
.y207{bottom:380.706133pt;}
.y1a5{bottom:380.827067pt;}
.y25e{bottom:384.040267pt;}
.y12d{bottom:385.228000pt;}
.y4e{bottom:386.078667pt;}
.y96{bottom:386.203733pt;}
.yfa{bottom:386.248400pt;}
.y25{bottom:387.191467pt;}
.y209{bottom:387.906133pt;}
.y150{bottom:390.028000pt;}
.y112{bottom:391.048400pt;}
.y235{bottom:391.124533pt;}
.y170{bottom:391.643733pt;}
.y223{bottom:393.304267pt;}
.y1da{bottom:396.365467pt;}
.yc6{bottom:396.768133pt;}
.y1a4{bottom:396.827067pt;}
.y25d{bottom:401.640267pt;}
.y12c{bottom:402.828000pt;}
.yf9{bottom:403.848400pt;}
.y4d{bottom:404.258267pt;}
.y24{bottom:404.304400pt;}
.y95{bottom:404.383333pt;}
.y234{bottom:407.124533pt;}
.y16f{bottom:408.977067pt;}
.yc5{bottom:409.568133pt;}
.y1d9{bottom:412.365467pt;}
.y1a3{bottom:412.827067pt;}
.y25c{bottom:419.240267pt;}
.y14f{bottom:420.428000pt;}
.y23{bottom:421.417333pt;}
.y4c{bottom:422.437733pt;}
.y94{bottom:422.562800pt;}
.y233{bottom:423.124533pt;}
.y12b{bottom:424.207467pt;}
.yf8{bottom:425.228000pt;}
.y16e{bottom:426.310400pt;}
.yc4{bottom:427.168267pt;}
.y1d8{bottom:428.365467pt;}
.y1a2{bottom:428.827067pt;}
.y205{bottom:435.549733pt;}
.y12a{bottom:437.007467pt;}
.yf7{bottom:438.028000pt;}
.y22{bottom:438.530133pt;}
.y232{bottom:439.124533pt;}
.y4b{bottom:440.617333pt;}
.y93{bottom:440.742400pt;}
.y14e{bottom:441.807467pt;}
.y204{bottom:442.749733pt;}
.y16d{bottom:443.643733pt;}
.y1d7{bottom:444.365467pt;}
.y1a1{bottom:444.827067pt;}
.y221{bottom:447.134533pt;}
.yc3{bottom:448.547733pt;}
.y206{bottom:449.949733pt;}
.y220{bottom:454.334533pt;}
.y129{bottom:454.607467pt;}
.y231{bottom:455.124533pt;}
.y21{bottom:455.642933pt;}
.y4a{bottom:458.796800pt;}
.y92{bottom:458.921867pt;}
.yf6{bottom:459.407467pt;}
.y1d6{bottom:460.365467pt;}
.y1a0{bottom:460.827067pt;}
.y264{bottom:461.120667pt;}
.yc2{bottom:461.347733pt;}
.y230{bottom:471.124533pt;}
.y16c{bottom:471.222267pt;}
.yf5{bottom:472.207467pt;}
.y20{bottom:472.755867pt;}
.y128{bottom:475.987067pt;}
.y1d5{bottom:476.365467pt;}
.y19f{bottom:476.827067pt;}
.y49{bottom:476.976400pt;}
.y91{bottom:477.101333pt;}
.y263{bottom:478.720667pt;}
.yc1{bottom:478.947733pt;}
.y22f{bottom:487.124533pt;}
.y16b{bottom:488.555600pt;}
.y127{bottom:488.787067pt;}
.yf4{bottom:489.807467pt;}
.y1f{bottom:489.868800pt;}
.y1d4{bottom:492.365467pt;}
.y19e{bottom:492.827067pt;}
.y14d{bottom:493.587067pt;}
.y48{bottom:495.155867pt;}
.y262{bottom:496.320533pt;}
.y202{bottom:497.593333pt;}
.yc0{bottom:500.327333pt;}
.y22e{bottom:503.124533pt;}
.y201{bottom:504.793333pt;}
.y126{bottom:506.387067pt;}
.y1e{bottom:506.981600pt;}
.y19d{bottom:508.827067pt;}
.y21f{bottom:509.319600pt;}
.yf3{bottom:511.187067pt;}
.y203{bottom:511.993333pt;}
.ybf{bottom:513.127200pt;}
.y47{bottom:513.335467pt;}
.y16a{bottom:513.447867pt;}
.y261{bottom:513.920667pt;}
.y1d3{bottom:515.924533pt;}
.y90{bottom:516.103600pt;}
.y21e{bottom:516.519600pt;}
.y22d{bottom:519.124533pt;}
.yf2{bottom:523.987067pt;}
.y1d{bottom:524.094400pt;}
.y19c{bottom:524.827067pt;}
.y125{bottom:527.766533pt;}
.ybe{bottom:530.727200pt;}
.y8f{bottom:530.770267pt;}
.y169{bottom:530.781200pt;}
.y46{bottom:531.514933pt;}
.y260{bottom:531.520533pt;}
.y22c{bottom:535.124533pt;}
.y124{bottom:540.566533pt;}
.y19b{bottom:540.827067pt;}
.y1c{bottom:541.207333pt;}
.yf1{bottom:541.587067pt;}
.y14c{bottom:545.366533pt;}
.y8e{bottom:545.436933pt;}
.y168{bottom:548.114533pt;}
.y25f{bottom:549.120667pt;}
.y45{bottom:549.694400pt;}
.y1d2{bottom:551.124533pt;}
.ybd{bottom:552.106800pt;}
.y19a{bottom:556.827067pt;}
.y123{bottom:558.166533pt;}
.y1b{bottom:558.320133pt;}
.y1ff{bottom:559.636800pt;}
.y8d{bottom:560.103600pt;}
.yf0{bottom:562.966533pt;}
.ybc{bottom:564.906800pt;}
.y167{bottom:565.447867pt;}
.y1fe{bottom:566.836933pt;}
.y1d1{bottom:567.124533pt;}
.y44{bottom:567.874000pt;}
.y21d{bottom:571.504667pt;}
.y199{bottom:572.827067pt;}
.y200{bottom:574.036800pt;}
.y8c{bottom:574.770267pt;}
.y1a{bottom:575.433067pt;}
.yef{bottom:575.766533pt;}
.y21c{bottom:578.704667pt;}
.ybb{bottom:582.506800pt;}
.y166{bottom:582.781200pt;}
.y1d0{bottom:583.124533pt;}
.y43{bottom:586.053467pt;}
.y198{bottom:588.827067pt;}
.y8b{bottom:589.436933pt;}
.y19{bottom:592.545867pt;}
.yee{bottom:593.366533pt;}
.y122{bottom:597.146133pt;}
.y1cf{bottom:599.124533pt;}
.y165{bottom:600.114533pt;}
.y25b{bottom:602.624400pt;}
.yba{bottom:603.886267pt;}
.y8a{bottom:604.103600pt;}
.y42{bottom:604.233067pt;}
.y197{bottom:604.827067pt;}
.y18{bottom:609.658667pt;}
.y121{bottom:609.946133pt;}
.yed{bottom:614.746000pt;}
.y1ce{bottom:615.124533pt;}
.yb9{bottom:616.686267pt;}
.y164{bottom:617.447867pt;}
.y89{bottom:618.770267pt;}
.y25a{bottom:620.224400pt;}
.y196{bottom:620.827067pt;}
.y1fd{bottom:621.680400pt;}
.y41{bottom:622.412533pt;}
.y17{bottom:626.771600pt;}
.yec{bottom:627.546000pt;}
.y1fc{bottom:628.880400pt;}
.y1cd{bottom:631.124533pt;}
.y88{bottom:633.436933pt;}
.y21b{bottom:633.689600pt;}
.yb8{bottom:634.286267pt;}
.y195{bottom:636.827067pt;}
.y259{bottom:637.824400pt;}
.y40{bottom:640.592133pt;}
.y21a{bottom:640.889600pt;}
.y16{bottom:643.884400pt;}
.yeb{bottom:645.146133pt;}
.y1cc{bottom:647.124533pt;}
.y87{bottom:648.103600pt;}
.y120{bottom:648.925600pt;}
.y194{bottom:652.827067pt;}
.y258{bottom:655.424400pt;}
.yb7{bottom:655.665867pt;}
.y3f{bottom:658.771600pt;}
.y15{bottom:660.997333pt;}
.y11f{bottom:661.725600pt;}
.y86{bottom:662.770267pt;}
.y1cb{bottom:663.124533pt;}
.yea{bottom:666.525600pt;}
.yb6{bottom:668.465867pt;}
.y2{bottom:670.995467pt;}
.y4{bottom:671.165333pt;}
.y193{bottom:676.386133pt;}
.y3e{bottom:676.951200pt;}
.y85{bottom:677.436933pt;}
.y1fb{bottom:677.708800pt;}
.y14{bottom:678.110133pt;}
.y1ca{bottom:679.124533pt;}
.ye9{bottom:679.325600pt;}
.y254{bottom:681.389600pt;}
.y219{bottom:682.350267pt;}
.y163{bottom:689.100000pt;}
.yb5{bottom:689.845333pt;}
.y84{bottom:692.103600pt;}
.y1c9{bottom:695.124533pt;}
.y3d{bottom:695.130667pt;}
.y13{bottom:695.223067pt;}
.ye8{bottom:696.925600pt;}
.y218{bottom:698.350267pt;}
.y11e{bottom:700.705067pt;}
.yb4{bottom:702.645333pt;}
.y1fa{bottom:705.883600pt;}
.y162{bottom:706.700000pt;}
.y83{bottom:706.770267pt;}
.y1c8{bottom:711.124533pt;}
.y192{bottom:711.586133pt;}
.y12{bottom:712.336000pt;}
.y3c{bottom:713.310267pt;}
.y11d{bottom:713.505067pt;}
.y257{bottom:715.935733pt;}
.ye7{bottom:718.305200pt;}
.y82{bottom:721.436933pt;}
.y1f9{bottom:721.883600pt;}
.yb3{bottom:724.024933pt;}
.y161{bottom:724.300000pt;}
.y1c7{bottom:727.124533pt;}
.y191{bottom:727.586133pt;}
.y11{bottom:729.448800pt;}
.ye6{bottom:731.105200pt;}
.y3b{bottom:731.489733pt;}
.y81{bottom:736.103600pt;}
.yb2{bottom:736.824933pt;}
.y160{bottom:741.900000pt;}
.y256{bottom:742.694933pt;}
.y1c6{bottom:743.124533pt;}
.y190{bottom:743.586133pt;}
.y10{bottom:746.561733pt;}
.y111{bottom:748.705067pt;}
.y3a{bottom:749.669333pt;}
.y80{bottom:750.770267pt;}
.ye5{bottom:752.484667pt;}
.y1f8{bottom:753.883600pt;}
.yb1{bottom:758.204400pt;}
.y1c5{bottom:759.124533pt;}
.y18f{bottom:759.586133pt;}
.yf{bottom:763.674533pt;}
.ye4{bottom:765.284667pt;}
.y7f{bottom:765.436933pt;}
.y39{bottom:767.848800pt;}
.y255{bottom:769.454000pt;}
.y1f7{bottom:769.883600pt;}
.y110{bottom:770.084667pt;}
.yb0{bottom:771.004400pt;}
.y1c4{bottom:775.124533pt;}
.y18e{bottom:775.586133pt;}
.y15f{bottom:777.100000pt;}
.ye3{bottom:782.884667pt;}
.y1f6{bottom:785.883600pt;}
.y38{bottom:786.028267pt;}
.yaf{bottom:788.604400pt;}
.y1c3{bottom:791.124533pt;}
.y18d{bottom:791.586133pt;}
.y15e{bottom:794.700000pt;}
.y14b{bottom:800.484667pt;}
.y7e{bottom:800.633733pt;}
.y1f5{bottom:801.883600pt;}
.yc{bottom:803.504933pt;}
.y37{bottom:804.207867pt;}
.ye2{bottom:804.264133pt;}
.y1c2{bottom:807.124533pt;}
.y18c{bottom:807.586133pt;}
.yae{bottom:809.984000pt;}
.y15d{bottom:812.300000pt;}
.y7d{bottom:815.300400pt;}
.ye1{bottom:817.064267pt;}
.y1f4{bottom:817.883600pt;}
.yb{bottom:819.504933pt;}
.y14a{bottom:821.864133pt;}
.yad{bottom:822.784000pt;}
.y1c1{bottom:823.124533pt;}
.y18b{bottom:823.586133pt;}
.y15c{bottom:829.900000pt;}
.y7c{bottom:829.967067pt;}
.y1f3{bottom:833.883600pt;}
.y10f{bottom:834.664267pt;}
.ye0{bottom:838.443733pt;}
.y1c0{bottom:839.124533pt;}
.y18a{bottom:839.586133pt;}
.ya{bottom:843.063867pt;}
.yac{bottom:844.163467pt;}
.y7b{bottom:844.633733pt;}
.y1f2{bottom:849.883600pt;}
.ydf{bottom:851.243733pt;}
.y217{bottom:851.950133pt;}
.y149{bottom:852.264133pt;}
.y1bf{bottom:855.124533pt;}
.y189{bottom:855.586133pt;}
.y10e{bottom:856.043733pt;}
.yab{bottom:856.963467pt;}
.y9{bottom:859.063867pt;}
.y7a{bottom:859.300400pt;}
.y1f1{bottom:865.883600pt;}
.yde{bottom:868.843733pt;}
.y1be{bottom:871.124533pt;}
.y188{bottom:871.586133pt;}
.y148{bottom:873.643733pt;}
.y79{bottom:873.967067pt;}
.yaa{bottom:874.563467pt;}
.ye{bottom:877.481467pt;}
.y1f0{bottom:881.883600pt;}
.y8{bottom:882.622933pt;}
.y251{bottom:882.854267pt;}
.y10d{bottom:886.443733pt;}
.y1bd{bottom:887.124533pt;}
.y187{bottom:887.586133pt;}
.y78{bottom:888.633733pt;}
.ydd{bottom:890.223200pt;}
.y15b{bottom:895.499867pt;}
.ya9{bottom:895.943067pt;}
.yd{bottom:896.681600pt;}
.y250{bottom:897.254267pt;}
.y1ef{bottom:897.883600pt;}
.y7{bottom:898.622933pt;}
.ydc{bottom:903.023333pt;}
.y1bc{bottom:903.124533pt;}
.y77{bottom:903.300400pt;}
.y186{bottom:903.586133pt;}
.y10c{bottom:907.823200pt;}
.ya8{bottom:908.743067pt;}
.y24f{bottom:911.654267pt;}
.y1ee{bottom:913.883600pt;}
.y76{bottom:917.967067pt;}
.y1bb{bottom:919.124533pt;}
.y185{bottom:919.586133pt;}
.ydb{bottom:920.623200pt;}
.y24e{bottom:926.054267pt;}
.y22b{bottom:926.683467pt;}
.y1ed{bottom:929.883600pt;}
.ya7{bottom:930.122533pt;}
.y75{bottom:932.633733pt;}
.y15a{bottom:933.900000pt;}
.y184{bottom:935.586133pt;}
.y10b{bottom:938.223200pt;}
.y24d{bottom:940.454267pt;}
.yda{bottom:942.002800pt;}
.y1ba{bottom:942.683467pt;}
.ya6{bottom:942.922533pt;}
.y1ec{bottom:945.883600pt;}
.y74{bottom:947.300400pt;}
.y183{bottom:951.586133pt;}
.yd9{bottom:954.802800pt;}
.y24c{bottom:954.854267pt;}
.y10a{bottom:959.602800pt;}
.y1eb{bottom:961.883600pt;}
.y73{bottom:961.967067pt;}
.y182{bottom:967.586133pt;}
.y24b{bottom:969.254267pt;}
.y159{bottom:972.300000pt;}
.yd8{bottom:972.402800pt;}
.y72{bottom:976.633733pt;}
.y1b9{bottom:977.883600pt;}
.y181{bottom:983.586133pt;}
.y24a{bottom:983.654267pt;}
.ya5{bottom:985.809333pt;}
.y147{bottom:990.002800pt;}
.y71{bottom:991.300400pt;}
.yd7{bottom:993.782267pt;}
.y1b8{bottom:993.883600pt;}
.y249{bottom:998.054267pt;}
.y180{bottom:999.586133pt;}
.y70{bottom:1005.967067pt;}
.yd6{bottom:1006.582267pt;}
.y1b7{bottom:1009.883600pt;}
.y158{bottom:1010.700000pt;}
.y146{bottom:1011.382267pt;}
.y248{bottom:1012.454267pt;}
.y6f{bottom:1020.633733pt;}
.y17f{bottom:1023.145200pt;}
.yd5{bottom:1024.182267pt;}
.y1b6{bottom:1025.883600pt;}
.y247{bottom:1026.854267pt;}
.y6e{bottom:1035.300400pt;}
.y6d{bottom:1049.967067pt;}
.ya3{bottom:1068.009867pt;}
.ya4{bottom:1069.353600pt;}
.h16{height:31.062500pt;}
.h20{height:31.104167pt;}
.h18{height:31.250000pt;}
.h22{height:31.270833pt;}
.h7{height:34.944000pt;}
.hb{height:34.945312pt;}
.hc{height:34.992188pt;}
.h6{height:35.088000pt;}
.hd{height:35.156250pt;}
.hf{height:35.179688pt;}
.he{height:36.848000pt;}
.h23{height:37.838542pt;}
.h8{height:38.828125pt;}
.h1c{height:38.880208pt;}
.h9{height:39.062500pt;}
.h1f{height:39.088542pt;}
.h24{height:39.819870pt;}
.h21{height:40.426628pt;}
.h1e{height:40.427161pt;}
.h15{height:41.622396pt;}
.h1b{height:42.710938pt;}
.h10{height:42.768229pt;}
.h11{height:42.997396pt;}
.h1d{height:45.406250pt;}
.ha{height:46.593750pt;}
.h2b{height:46.656250pt;}
.h13{height:46.720000pt;}
.h17{height:50.817708pt;}
.h29{height:63.745313pt;}
.h28{height:63.745846pt;}
.h26{height:63.791654pt;}
.h25{height:63.792187pt;}
.h2a{height:75.687500pt;}
.h1a{height:90.812500pt;}
.h27{height:92.592188pt;}
.h12{height:138.593750pt;}
.h19{height:138.594283pt;}
.h14{height:181.625000pt;}
.h4{height:191.666667pt;}
.h2{height:191.738733pt;}
.h5{height:264.320000pt;}
.h3{height:264.419309pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:38.794133pt;}
.x9{left:60.472400pt;}
.x1b{left:64.690533pt;}
.x2a{left:65.805733pt;}
.x3a{left:71.838667pt;}
.x18{left:73.091200pt;}
.x3c{left:76.168800pt;}
.x3e{left:77.183467pt;}
.x45{left:78.325467pt;}
.x48{left:83.506800pt;}
.x47{left:84.416267pt;}
.x5{left:86.173200pt;}
.x49{left:87.692667pt;}
.x1f{left:90.269467pt;}
.x2b{left:91.328533pt;}
.xa{left:92.976400pt;}
.x14{left:94.488133pt;}
.x4{left:96.332533pt;}
.x1a{left:98.267733pt;}
.x2e{left:102.573467pt;}
.x2d{left:113.385867pt;}
.x1d{left:124.724400pt;}
.x20{left:125.644400pt;}
.x3{left:126.549600pt;}
.x2f{left:129.558400pt;}
.x21{left:136.347600pt;}
.x4b{left:149.367467pt;}
.x44{left:158.740133pt;}
.x50{left:176.154533pt;}
.x4a{left:179.511600pt;}
.x1c{left:185.196800pt;}
.x51{left:188.794533pt;}
.x19{left:191.125333pt;}
.x4f{left:194.351867pt;}
.x52{left:201.269867pt;}
.x40{left:228.006800pt;}
.x17{left:249.448800pt;}
.x46{left:266.238533pt;}
.x3d{left:269.424400pt;}
.x4c{left:280.216267pt;}
.x30{left:293.911200pt;}
.x32{left:295.909333pt;}
.x34{left:298.244267pt;}
.x41{left:300.741200pt;}
.x27{left:313.307067pt;}
.x43{left:317.053600pt;}
.x4d{left:319.733867pt;}
.x4e{left:328.433600pt;}
.x33{left:356.347600pt;}
.x35{left:358.682533pt;}
.x3b{left:368.602133pt;}
.x42{left:383.961733pt;}
.x23{left:392.604000pt;}
.x28{left:408.906133pt;}
.x37{left:418.118800pt;}
.x38{left:420.782000pt;}
.x36{left:423.116933pt;}
.x29{left:437.604000pt;}
.x3f{left:453.203600pt;}
.x8{left:455.089867pt;}
.x26{left:462.273867pt;}
.x25{left:468.723867pt;}
.x24{left:475.592267pt;}
.x22{left:479.139200pt;}
.x39{left:482.086133pt;}
.xf{left:517.136400pt;}
.xb{left:530.433867pt;}
.x12{left:532.601600pt;}
.xe{left:537.915333pt;}
.x6{left:543.486133pt;}
.x10{left:544.851200pt;}
.xc{left:548.657600pt;}
.x31{left:561.608133pt;}
.xd{left:563.592800pt;}
.x11{left:580.300400pt;}
.x13{left:583.154267pt;}
.x2c{left:587.862800pt;}
.x7{left:592.712667pt;}
.x1{left:627.488133pt;}
.x1e{left:686.927733pt;}
.x16{left:689.807733pt;}
.x15{left:760.123600pt;}
}




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