
    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_194c973f431094439b28a783.woff2')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_1fd06232b6a7001eae120f58.woff2')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_b179b7aa0b479addee7f49b7.woff2')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_7410a52e60dd17cf40f6f012.woff2')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_b31c026632be1a3feee6aae6.woff2')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_5ac11bf8793ed37b38a835a6.woff2')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_30f858dcd0a818bfa5dcbd7f.woff2')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_841851258cbdaa9721a050ce.woff2')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_6fe592a14c347b5bb962c94a.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_7410a52e60dd17cf40f6f012.woff2')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_28652054cd6d416cca8f2bc9.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.096680;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_7410a52e60dd17cf40f6f012.woff2')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_bb2bd02a8ac56c824ad86b30.woff2')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_3e233818cb8bc59dba89d435.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.084473;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_75b43bcd1b4e9312dfa58f12.woff2')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_43f318f7a0d5705ac88e2082.woff2')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_40e6824b05f342578f996256.woff2')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_ad2be5299b29274ed51b212d.woff2')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_7410a52e60dd17cf40f6f012.woff2')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_dcf63ee2a09e3cc57fbe0307.woff2')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_f6d1f245247aa88ebf1ff42d.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.084473;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_75b43bcd1b4e9312dfa58f12.woff2')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_43f318f7a0d5705ac88e2082.woff2')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_40e6824b05f342578f996256.woff2')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_ad2be5299b29274ed51b212d.woff2')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_75b43bcd1b4e9312dfa58f12.woff2')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_43f318f7a0d5705ac88e2082.woff2')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_40e6824b05f342578f996256.woff2')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_ad2be5299b29274ed51b212d.woff2')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_5a3f2b46c96683cef852e54a.woff2')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_61f6ec2c6f4f51bec28cfea1.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:1.084473;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_75b43bcd1b4e9312dfa58f12.woff2')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_7410a52e60dd17cf40f6f012.woff2')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_43f318f7a0d5705ac88e2082.woff2')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_40e6824b05f342578f996256.woff2')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_ad2be5299b29274ed51b212d.woff2')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_5a3f2b46c96683cef852e54a.woff2')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_61f6ec2c6f4f51bec28cfea1.woff2')format("woff");}.ff26{font-family:ff26;line-height:1.084473;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_75b43bcd1b4e9312dfa58f12.woff2')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_7410a52e60dd17cf40f6f012.woff2')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_43f318f7a0d5705ac88e2082.woff2')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_40e6824b05f342578f996256.woff2')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_ad2be5299b29274ed51b212d.woff2')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_7a73bf4f6274395f9434d347.woff2')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;}
.lsd{letter-spacing:-1.650000px;}
.lsc{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;}
.lsb{letter-spacing:118.198800px;}
.lsa{letter-spacing:728.552400px;}
.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;}
.ws81{word-spacing:-72.479400px;}
.ws21{word-spacing:-36.180000px;}
.wsa0{word-spacing:-31.680000px;}
.ws6{word-spacing:-25.812000px;}
.ws10c{word-spacing:-20.016000px;}
.wsa1{word-spacing:-16.680000px;}
.wsa2{word-spacing:-15.012000px;}
.wsd{word-spacing:-14.520000px;}
.ws8b{word-spacing:-14.454000px;}
.wsaa{word-spacing:-14.400000px;}
.ws32{word-spacing:-14.388000px;}
.ws2f{word-spacing:-14.322000px;}
.ws64{word-spacing:-14.190000px;}
.ws65{word-spacing:-13.926000px;}
.ws9c{word-spacing:-13.860000px;}
.ws86{word-spacing:-13.794000px;}
.ws37{word-spacing:-13.728000px;}
.ws7f{word-spacing:-13.662000px;}
.ws56{word-spacing:-13.596000px;}
.ws5a{word-spacing:-13.530000px;}
.ws3d{word-spacing:-13.464000px;}
.ws92{word-spacing:-13.332000px;}
.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;}
.ws76{word-spacing:-12.276000px;}
.ws13{word-spacing:-12.078000px;}
.ws4f{word-spacing:-12.012000px;}
.ws9e{word-spacing:-11.946000px;}
.ws9b{word-spacing:-11.880000px;}
.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;}
.ws99{word-spacing:-11.220000px;}
.wse{word-spacing:-11.154000px;}
.ws1c{word-spacing:-11.088000px;}
.ws9a{word-spacing:-11.022000px;}
.ws52{word-spacing:-10.890000px;}
.ws3f{word-spacing:-10.824000px;}
.ws3a{word-spacing:-10.758000px;}
.ws7c{word-spacing:-10.626000px;}
.ws6a{word-spacing:-10.560000px;}
.ws84{word-spacing:-10.494000px;}
.ws19{word-spacing:-10.428000px;}
.ws38{word-spacing:-10.362000px;}
.ws54{word-spacing:-10.230000px;}
.ws79{word-spacing:-10.164000px;}
.ws66{word-spacing:-10.098000px;}
.ws6d{word-spacing:-9.966000px;}
.ws6f{word-spacing:-9.768000px;}
.ws60{word-spacing:-9.702000px;}
.ws91{word-spacing:-9.636000px;}
.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;}
.ws3e{word-spacing:-9.042000px;}
.ws5e{word-spacing:-8.976000px;}
.ws71{word-spacing:-8.910000px;}
.ws30{word-spacing:-8.844000px;}
.ws5c{word-spacing:-8.778000px;}
.ws6c{word-spacing:-8.646000px;}
.ws25{word-spacing:-8.514000px;}
.ws72{word-spacing:-8.448000px;}
.ws88{word-spacing:-8.382000px;}
.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;}
.ws70{word-spacing:-7.854000px;}
.ws6b{word-spacing:-7.788000px;}
.ws31{word-spacing:-7.722000px;}
.ws46{word-spacing:-7.656000px;}
.ws8e{word-spacing:-7.524000px;}
.ws63{word-spacing:-7.392000px;}
.ws7b{word-spacing:-7.260000px;}
.ws98{word-spacing:-7.194000px;}
.ws1b{word-spacing:-7.128000px;}
.ws5d{word-spacing:-7.062000px;}
.ws14{word-spacing:-6.996000px;}
.ws78{word-spacing:-6.930000px;}
.ws48{word-spacing:-6.864000px;}
.ws83{word-spacing:-6.732000px;}
.ws4c{word-spacing:-6.666000px;}
.ws23{word-spacing:-6.534000px;}
.ws58{word-spacing:-6.402000px;}
.ws4d{word-spacing:-6.270000px;}
.ws55{word-spacing:-6.204000px;}
.ws6e{word-spacing:-6.138000px;}
.ws90{word-spacing:-6.072000px;}
.ws69{word-spacing:-5.940000px;}
.ws11{word-spacing:-5.874000px;}
.ws8a{word-spacing:-5.808000px;}
.ws97{word-spacing:-5.742000px;}
.ws47{word-spacing:-5.676000px;}
.wsb6{word-spacing:-5.640000px;}
.ws87{word-spacing:-5.544000px;}
.ws27{word-spacing:-5.346000px;}
.ws53{word-spacing:-5.280000px;}
.ws3b{word-spacing:-5.214000px;}
.ws9d{word-spacing:-5.082000px;}
.ws7e{word-spacing:-5.016000px;}
.ws67{word-spacing:-4.950000px;}
.ws75{word-spacing:-4.884000px;}
.ws100{word-spacing:-4.860000px;}
.ws2d{word-spacing:-4.818000px;}
.ws42{word-spacing:-4.752000px;}
.wsf3{word-spacing:-4.680000px;}
.ws2a{word-spacing:-4.422000px;}
.wsdc{word-spacing:-4.320000px;}
.ws94{word-spacing:-4.264200px;}
.ws34{word-spacing:-4.224000px;}
.wsb1{word-spacing:-4.200000px;}
.ws7a{word-spacing:-4.092000px;}
.ws93{word-spacing:-4.052400px;}
.ws95{word-spacing:-4.026000px;}
.ws10d{word-spacing:-3.960000px;}
.ws16{word-spacing:-3.894000px;}
.wsbf{word-spacing:-3.840000px;}
.ws8d{word-spacing:-3.828000px;}
.ws85{word-spacing:-3.762000px;}
.ws74{word-spacing:-3.630000px;}
.ws3c{word-spacing:-3.498000px;}
.ws39{word-spacing:-3.432000px;}
.ws101{word-spacing:-3.300000px;}
.ws8c{word-spacing:-3.168000px;}
.ws82{word-spacing:-3.102000px;}
.ws77{word-spacing:-3.036000px;}
.wsc0{word-spacing:-3.000000px;}
.ws9f{word-spacing:-2.970000px;}
.ws96{word-spacing:-2.904000px;}
.ws59{word-spacing:-2.838000px;}
.ws50{word-spacing:-2.772000px;}
.wsa4{word-spacing:-2.754000px;}
.ws57{word-spacing:-2.706000px;}
.ws28{word-spacing:-2.640000px;}
.ws8f{word-spacing:-2.574000px;}
.ws49{word-spacing:-2.442000px;}
.wsf4{word-spacing:-2.400000px;}
.ws1d{word-spacing:-2.376000px;}
.ws73{word-spacing:-2.244000px;}
.ws2{word-spacing:-2.220000px;}
.ws4b{word-spacing:-2.112000px;}
.wsa9{word-spacing:-2.106000px;}
.wsbb{word-spacing:-2.100000px;}
.ws1a{word-spacing:-2.046000px;}
.ws3{word-spacing:-1.998000px;}
.ws7d{word-spacing:-1.914000px;}
.wsba{word-spacing:-1.800000px;}
.ws1e{word-spacing:-1.782000px;}
.ws12{word-spacing:-1.776000px;}
.wsa5{word-spacing:-1.620000px;}
.wsb3{word-spacing:-1.320000px;}
.wsa3{word-spacing:-1.188000px;}
.wsca{word-spacing:-1.080000px;}
.ws4{word-spacing:-0.972000px;}
.ws35{word-spacing:-0.864000px;}
.wsdb{word-spacing:-0.600000px;}
.wsa7{word-spacing:-0.270000px;}
.ws102{word-spacing:-0.240000px;}
.ws1{word-spacing:0.000000px;}
.wsd2{word-spacing:0.060000px;}
.wsfb{word-spacing:0.300000px;}
.wse8{word-spacing:0.480000px;}
.wse0{word-spacing:1.140000px;}
.wsc1{word-spacing:1.320000px;}
.wse3{word-spacing:1.440000px;}
.wsc7{word-spacing:1.500000px;}
.wsc6{word-spacing:1.560000px;}
.ws10e{word-spacing:1.650000px;}
.ws10b{word-spacing:1.782000px;}
.wsf9{word-spacing:1.980000px;}
.wse2{word-spacing:2.040000px;}
.wsab{word-spacing:2.100000px;}
.wscb{word-spacing:2.340000px;}
.wsee{word-spacing:2.520000px;}
.wscc{word-spacing:2.880000px;}
.wsb4{word-spacing:3.060000px;}
.wsdf{word-spacing:3.360000px;}
.wsf1{word-spacing:3.420000px;}
.wsc8{word-spacing:3.600000px;}
.wse4{word-spacing:3.840000px;}
.wsb2{word-spacing:3.900000px;}
.wsf8{word-spacing:4.080000px;}
.ws108{word-spacing:4.260000px;}
.ws10a{word-spacing:4.428000px;}
.wsb8{word-spacing:4.560000px;}
.wsc4{word-spacing:5.040000px;}
.wse5{word-spacing:5.160000px;}
.wsff{word-spacing:5.280000px;}
.wsf0{word-spacing:5.460000px;}
.wsd9{word-spacing:5.580000px;}
.ws109{word-spacing:6.120000px;}
.wsad{word-spacing:6.360000px;}
.wsd7{word-spacing:6.480000px;}
.wsfe{word-spacing:6.660000px;}
.wscf{word-spacing:6.900000px;}
.wsea{word-spacing:7.020000px;}
.wsb0{word-spacing:7.080000px;}
.wsc2{word-spacing:7.200000px;}
.ws107{word-spacing:7.380000px;}
.wsfd{word-spacing:8.040000px;}
.wsd3{word-spacing:8.160000px;}
.wsf2{word-spacing:8.220000px;}
.wsf7{word-spacing:8.520000px;}
.ws104{word-spacing:8.640000px;}
.wsa8{word-spacing:9.018000px;}
.wsfc{word-spacing:9.120000px;}
.wsbc{word-spacing:9.360000px;}
.wse9{word-spacing:9.660000px;}
.wsfa{word-spacing:9.720000px;}
.wse6{word-spacing:9.780000px;}
.wsaf{word-spacing:10.020000px;}
.wsf5{word-spacing:10.380000px;}
.wseb{word-spacing:10.560000px;}
.wsb9{word-spacing:10.680000px;}
.wsda{word-spacing:10.860000px;}
.wse7{word-spacing:11.520000px;}
.wsd1{word-spacing:11.640000px;}
.wsde{word-spacing:11.940000px;}
.ws103{word-spacing:12.840000px;}
.wsf6{word-spacing:13.020000px;}
.ws106{word-spacing:13.140000px;}
.wsc5{word-spacing:13.740000px;}
.wsd0{word-spacing:14.280000px;}
.wsac{word-spacing:14.400000px;}
.wsd4{word-spacing:14.520000px;}
.wsbd{word-spacing:14.640000px;}
.wsbe{word-spacing:15.000000px;}
.wsa6{word-spacing:15.228000px;}
.wse1{word-spacing:15.360000px;}
.wsef{word-spacing:15.840000px;}
.wsb7{word-spacing:15.900000px;}
.ws105{word-spacing:16.020000px;}
.wsd5{word-spacing:16.200000px;}
.wscd{word-spacing:16.800000px;}
.wsdd{word-spacing:17.700000px;}
.wsd8{word-spacing:19.200000px;}
.wsc9{word-spacing:19.440000px;}
.wsce{word-spacing:20.040000px;}
.wsed{word-spacing:20.460000px;}
.ws8{word-spacing:20.574000px;}
.wsec{word-spacing:20.940000px;}
.wsb5{word-spacing:23.520000px;}
.wsd6{word-spacing:23.820000px;}
.wsc3{word-spacing:27.360000px;}
.ws9{word-spacing:41.597400px;}
.wsa{word-spacing:41.633400px;}
.wsae{word-spacing:66.634800px;}
.ws1f{word-spacing:81.017400px;}
.ws89{word-spacing:92.554800px;}
.ws5{word-spacing:101.888400px;}
.ws80{word-spacing:107.243400px;}
._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;}
._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;}
._51{width:4.701000px;}
._4e{width:5.716200px;}
._4c{width:6.926400px;}
._47{width:8.532000px;}
._46{width:10.492200px;}
._4f{width:11.627400px;}
._50{width:14.004000px;}
._5c{width:16.735800px;}
._45{width:20.593200px;}
._5a{width:21.735600px;}
._5b{width:22.848600px;}
._5d{width:28.581600px;}
._59{width:59.007600px;}
._4d{width:231.586200px;}
._55{width:776.688000px;}
._52{width:916.645200px;}
._53{width:1133.898000px;}
._57{width:1178.826000px;}
._58{width:1193.892000px;}
._54{width:1310.910000px;}
._56{width:1331.970000px;}
.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);}
.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;}
.fsc{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;}
.y1b7{bottom:109.069650px;}
.y1b6{bottom:123.469650px;}
.y61{bottom:126.811800px;}
.y35{bottom:127.558950px;}
.y5d{bottom:127.559100px;}
.y14b{bottom:128.869650px;}
.y16e{bottom:130.017750px;}
.y24d{bottom:131.659950px;}
.y6c{bottom:134.096100px;}
.y27b{bottom:136.336950px;}
.y240{bottom:142.611150px;}
.y60{bottom:143.011800px;}
.y14a{bottom:143.269650px;}
.y1db{bottom:143.858400px;}
.y16d{bottom:144.417600px;}
.y34{bottom:146.811000px;}
.y15d{bottom:147.521550px;}
.y5c{bottom:148.011000px;}
.y11c{bottom:148.669650px;}
.y109{bottom:149.817750px;}
.y19e{bottom:150.965700px;}
.y20e{bottom:151.114950px;}
.y6b{bottom:152.096100px;}
.y27a{bottom:154.336950px;}
.y5f{bottom:159.211800px;}
.y15c{bottom:161.921700px;}
.y23f{bottom:162.111150px;}
.y11b{bottom:163.069650px;}
.y1da{bottom:163.358400px;}
.y108{bottom:164.217750px;}
.y19d{bottom:165.365700px;}
.y33{bottom:166.062900px;}
.y13b{bottom:167.321550px;}
.y5b{bottom:168.463050px;}
.y1a9{bottom:168.469650px;}
.y6a{bottom:170.096100px;}
.y20d{bottom:170.614950px;}
.y279{bottom:172.336950px;}
.yd4{bottom:174.904350px;}
.y5e{bottom:175.411800px;}
.y23e{bottom:181.611150px;}
.y13a{bottom:181.721700px;}
.y1d9{bottom:182.858400px;}
.y11a{bottom:182.869650px;}
.y19c{bottom:185.165700px;}
.y32{bottom:185.314950px;}
.y149{bottom:187.121550px;}
.y69{bottom:188.096100px;}
.y107{bottom:188.269650px;}
.y5a{bottom:188.914950px;}
.yd3{bottom:189.304350px;}
.y20c{bottom:190.114950px;}
.y278{bottom:190.336950px;}
.y23d{bottom:201.111150px;}
.y139{bottom:201.521550px;}
.y106{bottom:202.669650px;}
.y31{bottom:204.566850px;}
.y15b{bottom:205.773600px;}
.y68{bottom:206.096100px;}
.y1b3{bottom:206.921700px;}
.y277{bottom:208.336950px;}
.yd2{bottom:209.104350px;}
.y19b{bottom:209.217750px;}
.y59{bottom:209.366850px;}
.ya1{bottom:209.507550px;}
.y20b{bottom:209.614950px;}
.y1d8{bottom:210.862350px;}
.y15a{bottom:220.173600px;}
.y23c{bottom:220.611150px;}
.y148{bottom:221.321550px;}
.y16c{bottom:222.469650px;}
.y19a{bottom:223.617600px;}
.y30{bottom:223.818900px;}
.y67{bottom:224.096100px;}
.y138{bottom:225.573600px;}
.y276{bottom:226.336950px;}
.y105{bottom:226.721700px;}
.y20a{bottom:229.114950px;}
.y58{bottom:229.818900px;}
.ya0{bottom:229.959600px;}
.yd1{bottom:233.156400px;}
.y137{bottom:239.973600px;}
.y23b{bottom:240.111150px;}
.y104{bottom:241.121550px;}
.y66{bottom:242.096100px;}
.y2f{bottom:243.070800px;}
.y275{bottom:244.336950px;}
.y147{bottom:245.373600px;}
.y16b{bottom:246.521550px;}
.yd0{bottom:247.556250px;}
.y199{bottom:247.669650px;}
.y209{bottom:248.614950px;}
.y57{bottom:250.270800px;}
.y9f{bottom:250.411500px;}
.y1d7{bottom:253.367550px;}
.y28d{bottom:253.855950px;}
.y23a{bottom:259.611150px;}
.y146{bottom:259.773600px;}
.y65{bottom:260.096100px;}
.y119{bottom:260.921700px;}
.y198{bottom:262.069650px;}
.y2e{bottom:262.322700px;}
.y274{bottom:262.336950px;}
.y136{bottom:264.025500px;}
.y103{bottom:265.173600px;}
.ycf{bottom:267.356250px;}
.y208{bottom:268.114950px;}
.y56{bottom:270.722850px;}
.y9e{bottom:270.863550px;}
.y28c{bottom:271.855950px;}
.y1d6{bottom:274.367550px;}
.y135{bottom:278.425500px;}
.y239{bottom:279.111150px;}
.y102{bottom:279.573600px;}
.y273{bottom:280.336950px;}
.y2d{bottom:281.574750px;}
.y197{bottom:281.869650px;}
.y1b5{bottom:283.825500px;}
.y118{bottom:284.973600px;}
.y64{bottom:286.600050px;}
.y207{bottom:287.614950px;}
.y55{bottom:291.174750px;}
.y9d{bottom:291.315450px;}
.yce{bottom:291.408300px;}
.y1d5{bottom:295.367550px;}
.y134{bottom:298.225500px;}
.y272{bottom:298.336950px;}
.y238{bottom:298.611150px;}
.y101{bottom:299.373600px;}
.y2c{bottom:300.826650px;}
.y145{bottom:303.625650px;}
.y63{bottom:304.600050px;}
.y2a3{bottom:305.730000px;}
.ycd{bottom:305.808300px;}
.y196{bottom:305.921700px;}
.y206{bottom:307.114950px;}
.y54{bottom:311.626800px;}
.y9c{bottom:311.767350px;}
.y271{bottom:316.336950px;}
.y144{bottom:318.025500px;}
.y237{bottom:318.111150px;}
.y117{bottom:319.173600px;}
.y2b{bottom:320.078700px;}
.y195{bottom:320.321550px;}
.y133{bottom:322.277550px;}
.y100{bottom:323.425500px;}
.y1d4{bottom:324.871500px;}
.y2a2{bottom:325.530000px;}
.ycc{bottom:325.608300px;}
.y205{bottom:326.614950px;}
.y62{bottom:331.104000px;}
.y53{bottom:332.078700px;}
.y9b{bottom:332.219400px;}
.y270{bottom:334.336950px;}
.y132{bottom:336.677550px;}
.y236{bottom:337.611150px;}
.yff{bottom:337.825500px;}
.y2a{bottom:339.330600px;}
.y194{bottom:340.121550px;}
.y1b4{bottom:342.077550px;}
.y116{bottom:343.225500px;}
.y2a1{bottom:345.330000px;}
.y1d3{bottom:345.871500px;}
.y204{bottom:346.114950px;}
.ycb{bottom:349.660200px;}
.y26f{bottom:352.336950px;}
.y52{bottom:352.530600px;}
.y9a{bottom:352.671300px;}
.y159{bottom:356.477550px;}
.y235{bottom:357.111150px;}
.yfe{bottom:357.625650px;}
.y29{bottom:358.582650px;}
.y131{bottom:360.729450px;}
.y143{bottom:361.877550px;}
.yca{bottom:364.060200px;}
.y193{bottom:364.173600px;}
.y2a0{bottom:365.130000px;}
.y203{bottom:365.614950px;}
.y1d2{bottom:366.871500px;}
.y26e{bottom:370.336950px;}
.y51{bottom:372.982650px;}
.y99{bottom:373.123350px;}
.y130{bottom:375.129450px;}
.y142{bottom:376.277550px;}
.y234{bottom:376.611150px;}
.y115{bottom:377.425500px;}
.y28{bottom:377.834550px;}
.y192{bottom:378.573600px;}
.y158{bottom:380.529450px;}
.yfd{bottom:381.677550px;}
.y29f{bottom:384.930000px;}
.y202{bottom:385.114950px;}
.yc9{bottom:388.112250px;}
.y26d{bottom:388.336950px;}
.y50{bottom:393.434550px;}
.y98{bottom:393.575250px;}
.y12f{bottom:394.929450px;}
.yfc{bottom:396.077550px;}
.y233{bottom:396.111150px;}
.y27{bottom:397.086600px;}
.y191{bottom:398.373600px;}
.y1d1{bottom:398.710500px;}
.y114{bottom:401.477550px;}
.yc8{bottom:402.512250px;}
.y201{bottom:404.614950px;}
.y26c{bottom:406.336950px;}
.y4f{bottom:413.886600px;}
.y97{bottom:414.027300px;}
.y157{bottom:414.729450px;}
.y232{bottom:415.611150px;}
.y113{bottom:415.877550px;}
.y26{bottom:416.338500px;}
.y12e{bottom:418.981500px;}
.y1d0{bottom:419.710500px;}
.yfb{bottom:420.129450px;}
.yc7{bottom:422.312250px;}
.y190{bottom:422.425500px;}
.y200{bottom:424.114950px;}
.y26b{bottom:424.336950px;}
.y298{bottom:432.045300px;}
.y12d{bottom:433.381500px;}
.y4e{bottom:434.338500px;}
.y96{bottom:434.479200px;}
.yfa{bottom:434.529450px;}
.y231{bottom:435.111150px;}
.y25{bottom:435.590400px;}
.y16a{bottom:435.677550px;}
.y18f{bottom:436.825500px;}
.y156{bottom:438.781500px;}
.y112{bottom:439.929450px;}
.y1cf{bottom:440.710500px;}
.y26a{bottom:442.336950px;}
.y1ff{bottom:443.614950px;}
.yc6{bottom:446.364150px;}
.y297{bottom:451.845300px;}
.y12c{bottom:453.181500px;}
.yf9{bottom:454.329450px;}
.y230{bottom:454.611150px;}
.y4d{bottom:454.790550px;}
.y24{bottom:454.842450px;}
.y95{bottom:454.931250px;}
.y1b2{bottom:458.581500px;}
.y169{bottom:459.729450px;}
.y269{bottom:460.336950px;}
.yc5{bottom:460.764150px;}
.y18e{bottom:460.877550px;}
.y1fe{bottom:463.114950px;}
.y1ce{bottom:470.214450px;}
.y296{bottom:471.645300px;}
.y155{bottom:472.981500px;}
.y23{bottom:474.094500px;}
.y22f{bottom:474.111150px;}
.y168{bottom:474.129450px;}
.y4c{bottom:475.242450px;}
.y18d{bottom:475.277550px;}
.y94{bottom:475.383150px;}
.y12b{bottom:477.233400px;}
.y268{bottom:478.336950px;}
.yf8{bottom:478.381500px;}
.yc4{bottom:480.564300px;}
.y1fd{bottom:482.614950px;}
.y1cd{bottom:491.214450px;}
.y12a{bottom:491.633400px;}
.yf7{bottom:492.781500px;}
.y22{bottom:493.346400px;}
.y22e{bottom:493.611150px;}
.y18c{bottom:495.077550px;}
.y4b{bottom:495.694500px;}
.y93{bottom:495.835200px;}
.y267{bottom:496.336950px;}
.y154{bottom:497.033400px;}
.y167{bottom:498.181500px;}
.y1fc{bottom:502.114950px;}
.yc3{bottom:504.616200px;}
.y129{bottom:511.433400px;}
.y1cc{bottom:512.214450px;}
.y166{bottom:512.581500px;}
.y21{bottom:512.598300px;}
.y22d{bottom:513.111150px;}
.y266{bottom:514.336950px;}
.y4a{bottom:516.146400px;}
.y92{bottom:516.287100px;}
.yf6{bottom:516.833400px;}
.y29e{bottom:518.760750px;}
.yc2{bottom:519.016200px;}
.y18b{bottom:519.129450px;}
.y1fb{bottom:521.614950px;}
.yf5{bottom:531.233400px;}
.y20{bottom:531.850350px;}
.y265{bottom:532.336950px;}
.y165{bottom:532.381500px;}
.y22c{bottom:532.611150px;}
.y18a{bottom:533.529450px;}
.y128{bottom:535.485450px;}
.y49{bottom:536.598450px;}
.y1b8{bottom:536.633400px;}
.y91{bottom:536.739000px;}
.y29d{bottom:538.560750px;}
.yc1{bottom:538.816200px;}
.y1fa{bottom:541.114950px;}
.y1cb{bottom:543.276600px;}
.y127{bottom:549.885450px;}
.yf4{bottom:551.033400px;}
.y1f{bottom:551.102400px;}
.y22b{bottom:552.111150px;}
.y153{bottom:555.285450px;}
.y164{bottom:556.433400px;}
.y48{bottom:557.050350px;}
.y189{bottom:557.581500px;}
.y29c{bottom:558.360600px;}
.y264{bottom:558.840900px;}
.y1f9{bottom:560.614950px;}
.yc0{bottom:562.868250px;}
.y1ca{bottom:564.276600px;}
.y24c{bottom:569.550300px;}
.y126{bottom:569.685450px;}
.y1e{bottom:570.354300px;}
.y163{bottom:570.833400px;}
.y22a{bottom:571.611150px;}
.y188{bottom:571.981500px;}
.yf3{bottom:575.085450px;}
.ybf{bottom:577.268100px;}
.y47{bottom:577.502400px;}
.y29b{bottom:578.160750px;}
.y1f8{bottom:580.114950px;}
.y90{bottom:580.616550px;}
.y24b{bottom:587.550300px;}
.yf2{bottom:589.485450px;}
.y1d{bottom:589.606200px;}
.y1a8{bottom:590.633400px;}
.y229{bottom:591.111150px;}
.y187{bottom:591.781500px;}
.y125{bottom:593.737350px;}
.y1c9{bottom:593.780550px;}
.y162{bottom:594.885450px;}
.ybe{bottom:597.068100px;}
.y8f{bottom:597.116550px;}
.y46{bottom:597.954300px;}
.y29a{bottom:597.960600px;}
.y263{bottom:598.440900px;}
.y1f7{bottom:599.614950px;}
.y24a{bottom:605.550300px;}
.y124{bottom:608.137350px;}
.y1c{bottom:608.858250px;}
.yf1{bottom:609.285450px;}
.y228{bottom:610.611150px;}
.y152{bottom:613.537350px;}
.y8e{bottom:613.616550px;}
.y1a7{bottom:614.685450px;}
.y1c8{bottom:614.780550px;}
.y186{bottom:615.833400px;}
.y262{bottom:616.440900px;}
.y299{bottom:617.760750px;}
.y45{bottom:618.406200px;}
.y1f6{bottom:619.114950px;}
.ybd{bottom:621.120150px;}
.y249{bottom:623.550300px;}
.y123{bottom:627.937350px;}
.y1b{bottom:628.110150px;}
.y161{bottom:629.085450px;}
.y227{bottom:630.111150px;}
.y8d{bottom:630.116550px;}
.y185{bottom:630.233400px;}
.yf0{bottom:633.337350px;}
.y261{bottom:634.440900px;}
.ybc{bottom:635.520150px;}
.y1c7{bottom:635.780550px;}
.y1f5{bottom:638.614950px;}
.y44{bottom:638.858250px;}
.y248{bottom:641.550300px;}
.y8c{bottom:646.616550px;}
.y1a{bottom:647.362200px;}
.yef{bottom:647.737350px;}
.y1a6{bottom:648.885450px;}
.y226{bottom:649.611150px;}
.y260{bottom:652.440900px;}
.y160{bottom:653.137350px;}
.y184{bottom:654.285450px;}
.ybb{bottom:655.320150px;}
.y43{bottom:659.310150px;}
.y247{bottom:659.550300px;}
.y8b{bottom:663.116550px;}
.y19{bottom:666.614100px;}
.y1f4{bottom:666.618900px;}
.yee{bottom:667.537350px;}
.y183{bottom:668.685450px;}
.y225{bottom:669.111150px;}
.y122{bottom:671.789400px;}
.y1a5{bottom:672.937350px;}
.y246{bottom:677.550300px;}
.y295{bottom:677.952450px;}
.yba{bottom:679.372050px;}
.y8a{bottom:679.616550px;}
.y42{bottom:679.762200px;}
.y18{bottom:685.866000px;}
.y121{bottom:686.189400px;}
.y15f{bottom:687.337350px;}
.y182{bottom:688.485450px;}
.y224{bottom:688.611150px;}
.yed{bottom:691.589250px;}
.yb9{bottom:693.772050px;}
.y245{bottom:695.550300px;}
.y25f{bottom:696.003750px;}
.y89{bottom:696.116550px;}
.y294{bottom:697.752450px;}
.y41{bottom:700.214100px;}
.y17{bottom:705.118050px;}
.y1f3{bottom:705.618900px;}
.yec{bottom:705.989250px;}
.y1a4{bottom:707.137350px;}
.y223{bottom:708.111150px;}
.y1b1{bottom:710.241300px;}
.y15e{bottom:711.389400px;}
.y181{bottom:712.537350px;}
.y88{bottom:712.616550px;}
.y244{bottom:713.550300px;}
.yb8{bottom:713.572050px;}
.y1c6{bottom:715.837500px;}
.y293{bottom:717.552450px;}
.y40{bottom:720.666150px;}
.y16{bottom:724.369950px;}
.y1b0{bottom:724.641300px;}
.y1f2{bottom:725.118900px;}
.yeb{bottom:725.789400px;}
.y180{bottom:726.937350px;}
.y222{bottom:727.611150px;}
.y87{bottom:729.116550px;}
.y120{bottom:730.041300px;}
.y1a3{bottom:731.189400px;}
.y25e{bottom:731.457750px;}
.y243{bottom:731.550300px;}
.y1c5{bottom:735.637500px;}
.y292{bottom:737.352450px;}
.yb7{bottom:737.624100px;}
.y3f{bottom:741.118050px;}
.y15{bottom:743.622000px;}
.y11f{bottom:744.441300px;}
.y1f1{bottom:744.618900px;}
.y1a2{bottom:745.589250px;}
.y86{bottom:745.616550px;}
.y221{bottom:747.111150px;}
.y242{bottom:749.550300px;}
.yea{bottom:749.841300px;}
.y17f{bottom:750.989250px;}
.yb6{bottom:752.024100px;}
.y2{bottom:754.869900px;}
.y4{bottom:755.061000px;}
.y1c4{bottom:755.437500px;}
.y3e{bottom:761.570100px;}
.y85{bottom:762.116550px;}
.y14{bottom:762.873900px;}
.y1f0{bottom:764.118900px;}
.ye9{bottom:764.241300px;}
.y17e{bottom:765.389400px;}
.y28e{bottom:766.563300px;}
.y220{bottom:766.611150px;}
.y25d{bottom:766.911750px;}
.y1af{bottom:768.493350px;}
.y1c3{bottom:775.237500px;}
.yb5{bottom:776.076000px;}
.y84{bottom:778.616550px;}
.y3d{bottom:782.022000px;}
.y13{bottom:782.125950px;}
.y1ae{bottom:782.893200px;}
.y1ef{bottom:783.618900px;}
.ye8{bottom:784.041300px;}
.y17d{bottom:785.189250px;}
.y241{bottom:785.550300px;}
.y11e{bottom:788.293200px;}
.y1a1{bottom:789.441300px;}
.yb4{bottom:790.476000px;}
.y21f{bottom:794.614950px;}
.y1c2{bottom:795.037500px;}
.y83{bottom:795.116550px;}
.y12{bottom:801.378000px;}
.y25c{bottom:802.365750px;}
.y3c{bottom:802.474050px;}
.y11d{bottom:802.693200px;}
.y1ee{bottom:803.118900px;}
.y1a0{bottom:803.841300px;}
.y291{bottom:805.427700px;}
.ye7{bottom:808.093350px;}
.y17c{bottom:809.241300px;}
.y82{bottom:811.616550px;}
.yb3{bottom:814.528050px;}
.y11{bottom:820.629900px;}
.ye6{bottom:822.493350px;}
.y1ed{bottom:822.618900px;}
.y3b{bottom:822.925950px;}
.y17b{bottom:823.641300px;}
.y1ad{bottom:826.745250px;}
.y19f{bottom:827.893200px;}
.y81{bottom:828.116550px;}
.yb2{bottom:828.928050px;}
.y21e{bottom:833.614950px;}
.y290{bottom:835.531800px;}
.y25b{bottom:837.819750px;}
.y10{bottom:839.881950px;}
.y1ac{bottom:841.145250px;}
.y1ec{bottom:842.118900px;}
.y111{bottom:842.293200px;}
.y3a{bottom:843.378000px;}
.y80{bottom:844.616550px;}
.ye5{bottom:846.545250px;}
.y17a{bottom:847.693200px;}
.yb1{bottom:852.979950px;}
.y21d{bottom:853.114950px;}
.y1c1{bottom:854.437500px;}
.yf{bottom:859.133850px;}
.ye4{bottom:860.945250px;}
.y7f{bottom:861.116550px;}
.y1eb{bottom:861.618900px;}
.y179{bottom:862.093350px;}
.y39{bottom:863.829900px;}
.y28f{bottom:865.635750px;}
.y110{bottom:866.345250px;}
.yb0{bottom:867.379950px;}
.y25a{bottom:873.273750px;}
.y1c0{bottom:874.237500px;}
.ye3{bottom:880.745250px;}
.y1ea{bottom:881.118900px;}
.y21c{bottom:881.119050px;}
.y178{bottom:881.893200px;}
.y38{bottom:884.281800px;}
.y1ab{bottom:884.997300px;}
.yaf{bottom:887.179950px;}
.y1bf{bottom:894.037500px;}
.y1aa{bottom:899.397150px;}
.y151{bottom:900.545250px;}
.y1e9{bottom:900.618900px;}
.y7e{bottom:900.712950px;}
.yc{bottom:903.943050px;}
.y37{bottom:904.733850px;}
.ye2{bottom:904.797150px;}
.y177{bottom:905.945250px;}
.y259{bottom:908.727750px;}
.yae{bottom:911.232000px;}
.y28b{bottom:912.210900px;}
.y1be{bottom:913.837500px;}
.y7d{bottom:917.212950px;}
.ye1{bottom:919.197300px;}
.y1e8{bottom:920.118900px;}
.y21b{bottom:920.119050px;}
.y176{bottom:920.345250px;}
.yb{bottom:921.943050px;}
.y150{bottom:924.597150px;}
.yad{bottom:925.632000px;}
.y28a{bottom:928.410900px;}
.y1bd{bottom:933.637500px;}
.y7c{bottom:933.712950px;}
.y258{bottom:938.119050px;}
.y10f{bottom:938.997300px;}
.y1e7{bottom:939.618900px;}
.y21a{bottom:939.619050px;}
.ye0{bottom:943.249200px;}
.y175{bottom:944.397150px;}
.y289{bottom:944.610900px;}
.ya{bottom:948.446850px;}
.yac{bottom:949.683900px;}
.y7b{bottom:950.212950px;}
.ydf{bottom:957.649200px;}
.y174{bottom:958.797150px;}
.y14f{bottom:958.797300px;}
.y1e6{bottom:959.118900px;}
.y219{bottom:959.119050px;}
.y288{bottom:960.810900px;}
.y10e{bottom:963.049200px;}
.yab{bottom:964.083900px;}
.y9{bottom:966.446850px;}
.y7a{bottom:966.712950px;}
.y257{bottom:974.119050px;}
.y287{bottom:977.010900px;}
.yde{bottom:977.449200px;}
.y1e5{bottom:978.618900px;}
.y218{bottom:978.619050px;}
.y14e{bottom:982.849200px;}
.y79{bottom:983.212950px;}
.yaa{bottom:983.883900px;}
.ye{bottom:987.166650px;}
.y256{bottom:992.119050px;}
.y8{bottom:992.950800px;}
.y286{bottom:993.210900px;}
.y10d{bottom:997.249200px;}
.y1e4{bottom:998.118900px;}
.y217{bottom:998.119050px;}
.y78{bottom:999.712950px;}
.ydd{bottom:1001.501100px;}
.y1bc{bottom:1007.437350px;}
.ya9{bottom:1007.935950px;}
.yd{bottom:1008.766800px;}
.y285{bottom:1009.410900px;}
.y255{bottom:1010.119050px;}
.y7{bottom:1010.950800px;}
.ydc{bottom:1015.901250px;}
.y77{bottom:1016.212950px;}
.y173{bottom:1017.049200px;}
.y1e3{bottom:1017.618900px;}
.y216{bottom:1017.619050px;}
.y10c{bottom:1021.301100px;}
.y141{bottom:1021.301250px;}
.ya8{bottom:1022.335950px;}
.y284{bottom:1025.610900px;}
.y254{bottom:1028.119050px;}
.y76{bottom:1032.712950px;}
.ydb{bottom:1035.701100px;}
.y140{bottom:1035.701250px;}
.y1e2{bottom:1037.118900px;}
.y215{bottom:1037.119050px;}
.y172{bottom:1041.101100px;}
.y283{bottom:1041.810900px;}
.y253{bottom:1046.119050px;}
.ya7{bottom:1046.387850px;}
.y75{bottom:1049.212950px;}
.y1bb{bottom:1050.637500px;}
.y10b{bottom:1055.501100px;}
.y13f{bottom:1055.501250px;}
.y1e1{bottom:1056.618900px;}
.y214{bottom:1056.619050px;}
.y282{bottom:1058.010900px;}
.yda{bottom:1059.753150px;}
.ya6{bottom:1060.787850px;}
.y252{bottom:1064.119050px;}
.y74{bottom:1065.712950px;}
.yd9{bottom:1074.153150px;}
.y281{bottom:1074.210900px;}
.y171{bottom:1075.301100px;}
.y1e0{bottom:1076.118900px;}
.y213{bottom:1076.119050px;}
.y10a{bottom:1079.553150px;}
.y251{bottom:1082.119050px;}
.y73{bottom:1082.212950px;}
.y280{bottom:1090.410900px;}
.y1ba{bottom:1093.837500px;}
.yd8{bottom:1093.953150px;}
.y1df{bottom:1095.618900px;}
.y212{bottom:1095.619050px;}
.y72{bottom:1098.712950px;}
.y170{bottom:1099.353150px;}
.y250{bottom:1100.119050px;}
.y27f{bottom:1106.610900px;}
.ya5{bottom:1109.035500px;}
.y14d{bottom:1113.753150px;}
.y1de{bottom:1115.118900px;}
.y211{bottom:1115.119050px;}
.y71{bottom:1115.212950px;}
.yd7{bottom:1118.005050px;}
.y13e{bottom:1118.005200px;}
.y24f{bottom:1118.119050px;}
.y27e{bottom:1122.810900px;}
.y70{bottom:1131.712950px;}
.yd6{bottom:1132.405050px;}
.y13d{bottom:1132.405200px;}
.y1dd{bottom:1134.618900px;}
.y210{bottom:1134.619050px;}
.y24e{bottom:1136.119050px;}
.y1b9{bottom:1137.037500px;}
.y16f{bottom:1137.805050px;}
.y14c{bottom:1137.805200px;}
.y27d{bottom:1139.010900px;}
.y6f{bottom:1148.212950px;}
.yd5{bottom:1152.205050px;}
.y13c{bottom:1152.205200px;}
.y1dc{bottom:1154.118900px;}
.y20f{bottom:1154.119050px;}
.y27c{bottom:1155.210900px;}
.y6e{bottom:1164.712950px;}
.y6d{bottom:1181.212950px;}
.ya3{bottom:1201.511100px;}
.ya4{bottom:1203.022800px;}
.h16{height:34.945312px;}
.h18{height:35.156250px;}
.h7{height:39.312000px;}
.hb{height:39.313477px;}
.hc{height:39.366211px;}
.h6{height:39.474000px;}
.hd{height:39.550781px;}
.he{height:41.454000px;}
.h20{height:42.568359px;}
.h8{height:43.681641px;}
.h1d{height:43.740234px;}
.h9{height:43.945312px;}
.h15{height:46.825195px;}
.hf{height:47.856445px;}
.h1c{height:48.049805px;}
.h10{height:48.114258px;}
.h1f{height:51.082031px;}
.h21{height:51.972656px;}
.ha{height:52.417969px;}
.h23{height:52.488281px;}
.h13{height:52.560000px;}
.h1e{height:53.173828px;}
.h17{height:57.169922px;}
.h11{height:58.491211px;}
.h22{height:85.148438px;}
.h1a{height:102.164062px;}
.h1b{height:124.734375px;}
.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;}
.x1c{left:72.776850px;}
.x19{left:82.227600px;}
.x5{left:96.944850px;}
.x21{left:99.504600px;}
.xa{left:104.598450px;}
.x15{left:106.299150px;}
.x4{left:108.374100px;}
.x1b{left:110.551200px;}
.x23{left:118.322250px;}
.x24{left:122.092800px;}
.x2d{left:123.708900px;}
.x2c{left:124.732050px;}
.x22{left:127.559100px;}
.x29{left:133.513800px;}
.x2a{left:135.354750px;}
.x1e{left:140.314950px;}
.x3{left:142.368300px;}
.x2f{left:197.802150px;}
.x1d{left:208.346400px;}
.x1a{left:215.016000px;}
.x34{left:227.937750px;}
.x2e{left:231.714300px;}
.x35{left:242.157600px;}
.x33{left:248.409600px;}
.x36{left:256.192350px;}
.x18{left:280.629900px;}
.x25{left:286.271400px;}
.x2b{left:329.282100px;}
.x30{left:345.007050px;}
.x26{left:368.097600px;}
.x28{left:386.449200px;}
.x31{left:389.464350px;}
.x32{left:399.251700px;}
.x27{left:461.720700px;}
.x8{left:511.976100px;}
.xf{left:581.778450px;}
.xb{left:596.738100px;}
.x13{left:599.176800px;}
.x6{left:601.411200px;}
.xe{left:605.154750px;}
.x11{left:611.128800px;}
.x10{left:612.957600px;}
.xc{left:617.239800px;}
.xd{left:634.041900px;}
.x12{left:652.837950px;}
.x14{left:656.048550px;}
.x20{left:661.345650px;}
.x7{left:666.801750px;}
.x1{left:705.924150px;}
.x1f{left:772.793700px;}
.x17{left:776.033700px;}
.x16{left:855.139050px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:1.904000pt;}
.v2{vertical-align:5.374933pt;}
.lsd{letter-spacing:-1.466667pt;}
.lsc{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;}
.lsb{letter-spacing:105.065600pt;}
.lsa{letter-spacing:647.602133pt;}
.ws0{word-spacing:-373.333333pt;}
.ws20{word-spacing:-87.792533pt;}
.wsc{word-spacing:-81.920000pt;}
.wsb{word-spacing:-67.200000pt;}
.ws81{word-spacing:-64.426133pt;}
.ws21{word-spacing:-32.160000pt;}
.wsa0{word-spacing:-28.160000pt;}
.ws6{word-spacing:-22.944000pt;}
.ws10c{word-spacing:-17.792000pt;}
.wsa1{word-spacing:-14.826667pt;}
.wsa2{word-spacing:-13.344000pt;}
.wsd{word-spacing:-12.906667pt;}
.ws8b{word-spacing:-12.848000pt;}
.wsaa{word-spacing:-12.800000pt;}
.ws32{word-spacing:-12.789333pt;}
.ws2f{word-spacing:-12.730667pt;}
.ws64{word-spacing:-12.613333pt;}
.ws65{word-spacing:-12.378667pt;}
.ws9c{word-spacing:-12.320000pt;}
.ws86{word-spacing:-12.261333pt;}
.ws37{word-spacing:-12.202667pt;}
.ws7f{word-spacing:-12.144000pt;}
.ws56{word-spacing:-12.085333pt;}
.ws5a{word-spacing:-12.026667pt;}
.ws3d{word-spacing:-11.968000pt;}
.ws92{word-spacing:-11.850667pt;}
.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;}
.ws76{word-spacing:-10.912000pt;}
.ws13{word-spacing:-10.736000pt;}
.ws4f{word-spacing:-10.677333pt;}
.ws9e{word-spacing:-10.618667pt;}
.ws9b{word-spacing:-10.560000pt;}
.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;}
.ws99{word-spacing:-9.973333pt;}
.wse{word-spacing:-9.914667pt;}
.ws1c{word-spacing:-9.856000pt;}
.ws9a{word-spacing:-9.797333pt;}
.ws52{word-spacing:-9.680000pt;}
.ws3f{word-spacing:-9.621333pt;}
.ws3a{word-spacing:-9.562667pt;}
.ws7c{word-spacing:-9.445333pt;}
.ws6a{word-spacing:-9.386667pt;}
.ws84{word-spacing:-9.328000pt;}
.ws19{word-spacing:-9.269333pt;}
.ws38{word-spacing:-9.210667pt;}
.ws54{word-spacing:-9.093333pt;}
.ws79{word-spacing:-9.034667pt;}
.ws66{word-spacing:-8.976000pt;}
.ws6d{word-spacing:-8.858667pt;}
.ws6f{word-spacing:-8.682667pt;}
.ws60{word-spacing:-8.624000pt;}
.ws91{word-spacing:-8.565333pt;}
.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;}
.ws3e{word-spacing:-8.037333pt;}
.ws5e{word-spacing:-7.978667pt;}
.ws71{word-spacing:-7.920000pt;}
.ws30{word-spacing:-7.861333pt;}
.ws5c{word-spacing:-7.802667pt;}
.ws6c{word-spacing:-7.685333pt;}
.ws25{word-spacing:-7.568000pt;}
.ws72{word-spacing:-7.509333pt;}
.ws88{word-spacing:-7.450667pt;}
.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;}
.ws70{word-spacing:-6.981333pt;}
.ws6b{word-spacing:-6.922667pt;}
.ws31{word-spacing:-6.864000pt;}
.ws46{word-spacing:-6.805333pt;}
.ws8e{word-spacing:-6.688000pt;}
.ws63{word-spacing:-6.570667pt;}
.ws7b{word-spacing:-6.453333pt;}
.ws98{word-spacing:-6.394667pt;}
.ws1b{word-spacing:-6.336000pt;}
.ws5d{word-spacing:-6.277333pt;}
.ws14{word-spacing:-6.218667pt;}
.ws78{word-spacing:-6.160000pt;}
.ws48{word-spacing:-6.101333pt;}
.ws83{word-spacing:-5.984000pt;}
.ws4c{word-spacing:-5.925333pt;}
.ws23{word-spacing:-5.808000pt;}
.ws58{word-spacing:-5.690667pt;}
.ws4d{word-spacing:-5.573333pt;}
.ws55{word-spacing:-5.514667pt;}
.ws6e{word-spacing:-5.456000pt;}
.ws90{word-spacing:-5.397333pt;}
.ws69{word-spacing:-5.280000pt;}
.ws11{word-spacing:-5.221333pt;}
.ws8a{word-spacing:-5.162667pt;}
.ws97{word-spacing:-5.104000pt;}
.ws47{word-spacing:-5.045333pt;}
.wsb6{word-spacing:-5.013333pt;}
.ws87{word-spacing:-4.928000pt;}
.ws27{word-spacing:-4.752000pt;}
.ws53{word-spacing:-4.693333pt;}
.ws3b{word-spacing:-4.634667pt;}
.ws9d{word-spacing:-4.517333pt;}
.ws7e{word-spacing:-4.458667pt;}
.ws67{word-spacing:-4.400000pt;}
.ws75{word-spacing:-4.341333pt;}
.ws100{word-spacing:-4.320000pt;}
.ws2d{word-spacing:-4.282667pt;}
.ws42{word-spacing:-4.224000pt;}
.wsf3{word-spacing:-4.160000pt;}
.ws2a{word-spacing:-3.930667pt;}
.wsdc{word-spacing:-3.840000pt;}
.ws94{word-spacing:-3.790400pt;}
.ws34{word-spacing:-3.754667pt;}
.wsb1{word-spacing:-3.733333pt;}
.ws7a{word-spacing:-3.637333pt;}
.ws93{word-spacing:-3.602133pt;}
.ws95{word-spacing:-3.578667pt;}
.ws10d{word-spacing:-3.520000pt;}
.ws16{word-spacing:-3.461333pt;}
.wsbf{word-spacing:-3.413333pt;}
.ws8d{word-spacing:-3.402667pt;}
.ws85{word-spacing:-3.344000pt;}
.ws74{word-spacing:-3.226667pt;}
.ws3c{word-spacing:-3.109333pt;}
.ws39{word-spacing:-3.050667pt;}
.ws101{word-spacing:-2.933333pt;}
.ws8c{word-spacing:-2.816000pt;}
.ws82{word-spacing:-2.757333pt;}
.ws77{word-spacing:-2.698667pt;}
.wsc0{word-spacing:-2.666667pt;}
.ws9f{word-spacing:-2.640000pt;}
.ws96{word-spacing:-2.581333pt;}
.ws59{word-spacing:-2.522667pt;}
.ws50{word-spacing:-2.464000pt;}
.wsa4{word-spacing:-2.448000pt;}
.ws57{word-spacing:-2.405333pt;}
.ws28{word-spacing:-2.346667pt;}
.ws8f{word-spacing:-2.288000pt;}
.ws49{word-spacing:-2.170667pt;}
.wsf4{word-spacing:-2.133333pt;}
.ws1d{word-spacing:-2.112000pt;}
.ws73{word-spacing:-1.994667pt;}
.ws2{word-spacing:-1.973333pt;}
.ws4b{word-spacing:-1.877333pt;}
.wsa9{word-spacing:-1.872000pt;}
.wsbb{word-spacing:-1.866667pt;}
.ws1a{word-spacing:-1.818667pt;}
.ws3{word-spacing:-1.776000pt;}
.ws7d{word-spacing:-1.701333pt;}
.wsba{word-spacing:-1.600000pt;}
.ws1e{word-spacing:-1.584000pt;}
.ws12{word-spacing:-1.578667pt;}
.wsa5{word-spacing:-1.440000pt;}
.wsb3{word-spacing:-1.173333pt;}
.wsa3{word-spacing:-1.056000pt;}
.wsca{word-spacing:-0.960000pt;}
.ws4{word-spacing:-0.864000pt;}
.ws35{word-spacing:-0.768000pt;}
.wsdb{word-spacing:-0.533333pt;}
.wsa7{word-spacing:-0.240000pt;}
.ws102{word-spacing:-0.213333pt;}
.ws1{word-spacing:0.000000pt;}
.wsd2{word-spacing:0.053333pt;}
.wsfb{word-spacing:0.266667pt;}
.wse8{word-spacing:0.426667pt;}
.wse0{word-spacing:1.013333pt;}
.wsc1{word-spacing:1.173333pt;}
.wse3{word-spacing:1.280000pt;}
.wsc7{word-spacing:1.333333pt;}
.wsc6{word-spacing:1.386667pt;}
.ws10e{word-spacing:1.466667pt;}
.ws10b{word-spacing:1.584000pt;}
.wsf9{word-spacing:1.760000pt;}
.wse2{word-spacing:1.813333pt;}
.wsab{word-spacing:1.866667pt;}
.wscb{word-spacing:2.080000pt;}
.wsee{word-spacing:2.240000pt;}
.wscc{word-spacing:2.560000pt;}
.wsb4{word-spacing:2.720000pt;}
.wsdf{word-spacing:2.986667pt;}
.wsf1{word-spacing:3.040000pt;}
.wsc8{word-spacing:3.200000pt;}
.wse4{word-spacing:3.413333pt;}
.wsb2{word-spacing:3.466667pt;}
.wsf8{word-spacing:3.626667pt;}
.ws108{word-spacing:3.786667pt;}
.ws10a{word-spacing:3.936000pt;}
.wsb8{word-spacing:4.053333pt;}
.wsc4{word-spacing:4.480000pt;}
.wse5{word-spacing:4.586667pt;}
.wsff{word-spacing:4.693333pt;}
.wsf0{word-spacing:4.853333pt;}
.wsd9{word-spacing:4.960000pt;}
.ws109{word-spacing:5.440000pt;}
.wsad{word-spacing:5.653333pt;}
.wsd7{word-spacing:5.760000pt;}
.wsfe{word-spacing:5.920000pt;}
.wscf{word-spacing:6.133333pt;}
.wsea{word-spacing:6.240000pt;}
.wsb0{word-spacing:6.293333pt;}
.wsc2{word-spacing:6.400000pt;}
.ws107{word-spacing:6.560000pt;}
.wsfd{word-spacing:7.146667pt;}
.wsd3{word-spacing:7.253333pt;}
.wsf2{word-spacing:7.306667pt;}
.wsf7{word-spacing:7.573333pt;}
.ws104{word-spacing:7.680000pt;}
.wsa8{word-spacing:8.016000pt;}
.wsfc{word-spacing:8.106667pt;}
.wsbc{word-spacing:8.320000pt;}
.wse9{word-spacing:8.586667pt;}
.wsfa{word-spacing:8.640000pt;}
.wse6{word-spacing:8.693333pt;}
.wsaf{word-spacing:8.906667pt;}
.wsf5{word-spacing:9.226667pt;}
.wseb{word-spacing:9.386667pt;}
.wsb9{word-spacing:9.493333pt;}
.wsda{word-spacing:9.653333pt;}
.wse7{word-spacing:10.240000pt;}
.wsd1{word-spacing:10.346667pt;}
.wsde{word-spacing:10.613333pt;}
.ws103{word-spacing:11.413333pt;}
.wsf6{word-spacing:11.573333pt;}
.ws106{word-spacing:11.680000pt;}
.wsc5{word-spacing:12.213333pt;}
.wsd0{word-spacing:12.693333pt;}
.wsac{word-spacing:12.800000pt;}
.wsd4{word-spacing:12.906667pt;}
.wsbd{word-spacing:13.013333pt;}
.wsbe{word-spacing:13.333333pt;}
.wsa6{word-spacing:13.536000pt;}
.wse1{word-spacing:13.653333pt;}
.wsef{word-spacing:14.080000pt;}
.wsb7{word-spacing:14.133333pt;}
.ws105{word-spacing:14.240000pt;}
.wsd5{word-spacing:14.400000pt;}
.wscd{word-spacing:14.933333pt;}
.wsdd{word-spacing:15.733333pt;}
.wsd8{word-spacing:17.066667pt;}
.wsc9{word-spacing:17.280000pt;}
.wsce{word-spacing:17.813333pt;}
.wsed{word-spacing:18.186667pt;}
.ws8{word-spacing:18.288000pt;}
.wsec{word-spacing:18.613333pt;}
.wsb5{word-spacing:20.906667pt;}
.wsd6{word-spacing:21.173333pt;}
.wsc3{word-spacing:24.320000pt;}
.ws9{word-spacing:36.975467pt;}
.wsa{word-spacing:37.007467pt;}
.wsae{word-spacing:59.230933pt;}
.ws1f{word-spacing:72.015467pt;}
.ws89{word-spacing:82.270933pt;}
.ws5{word-spacing:90.567467pt;}
.ws80{word-spacing:95.327467pt;}
._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;}
._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;}
._51{width:4.178667pt;}
._4e{width:5.081067pt;}
._4c{width:6.156800pt;}
._47{width:7.584000pt;}
._46{width:9.326400pt;}
._4f{width:10.335467pt;}
._50{width:12.448000pt;}
._5c{width:14.876267pt;}
._45{width:18.305067pt;}
._5a{width:19.320533pt;}
._5b{width:20.309867pt;}
._5d{width:25.405867pt;}
._59{width:52.451200pt;}
._4d{width:205.854400pt;}
._55{width:690.389333pt;}
._52{width:814.795733pt;}
._53{width:1007.909333pt;}
._57{width:1047.845333pt;}
._58{width:1061.237333pt;}
._54{width:1165.253333pt;}
._56{width:1183.973333pt;}
.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;}
.fsc{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;}
.y1b7{bottom:96.950800pt;}
.y1b6{bottom:109.750800pt;}
.y61{bottom:112.721600pt;}
.y35{bottom:113.385733pt;}
.y5d{bottom:113.385867pt;}
.y14b{bottom:114.550800pt;}
.y16e{bottom:115.571333pt;}
.y24d{bottom:117.031067pt;}
.y6c{bottom:119.196533pt;}
.y27b{bottom:121.188400pt;}
.y240{bottom:126.765467pt;}
.y60{bottom:127.121600pt;}
.y14a{bottom:127.350800pt;}
.y1db{bottom:127.874133pt;}
.y16d{bottom:128.371200pt;}
.y34{bottom:130.498667pt;}
.y15d{bottom:131.130267pt;}
.y5c{bottom:131.565333pt;}
.y11c{bottom:132.150800pt;}
.y109{bottom:133.171333pt;}
.y19e{bottom:134.191733pt;}
.y20e{bottom:134.324400pt;}
.y6b{bottom:135.196533pt;}
.y27a{bottom:137.188400pt;}
.y5f{bottom:141.521600pt;}
.y15c{bottom:143.930400pt;}
.y23f{bottom:144.098800pt;}
.y11b{bottom:144.950800pt;}
.y1da{bottom:145.207467pt;}
.y108{bottom:145.971333pt;}
.y19d{bottom:146.991733pt;}
.y33{bottom:147.611467pt;}
.y13b{bottom:148.730267pt;}
.y5b{bottom:149.744933pt;}
.y1a9{bottom:149.750800pt;}
.y6a{bottom:151.196533pt;}
.y20d{bottom:151.657733pt;}
.y279{bottom:153.188400pt;}
.yd4{bottom:155.470533pt;}
.y5e{bottom:155.921600pt;}
.y23e{bottom:161.432133pt;}
.y13a{bottom:161.530400pt;}
.y1d9{bottom:162.540800pt;}
.y11a{bottom:162.550800pt;}
.y19c{bottom:164.591733pt;}
.y32{bottom:164.724400pt;}
.y149{bottom:166.330267pt;}
.y69{bottom:167.196533pt;}
.y107{bottom:167.350800pt;}
.y5a{bottom:167.924400pt;}
.yd3{bottom:168.270533pt;}
.y20c{bottom:168.991067pt;}
.y278{bottom:169.188400pt;}
.y23d{bottom:178.765467pt;}
.y139{bottom:179.130267pt;}
.y106{bottom:180.150800pt;}
.y31{bottom:181.837200pt;}
.y15b{bottom:182.909867pt;}
.y68{bottom:183.196533pt;}
.y1b3{bottom:183.930400pt;}
.y277{bottom:185.188400pt;}
.yd2{bottom:185.870533pt;}
.y19b{bottom:185.971333pt;}
.y59{bottom:186.103867pt;}
.ya1{bottom:186.228933pt;}
.y20b{bottom:186.324400pt;}
.y1d8{bottom:187.433200pt;}
.y15a{bottom:195.709867pt;}
.y23c{bottom:196.098800pt;}
.y148{bottom:196.730267pt;}
.y16c{bottom:197.750800pt;}
.y19a{bottom:198.771200pt;}
.y30{bottom:198.950133pt;}
.y67{bottom:199.196533pt;}
.y138{bottom:200.509867pt;}
.y276{bottom:201.188400pt;}
.y105{bottom:201.530400pt;}
.y20a{bottom:203.657733pt;}
.y58{bottom:204.283467pt;}
.ya0{bottom:204.408533pt;}
.yd1{bottom:207.250133pt;}
.y137{bottom:213.309867pt;}
.y23b{bottom:213.432133pt;}
.y104{bottom:214.330267pt;}
.y66{bottom:215.196533pt;}
.y2f{bottom:216.062933pt;}
.y275{bottom:217.188400pt;}
.y147{bottom:218.109867pt;}
.y16b{bottom:219.130267pt;}
.yd0{bottom:220.050000pt;}
.y199{bottom:220.150800pt;}
.y209{bottom:220.991067pt;}
.y57{bottom:222.462933pt;}
.y9f{bottom:222.588000pt;}
.y1d7{bottom:225.215600pt;}
.y28d{bottom:225.649733pt;}
.y23a{bottom:230.765467pt;}
.y146{bottom:230.909867pt;}
.y65{bottom:231.196533pt;}
.y119{bottom:231.930400pt;}
.y198{bottom:232.950800pt;}
.y2e{bottom:233.175733pt;}
.y274{bottom:233.188400pt;}
.y136{bottom:234.689333pt;}
.y103{bottom:235.709867pt;}
.ycf{bottom:237.650000pt;}
.y208{bottom:238.324400pt;}
.y56{bottom:240.642533pt;}
.y9e{bottom:240.767600pt;}
.y28c{bottom:241.649733pt;}
.y1d6{bottom:243.882267pt;}
.y135{bottom:247.489333pt;}
.y239{bottom:248.098800pt;}
.y102{bottom:248.509867pt;}
.y273{bottom:249.188400pt;}
.y2d{bottom:250.288667pt;}
.y197{bottom:250.550800pt;}
.y1b5{bottom:252.289333pt;}
.y118{bottom:253.309867pt;}
.y64{bottom:254.755600pt;}
.y207{bottom:255.657733pt;}
.y55{bottom:258.822000pt;}
.y9d{bottom:258.947067pt;}
.yce{bottom:259.029600pt;}
.y1d5{bottom:262.548933pt;}
.y134{bottom:265.089333pt;}
.y272{bottom:265.188400pt;}
.y238{bottom:265.432133pt;}
.y101{bottom:266.109867pt;}
.y2c{bottom:267.401467pt;}
.y145{bottom:269.889467pt;}
.y63{bottom:270.755600pt;}
.y2a3{bottom:271.760000pt;}
.ycd{bottom:271.829600pt;}
.y196{bottom:271.930400pt;}
.y206{bottom:272.991067pt;}
.y54{bottom:277.001600pt;}
.y9c{bottom:277.126533pt;}
.y271{bottom:281.188400pt;}
.y144{bottom:282.689333pt;}
.y237{bottom:282.765467pt;}
.y117{bottom:283.709867pt;}
.y2b{bottom:284.514400pt;}
.y195{bottom:284.730267pt;}
.y133{bottom:286.468933pt;}
.y100{bottom:287.489333pt;}
.y1d4{bottom:288.774667pt;}
.y2a2{bottom:289.360000pt;}
.ycc{bottom:289.429600pt;}
.y205{bottom:290.324400pt;}
.y62{bottom:294.314667pt;}
.y53{bottom:295.181067pt;}
.y9b{bottom:295.306133pt;}
.y270{bottom:297.188400pt;}
.y132{bottom:299.268933pt;}
.y236{bottom:300.098800pt;}
.yff{bottom:300.289333pt;}
.y2a{bottom:301.627200pt;}
.y194{bottom:302.330267pt;}
.y1b4{bottom:304.068933pt;}
.y116{bottom:305.089333pt;}
.y2a1{bottom:306.960000pt;}
.y1d3{bottom:307.441333pt;}
.y204{bottom:307.657733pt;}
.ycb{bottom:310.809067pt;}
.y26f{bottom:313.188400pt;}
.y52{bottom:313.360533pt;}
.y9a{bottom:313.485600pt;}
.y159{bottom:316.868933pt;}
.y235{bottom:317.432133pt;}
.yfe{bottom:317.889467pt;}
.y29{bottom:318.740133pt;}
.y131{bottom:320.648400pt;}
.y143{bottom:321.668933pt;}
.yca{bottom:323.609067pt;}
.y193{bottom:323.709867pt;}
.y2a0{bottom:324.560000pt;}
.y203{bottom:324.991067pt;}
.y1d2{bottom:326.108000pt;}
.y26e{bottom:329.188400pt;}
.y51{bottom:331.540133pt;}
.y99{bottom:331.665200pt;}
.y130{bottom:333.448400pt;}
.y142{bottom:334.468933pt;}
.y234{bottom:334.765467pt;}
.y115{bottom:335.489333pt;}
.y28{bottom:335.852933pt;}
.y192{bottom:336.509867pt;}
.y158{bottom:338.248400pt;}
.yfd{bottom:339.268933pt;}
.y29f{bottom:342.160000pt;}
.y202{bottom:342.324400pt;}
.yc9{bottom:344.988667pt;}
.y26d{bottom:345.188400pt;}
.y50{bottom:349.719600pt;}
.y98{bottom:349.844667pt;}
.y12f{bottom:351.048400pt;}
.yfc{bottom:352.068933pt;}
.y233{bottom:352.098800pt;}
.y27{bottom:352.965867pt;}
.y191{bottom:354.109867pt;}
.y1d1{bottom:354.409333pt;}
.y114{bottom:356.868933pt;}
.yc8{bottom:357.788667pt;}
.y201{bottom:359.657733pt;}
.y26c{bottom:361.188400pt;}
.y4f{bottom:367.899200pt;}
.y97{bottom:368.024267pt;}
.y157{bottom:368.648400pt;}
.y232{bottom:369.432133pt;}
.y113{bottom:369.668933pt;}
.y26{bottom:370.078667pt;}
.y12e{bottom:372.428000pt;}
.y1d0{bottom:373.076000pt;}
.yfb{bottom:373.448400pt;}
.yc7{bottom:375.388667pt;}
.y190{bottom:375.489333pt;}
.y200{bottom:376.991067pt;}
.y26b{bottom:377.188400pt;}
.y298{bottom:384.040267pt;}
.y12d{bottom:385.228000pt;}
.y4e{bottom:386.078667pt;}
.y96{bottom:386.203733pt;}
.yfa{bottom:386.248400pt;}
.y231{bottom:386.765467pt;}
.y25{bottom:387.191467pt;}
.y16a{bottom:387.268933pt;}
.y18f{bottom:388.289333pt;}
.y156{bottom:390.028000pt;}
.y112{bottom:391.048400pt;}
.y1cf{bottom:391.742667pt;}
.y26a{bottom:393.188400pt;}
.y1ff{bottom:394.324400pt;}
.yc6{bottom:396.768133pt;}
.y297{bottom:401.640267pt;}
.y12c{bottom:402.828000pt;}
.yf9{bottom:403.848400pt;}
.y230{bottom:404.098800pt;}
.y4d{bottom:404.258267pt;}
.y24{bottom:404.304400pt;}
.y95{bottom:404.383333pt;}
.y1b2{bottom:407.628000pt;}
.y169{bottom:408.648400pt;}
.y269{bottom:409.188400pt;}
.yc5{bottom:409.568133pt;}
.y18e{bottom:409.668933pt;}
.y1fe{bottom:411.657733pt;}
.y1ce{bottom:417.968400pt;}
.y296{bottom:419.240267pt;}
.y155{bottom:420.428000pt;}
.y23{bottom:421.417333pt;}
.y22f{bottom:421.432133pt;}
.y168{bottom:421.448400pt;}
.y4c{bottom:422.437733pt;}
.y18d{bottom:422.468933pt;}
.y94{bottom:422.562800pt;}
.y12b{bottom:424.207467pt;}
.y268{bottom:425.188400pt;}
.yf8{bottom:425.228000pt;}
.yc4{bottom:427.168267pt;}
.y1fd{bottom:428.991067pt;}
.y1cd{bottom:436.635067pt;}
.y12a{bottom:437.007467pt;}
.yf7{bottom:438.028000pt;}
.y22{bottom:438.530133pt;}
.y22e{bottom:438.765467pt;}
.y18c{bottom:440.068933pt;}
.y4b{bottom:440.617333pt;}
.y93{bottom:440.742400pt;}
.y267{bottom:441.188400pt;}
.y154{bottom:441.807467pt;}
.y167{bottom:442.828000pt;}
.y1fc{bottom:446.324400pt;}
.yc3{bottom:448.547733pt;}
.y129{bottom:454.607467pt;}
.y1cc{bottom:455.301733pt;}
.y166{bottom:455.628000pt;}
.y21{bottom:455.642933pt;}
.y22d{bottom:456.098800pt;}
.y266{bottom:457.188400pt;}
.y4a{bottom:458.796800pt;}
.y92{bottom:458.921867pt;}
.yf6{bottom:459.407467pt;}
.y29e{bottom:461.120667pt;}
.yc2{bottom:461.347733pt;}
.y18b{bottom:461.448400pt;}
.y1fb{bottom:463.657733pt;}
.yf5{bottom:472.207467pt;}
.y20{bottom:472.755867pt;}
.y265{bottom:473.188400pt;}
.y165{bottom:473.228000pt;}
.y22c{bottom:473.432133pt;}
.y18a{bottom:474.248400pt;}
.y128{bottom:475.987067pt;}
.y49{bottom:476.976400pt;}
.y1b8{bottom:477.007467pt;}
.y91{bottom:477.101333pt;}
.y29d{bottom:478.720667pt;}
.yc1{bottom:478.947733pt;}
.y1fa{bottom:480.991067pt;}
.y1cb{bottom:482.912533pt;}
.y127{bottom:488.787067pt;}
.yf4{bottom:489.807467pt;}
.y1f{bottom:489.868800pt;}
.y22b{bottom:490.765467pt;}
.y153{bottom:493.587067pt;}
.y164{bottom:494.607467pt;}
.y48{bottom:495.155867pt;}
.y189{bottom:495.628000pt;}
.y29c{bottom:496.320533pt;}
.y264{bottom:496.747467pt;}
.y1f9{bottom:498.324400pt;}
.yc0{bottom:500.327333pt;}
.y1ca{bottom:501.579200pt;}
.y24c{bottom:506.266933pt;}
.y126{bottom:506.387067pt;}
.y1e{bottom:506.981600pt;}
.y163{bottom:507.407467pt;}
.y22a{bottom:508.098800pt;}
.y188{bottom:508.428000pt;}
.yf3{bottom:511.187067pt;}
.ybf{bottom:513.127200pt;}
.y47{bottom:513.335467pt;}
.y29b{bottom:513.920667pt;}
.y1f8{bottom:515.657733pt;}
.y90{bottom:516.103600pt;}
.y24b{bottom:522.266933pt;}
.yf2{bottom:523.987067pt;}
.y1d{bottom:524.094400pt;}
.y1a8{bottom:525.007467pt;}
.y229{bottom:525.432133pt;}
.y187{bottom:526.028000pt;}
.y125{bottom:527.766533pt;}
.y1c9{bottom:527.804933pt;}
.y162{bottom:528.787067pt;}
.ybe{bottom:530.727200pt;}
.y8f{bottom:530.770267pt;}
.y46{bottom:531.514933pt;}
.y29a{bottom:531.520533pt;}
.y263{bottom:531.947467pt;}
.y1f7{bottom:532.991067pt;}
.y24a{bottom:538.266933pt;}
.y124{bottom:540.566533pt;}
.y1c{bottom:541.207333pt;}
.yf1{bottom:541.587067pt;}
.y228{bottom:542.765467pt;}
.y152{bottom:545.366533pt;}
.y8e{bottom:545.436933pt;}
.y1a7{bottom:546.387067pt;}
.y1c8{bottom:546.471600pt;}
.y186{bottom:547.407467pt;}
.y262{bottom:547.947467pt;}
.y299{bottom:549.120667pt;}
.y45{bottom:549.694400pt;}
.y1f6{bottom:550.324400pt;}
.ybd{bottom:552.106800pt;}
.y249{bottom:554.266933pt;}
.y123{bottom:558.166533pt;}
.y1b{bottom:558.320133pt;}
.y161{bottom:559.187067pt;}
.y227{bottom:560.098800pt;}
.y8d{bottom:560.103600pt;}
.y185{bottom:560.207467pt;}
.yf0{bottom:562.966533pt;}
.y261{bottom:563.947467pt;}
.ybc{bottom:564.906800pt;}
.y1c7{bottom:565.138267pt;}
.y1f5{bottom:567.657733pt;}
.y44{bottom:567.874000pt;}
.y248{bottom:570.266933pt;}
.y8c{bottom:574.770267pt;}
.y1a{bottom:575.433067pt;}
.yef{bottom:575.766533pt;}
.y1a6{bottom:576.787067pt;}
.y226{bottom:577.432133pt;}
.y260{bottom:579.947467pt;}
.y160{bottom:580.566533pt;}
.y184{bottom:581.587067pt;}
.ybb{bottom:582.506800pt;}
.y43{bottom:586.053467pt;}
.y247{bottom:586.266933pt;}
.y8b{bottom:589.436933pt;}
.y19{bottom:592.545867pt;}
.y1f4{bottom:592.550133pt;}
.yee{bottom:593.366533pt;}
.y183{bottom:594.387067pt;}
.y225{bottom:594.765467pt;}
.y122{bottom:597.146133pt;}
.y1a5{bottom:598.166533pt;}
.y246{bottom:602.266933pt;}
.y295{bottom:602.624400pt;}
.yba{bottom:603.886267pt;}
.y8a{bottom:604.103600pt;}
.y42{bottom:604.233067pt;}
.y18{bottom:609.658667pt;}
.y121{bottom:609.946133pt;}
.y15f{bottom:610.966533pt;}
.y182{bottom:611.987067pt;}
.y224{bottom:612.098800pt;}
.yed{bottom:614.746000pt;}
.yb9{bottom:616.686267pt;}
.y245{bottom:618.266933pt;}
.y25f{bottom:618.670000pt;}
.y89{bottom:618.770267pt;}
.y294{bottom:620.224400pt;}
.y41{bottom:622.412533pt;}
.y17{bottom:626.771600pt;}
.y1f3{bottom:627.216800pt;}
.yec{bottom:627.546000pt;}
.y1a4{bottom:628.566533pt;}
.y223{bottom:629.432133pt;}
.y1b1{bottom:631.325600pt;}
.y15e{bottom:632.346133pt;}
.y181{bottom:633.366533pt;}
.y88{bottom:633.436933pt;}
.y244{bottom:634.266933pt;}
.yb8{bottom:634.286267pt;}
.y1c6{bottom:636.300000pt;}
.y293{bottom:637.824400pt;}
.y40{bottom:640.592133pt;}
.y16{bottom:643.884400pt;}
.y1b0{bottom:644.125600pt;}
.y1f2{bottom:644.550133pt;}
.yeb{bottom:645.146133pt;}
.y180{bottom:646.166533pt;}
.y222{bottom:646.765467pt;}
.y87{bottom:648.103600pt;}
.y120{bottom:648.925600pt;}
.y1a3{bottom:649.946133pt;}
.y25e{bottom:650.184667pt;}
.y243{bottom:650.266933pt;}
.y1c5{bottom:653.900000pt;}
.y292{bottom:655.424400pt;}
.yb7{bottom:655.665867pt;}
.y3f{bottom:658.771600pt;}
.y15{bottom:660.997333pt;}
.y11f{bottom:661.725600pt;}
.y1f1{bottom:661.883467pt;}
.y1a2{bottom:662.746000pt;}
.y86{bottom:662.770267pt;}
.y221{bottom:664.098800pt;}
.y242{bottom:666.266933pt;}
.yea{bottom:666.525600pt;}
.y17f{bottom:667.546000pt;}
.yb6{bottom:668.465867pt;}
.y2{bottom:670.995467pt;}
.y4{bottom:671.165333pt;}
.y1c4{bottom:671.500000pt;}
.y3e{bottom:676.951200pt;}
.y85{bottom:677.436933pt;}
.y14{bottom:678.110133pt;}
.y1f0{bottom:679.216800pt;}
.ye9{bottom:679.325600pt;}
.y17e{bottom:680.346133pt;}
.y28e{bottom:681.389600pt;}
.y220{bottom:681.432133pt;}
.y25d{bottom:681.699333pt;}
.y1af{bottom:683.105200pt;}
.y1c3{bottom:689.100000pt;}
.yb5{bottom:689.845333pt;}
.y84{bottom:692.103600pt;}
.y3d{bottom:695.130667pt;}
.y13{bottom:695.223067pt;}
.y1ae{bottom:695.905067pt;}
.y1ef{bottom:696.550133pt;}
.ye8{bottom:696.925600pt;}
.y17d{bottom:697.946000pt;}
.y241{bottom:698.266933pt;}
.y11e{bottom:700.705067pt;}
.y1a1{bottom:701.725600pt;}
.yb4{bottom:702.645333pt;}
.y21f{bottom:706.324400pt;}
.y1c2{bottom:706.700000pt;}
.y83{bottom:706.770267pt;}
.y12{bottom:712.336000pt;}
.y25c{bottom:713.214000pt;}
.y3c{bottom:713.310267pt;}
.y11d{bottom:713.505067pt;}
.y1ee{bottom:713.883467pt;}
.y1a0{bottom:714.525600pt;}
.y291{bottom:715.935733pt;}
.ye7{bottom:718.305200pt;}
.y17c{bottom:719.325600pt;}
.y82{bottom:721.436933pt;}
.yb3{bottom:724.024933pt;}
.y11{bottom:729.448800pt;}
.ye6{bottom:731.105200pt;}
.y1ed{bottom:731.216800pt;}
.y3b{bottom:731.489733pt;}
.y17b{bottom:732.125600pt;}
.y1ad{bottom:734.884667pt;}
.y19f{bottom:735.905067pt;}
.y81{bottom:736.103600pt;}
.yb2{bottom:736.824933pt;}
.y21e{bottom:740.991067pt;}
.y290{bottom:742.694933pt;}
.y25b{bottom:744.728667pt;}
.y10{bottom:746.561733pt;}
.y1ac{bottom:747.684667pt;}
.y1ec{bottom:748.550133pt;}
.y111{bottom:748.705067pt;}
.y3a{bottom:749.669333pt;}
.y80{bottom:750.770267pt;}
.ye5{bottom:752.484667pt;}
.y17a{bottom:753.505067pt;}
.yb1{bottom:758.204400pt;}
.y21d{bottom:758.324400pt;}
.y1c1{bottom:759.500000pt;}
.yf{bottom:763.674533pt;}
.ye4{bottom:765.284667pt;}
.y7f{bottom:765.436933pt;}
.y1eb{bottom:765.883467pt;}
.y179{bottom:766.305200pt;}
.y39{bottom:767.848800pt;}
.y28f{bottom:769.454000pt;}
.y110{bottom:770.084667pt;}
.yb0{bottom:771.004400pt;}
.y25a{bottom:776.243333pt;}
.y1c0{bottom:777.100000pt;}
.ye3{bottom:782.884667pt;}
.y1ea{bottom:783.216800pt;}
.y21c{bottom:783.216933pt;}
.y178{bottom:783.905067pt;}
.y38{bottom:786.028267pt;}
.y1ab{bottom:786.664267pt;}
.yaf{bottom:788.604400pt;}
.y1bf{bottom:794.700000pt;}
.y1aa{bottom:799.464133pt;}
.y151{bottom:800.484667pt;}
.y1e9{bottom:800.550133pt;}
.y7e{bottom:800.633733pt;}
.yc{bottom:803.504933pt;}
.y37{bottom:804.207867pt;}
.ye2{bottom:804.264133pt;}
.y177{bottom:805.284667pt;}
.y259{bottom:807.758000pt;}
.yae{bottom:809.984000pt;}
.y28b{bottom:810.854133pt;}
.y1be{bottom:812.300000pt;}
.y7d{bottom:815.300400pt;}
.ye1{bottom:817.064267pt;}
.y1e8{bottom:817.883467pt;}
.y21b{bottom:817.883600pt;}
.y176{bottom:818.084667pt;}
.yb{bottom:819.504933pt;}
.y150{bottom:821.864133pt;}
.yad{bottom:822.784000pt;}
.y28a{bottom:825.254133pt;}
.y1bd{bottom:829.900000pt;}
.y7c{bottom:829.967067pt;}
.y258{bottom:833.883600pt;}
.y10f{bottom:834.664267pt;}
.y1e7{bottom:835.216800pt;}
.y21a{bottom:835.216933pt;}
.ye0{bottom:838.443733pt;}
.y175{bottom:839.464133pt;}
.y289{bottom:839.654133pt;}
.ya{bottom:843.063867pt;}
.yac{bottom:844.163467pt;}
.y7b{bottom:844.633733pt;}
.ydf{bottom:851.243733pt;}
.y174{bottom:852.264133pt;}
.y14f{bottom:852.264267pt;}
.y1e6{bottom:852.550133pt;}
.y219{bottom:852.550267pt;}
.y288{bottom:854.054133pt;}
.y10e{bottom:856.043733pt;}
.yab{bottom:856.963467pt;}
.y9{bottom:859.063867pt;}
.y7a{bottom:859.300400pt;}
.y257{bottom:865.883600pt;}
.y287{bottom:868.454133pt;}
.yde{bottom:868.843733pt;}
.y1e5{bottom:869.883467pt;}
.y218{bottom:869.883600pt;}
.y14e{bottom:873.643733pt;}
.y79{bottom:873.967067pt;}
.yaa{bottom:874.563467pt;}
.ye{bottom:877.481467pt;}
.y256{bottom:881.883600pt;}
.y8{bottom:882.622933pt;}
.y286{bottom:882.854133pt;}
.y10d{bottom:886.443733pt;}
.y1e4{bottom:887.216800pt;}
.y217{bottom:887.216933pt;}
.y78{bottom:888.633733pt;}
.ydd{bottom:890.223200pt;}
.y1bc{bottom:895.499867pt;}
.ya9{bottom:895.943067pt;}
.yd{bottom:896.681600pt;}
.y285{bottom:897.254133pt;}
.y255{bottom:897.883600pt;}
.y7{bottom:898.622933pt;}
.ydc{bottom:903.023333pt;}
.y77{bottom:903.300400pt;}
.y173{bottom:904.043733pt;}
.y1e3{bottom:904.550133pt;}
.y216{bottom:904.550267pt;}
.y10c{bottom:907.823200pt;}
.y141{bottom:907.823333pt;}
.ya8{bottom:908.743067pt;}
.y284{bottom:911.654133pt;}
.y254{bottom:913.883600pt;}
.y76{bottom:917.967067pt;}
.ydb{bottom:920.623200pt;}
.y140{bottom:920.623333pt;}
.y1e2{bottom:921.883467pt;}
.y215{bottom:921.883600pt;}
.y172{bottom:925.423200pt;}
.y283{bottom:926.054133pt;}
.y253{bottom:929.883600pt;}
.ya7{bottom:930.122533pt;}
.y75{bottom:932.633733pt;}
.y1bb{bottom:933.900000pt;}
.y10b{bottom:938.223200pt;}
.y13f{bottom:938.223333pt;}
.y1e1{bottom:939.216800pt;}
.y214{bottom:939.216933pt;}
.y282{bottom:940.454133pt;}
.yda{bottom:942.002800pt;}
.ya6{bottom:942.922533pt;}
.y252{bottom:945.883600pt;}
.y74{bottom:947.300400pt;}
.yd9{bottom:954.802800pt;}
.y281{bottom:954.854133pt;}
.y171{bottom:955.823200pt;}
.y1e0{bottom:956.550133pt;}
.y213{bottom:956.550267pt;}
.y10a{bottom:959.602800pt;}
.y251{bottom:961.883600pt;}
.y73{bottom:961.967067pt;}
.y280{bottom:969.254133pt;}
.y1ba{bottom:972.300000pt;}
.yd8{bottom:972.402800pt;}
.y1df{bottom:973.883467pt;}
.y212{bottom:973.883600pt;}
.y72{bottom:976.633733pt;}
.y170{bottom:977.202800pt;}
.y250{bottom:977.883600pt;}
.y27f{bottom:983.654133pt;}
.ya5{bottom:985.809333pt;}
.y14d{bottom:990.002800pt;}
.y1de{bottom:991.216800pt;}
.y211{bottom:991.216933pt;}
.y71{bottom:991.300400pt;}
.yd7{bottom:993.782267pt;}
.y13e{bottom:993.782400pt;}
.y24f{bottom:993.883600pt;}
.y27e{bottom:998.054133pt;}
.y70{bottom:1005.967067pt;}
.yd6{bottom:1006.582267pt;}
.y13d{bottom:1006.582400pt;}
.y1dd{bottom:1008.550133pt;}
.y210{bottom:1008.550267pt;}
.y24e{bottom:1009.883600pt;}
.y1b9{bottom:1010.700000pt;}
.y16f{bottom:1011.382267pt;}
.y14c{bottom:1011.382400pt;}
.y27d{bottom:1012.454133pt;}
.y6f{bottom:1020.633733pt;}
.yd5{bottom:1024.182267pt;}
.y13c{bottom:1024.182400pt;}
.y1dc{bottom:1025.883467pt;}
.y20f{bottom:1025.883600pt;}
.y27c{bottom:1026.854133pt;}
.y6e{bottom:1035.300400pt;}
.y6d{bottom:1049.967067pt;}
.ya3{bottom:1068.009867pt;}
.ya4{bottom:1069.353600pt;}
.h16{height:31.062500pt;}
.h18{height:31.250000pt;}
.h7{height:34.944000pt;}
.hb{height:34.945312pt;}
.hc{height:34.992188pt;}
.h6{height:35.088000pt;}
.hd{height:35.156250pt;}
.he{height:36.848000pt;}
.h20{height:37.838542pt;}
.h8{height:38.828125pt;}
.h1d{height:38.880208pt;}
.h9{height:39.062500pt;}
.h15{height:41.622396pt;}
.hf{height:42.539062pt;}
.h1c{height:42.710938pt;}
.h10{height:42.768229pt;}
.h1f{height:45.406250pt;}
.h21{height:46.197917pt;}
.ha{height:46.593750pt;}
.h23{height:46.656250pt;}
.h13{height:46.720000pt;}
.h1e{height:47.265625pt;}
.h17{height:50.817708pt;}
.h11{height:51.992188pt;}
.h22{height:75.687500pt;}
.h1a{height:90.812500pt;}
.h1b{height:110.875000pt;}
.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;}
.x1c{left:64.690533pt;}
.x19{left:73.091200pt;}
.x5{left:86.173200pt;}
.x21{left:88.448533pt;}
.xa{left:92.976400pt;}
.x15{left:94.488133pt;}
.x4{left:96.332533pt;}
.x1b{left:98.267733pt;}
.x23{left:105.175333pt;}
.x24{left:108.526933pt;}
.x2d{left:109.963467pt;}
.x2c{left:110.872933pt;}
.x22{left:113.385867pt;}
.x29{left:118.678933pt;}
.x2a{left:120.315333pt;}
.x1e{left:124.724400pt;}
.x3{left:126.549600pt;}
.x2f{left:175.824133pt;}
.x1d{left:185.196800pt;}
.x1a{left:191.125333pt;}
.x34{left:202.611333pt;}
.x2e{left:205.968267pt;}
.x35{left:215.251200pt;}
.x33{left:220.808533pt;}
.x36{left:227.726533pt;}
.x18{left:249.448800pt;}
.x25{left:254.463467pt;}
.x2b{left:292.695200pt;}
.x30{left:306.672933pt;}
.x26{left:327.197867pt;}
.x28{left:343.510400pt;}
.x31{left:346.190533pt;}
.x32{left:354.890400pt;}
.x27{left:410.418400pt;}
.x8{left:455.089867pt;}
.xf{left:517.136400pt;}
.xb{left:530.433867pt;}
.x13{left:532.601600pt;}
.x6{left:534.587733pt;}
.xe{left:537.915333pt;}
.x11{left:543.225600pt;}
.x10{left:544.851200pt;}
.xc{left:548.657600pt;}
.xd{left:563.592800pt;}
.x12{left:580.300400pt;}
.x14{left:583.154267pt;}
.x20{left:587.862800pt;}
.x7{left:592.712667pt;}
.x1{left:627.488133pt;}
.x1f{left:686.927733pt;}
.x17{left:689.807733pt;}
.x16{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; }
  