
    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_922d37276684cb154cfd31f3.woff')format("woff");}.ff1{font-family:ff1;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_d272d27776cf49b2ebd82590.woff')format("woff");}.ff2{font-family:ff2;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_d2068050af95b174655797a0.woff')format("woff");}.ff3{font-family:ff3;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_b719209ff3a7bd7982312404.woff')format("woff");}.ff4{font-family:ff4;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_0113479daa0d302a79ea5e10.woff')format("woff");}.ff5{font-family:ff5;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_24d5783ff48c724af41e8204.woff')format("woff");}.ff6{font-family:ff6;line-height:1.402354;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_324809418cb378e13fe461d8.woff')format("woff");}.ff7{font-family:ff7;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_89c4125d371dbda516a02aa8.woff')format("woff");}.ff8{font-family:ff8;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_276d56bd8b0d6a389bef01ac.woff')format("woff");}.ff9{font-family:ff9;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_d59b1d54d066bc8e237f2b93.woff')format("woff");}.ffa{font-family:ffa;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_17d76426a74605fe7f5b0534.woff')format("woff");}.ffb{font-family:ffb;line-height:1.402354;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_925ab8590810548ae813ca32.woff')format("woff");}.ffc{font-family:ffc;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_4fdb07d7ba7be39e7ff5d407.woff')format("woff");}.ffd{font-family:ffd;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_a4ee286c808264ac6bb12161.woff')format("woff");}.ffe{font-family:ffe;line-height:1.402354;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_2c8bae276c7204a7b5aebfdd.woff')format("woff");}.fff{font-family:fff;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_f724ce6889b088685e0bbcd2.woff')format("woff");}.ff10{font-family:ff10;line-height:1.402354;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_6671b27111d6114f2d0e6e31.woff')format("woff");}.ff11{font-family:ff11;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_783bdef62be5262609050476.woff')format("woff");}.ff12{font-family:ff12;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_0b16ebd299870a441d0562fa.woff')format("woff");}.ff13{font-family:ff13;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_4bf22157900460f0da461dbc.woff')format("woff");}.ff14{font-family:ff14;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_51deda7299248a20ab80cace.woff')format("woff");}.ff15{font-family:ff15;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_dd20609b4a4d36cc537b7f20.woff')format("woff");}.ff16{font-family:ff16;line-height:1.372070;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_11e9225a8fa74d752fd9e665.woff')format("woff");}.ff17{font-family:ff17;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url('chunks/assets/font_5a64bcec8cb3126d9571d6ad.woff')format("woff");}.ff18{font-family:ff18;line-height:1.402354;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_844e88d59d98928841d231f3.woff')format("woff");}.ff19{font-family:ff19;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a;src:url('chunks/assets/font_92389e94d71cfa6143e2f0dc.woff')format("woff");}.ff1a{font-family:ff1a;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b;src:url('chunks/assets/font_4a5cc826828f2673d664f8b8.woff')format("woff");}.ff1b{font-family:ff1b;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c;src:url('chunks/assets/font_cdbbd00ecf64c86826d0c10b.woff')format("woff");}.ff1c{font-family:ff1c;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1d;src:url('chunks/assets/font_cdf753d529b6dd78d0eaa663.woff')format("woff");}.ff1d{font-family:ff1d;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1e;src:url('chunks/assets/font_62e96438a2a4e87ed5e6faa3.woff')format("woff");}.ff1e{font-family:ff1e;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1f;src:url('chunks/assets/font_1432ab6472b70cabe89abb18.woff')format("woff");}.ff1f{font-family:ff1f;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff20;src:url('chunks/assets/font_fafce584324d288a9a79588a.woff')format("woff");}.ff20{font-family:ff20;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff21;src:url('chunks/assets/font_f2974c09a8b2a342099bb6ff.woff')format("woff");}.ff21{font-family:ff21;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff22;src:url('chunks/assets/font_f893185710222f149e7a083d.woff')format("woff");}.ff22{font-family:ff22;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff23;src:url('chunks/assets/font_6b07de8bb87151450ef5c5c9.woff')format("woff");}.ff23{font-family:ff23;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff24;src:url('chunks/assets/font_b285c739090206a6eea9eb96.woff')format("woff");}.ff24{font-family:ff24;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff25;src:url('chunks/assets/font_84a52b4577adaac53662717d.woff')format("woff");}.ff25{font-family:ff25;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff26;src:url('chunks/assets/font_806a607713282dba6f17c85d.woff')format("woff");}.ff26{font-family:ff26;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff27;src:url('chunks/assets/font_102c0e59fc0336a7355ab1de.woff')format("woff");}.ff27{font-family:ff27;line-height:1.402354;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_33c32e3d24c3dec3a54db458.woff')format("woff");}.ff28{font-family:ff28;line-height:1.402354;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_9ede20a25b4c8f09fb147951.woff')format("woff");}.ff29{font-family:ff29;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2a;src:url('chunks/assets/font_af7a09e994c8625021707bcc.woff')format("woff");}.ff2a{font-family:ff2a;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2b;src:url('chunks/assets/font_1bb33b7436a7ffd616b1fae4.woff')format("woff");}.ff2b{font-family:ff2b;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2c;src:url('chunks/assets/font_49c347e08ad61fcaa54318fd.woff')format("woff");}.ff2c{font-family:ff2c;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2d;src:url('chunks/assets/font_bc5b8bdc6b80a22acde8a8ba.woff')format("woff");}.ff2d{font-family:ff2d;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2e;src:url('chunks/assets/font_e9bb5d6c7a41d508ac28a43b.woff')format("woff");}.ff2e{font-family:ff2e;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2f;src:url('chunks/assets/font_5e4f73b5ff221b2cb7be7229.woff')format("woff");}.ff2f{font-family:ff2f;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff30;src:url('chunks/assets/font_5853512cf6f1cda5a2457bdd.woff')format("woff");}.ff30{font-family:ff30;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff31;src:url('chunks/assets/font_046bfe9c7deeddbf5b42cb5b.woff')format("woff");}.ff31{font-family:ff31;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff32;src:url('chunks/assets/font_615dab0537c59ad892b013b1.woff')format("woff");}.ff32{font-family:ff32;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff33;src:url('chunks/assets/font_758fbfb16e9c0e49938de175.woff')format("woff");}.ff33{font-family:ff33;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff34;src:url('chunks/assets/font_6b13e41a6f8ac88841b2d269.woff')format("woff");}.ff34{font-family:ff34;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff35;src:url('chunks/assets/font_2c86bcc1b423b23d93abea0b.woff')format("woff");}.ff35{font-family:ff35;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m16{transform:matrix(0.047500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.047500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.047500,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.050000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.050000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.050000,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.055000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.055000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.055000,0.000000,0.000000,0.250000,0,0);}
.m78{transform:matrix(0.062500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.062500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.062500,0.000000,0.000000,0.250000,0,0);}
.m69{transform:matrix(0.070000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.070000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.070000,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.075000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.075000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.075000,0.000000,0.000000,0.250000,0,0);}
.m65{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.085000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.085000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.085000,0.000000,0.000000,0.250000,0,0);}
.m3d{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.m32{transform:matrix(0.095000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.095000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.095000,0.000000,0.000000,0.250000,0,0);}
.m72{transform:matrix(0.097500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.097500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.097500,0.000000,0.000000,0.250000,0,0);}
.m79{transform:matrix(0.102500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102500,0.000000,0.000000,0.250000,0,0);}
.m35{transform:matrix(0.105000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105000,0.000000,0.000000,0.250000,0,0);}
.m42{transform:matrix(0.112500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112500,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.117500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.117500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.117500,0.000000,0.000000,0.250000,0,0);}
.m84{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m7a{transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);}
.m81{transform:matrix(0.127500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127500,0.000000,0.000000,0.250000,0,0);}
.m6b{transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);}
.m6a{transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);}
.m76{transform:matrix(0.142500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142500,0.000000,0.000000,0.250000,0,0);}
.m49{transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);}
.m82{transform:matrix(0.152500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152500,0.000000,0.000000,0.250000,0,0);}
.m52{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.m58{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m37{transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);}
.m7e{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.m40{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.m3a{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m48{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.m41{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m46{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.m4c{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m61{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m50{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m55{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m74{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m5f{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m34{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m5d{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m51{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m83{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m7d{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m47{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m5e{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m3e{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m5a{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m80{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m39{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m38{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m44{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);}
.m64{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m68{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m4e{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m53{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m5b{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m30{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m3b{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m62{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m56{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m54{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m45{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m4f{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m31{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m66{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m7b{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m33{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);}
.m6f{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m7f{transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);}
.m6e{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m36{transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.410000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410000,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.412500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412500,0.000000,0.000000,0.250000,0,0);}
.m75{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m5c{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m3f{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m7c{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m67{transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);}
.m6d{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m6c{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m77{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m4b{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m73{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m63{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m60{transform:matrix(0.512500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512500,0.000000,0.000000,0.250000,0,0);}
.m4a{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m4d{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m70{transform:matrix(0.550000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.550000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.550000,0.000000,0.000000,0.250000,0,0);}
.m71{transform:matrix(0.610000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.610000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.610000,0.000000,0.000000,0.250000,0,0);}
.m3c{transform:matrix(0.620000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.620000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.620000,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.622500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.622500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.622500,0.000000,0.000000,0.250000,0,0);}
.m57{transform:matrix(0.672500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.672500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.672500,0.000000,0.000000,0.250000,0,0);}
.m59{transform:matrix(0.692500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.692500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.692500,0.000000,0.000000,0.250000,0,0);}
.m43{transform:matrix(0.770000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.770000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.770000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:285.766212px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:0.000000px;}
.fc0{color:transparent;}
.fs7{font-size:24.000000px;}
.fs5{font-size:30.000000px;}
.fs3{font-size:36.000000px;}
.fs0{font-size:42.000000px;}
.fs4{font-size:48.000000px;}
.fs2{font-size:54.000000px;}
.fs8{font-size:60.000000px;}
.fs1{font-size:78.000000px;}
.fs6{font-size:216.000000px;}
.y0{bottom:0.000000px;}
.y1d{bottom:109.275000px;}
.y4e{bottom:119.625000px;}
.y4f{bottom:119.923500px;}
.y163{bottom:121.125000px;}
.y164{bottom:121.275000px;}
.y165{bottom:121.798500px;}
.y10b{bottom:123.598500px;}
.y80{bottom:124.348500px;}
.y10c{bottom:124.500000px;}
.y10d{bottom:124.875000px;}
.y1c8{bottom:125.775000px;}
.y1c9{bottom:125.923500px;}
.y1c{bottom:127.275000px;}
.yc3{bottom:132.673500px;}
.y162{bottom:133.198500px;}
.y1c6{bottom:137.625000px;}
.y1c7{bottom:138.000000px;}
.y10a{bottom:141.823500px;}
.yc2{bottom:142.348500px;}
.y161{bottom:144.900000px;}
.y1b{bottom:145.275000px;}
.y78{bottom:145.573500px;}
.yfe{bottom:146.848500px;}
.y76{bottom:149.548500px;}
.y77{bottom:149.625000px;}
.y1c4{bottom:149.698500px;}
.y1c5{bottom:150.073500px;}
.y105{bottom:150.223500px;}
.y106{bottom:150.375000px;}
.y107{bottom:150.598500px;}
.y108{bottom:151.125000px;}
.y109{bottom:151.500000px;}
.y7f{bottom:155.323500px;}
.y7e{bottom:155.400000px;}
.y15f{bottom:156.823500px;}
.y160{bottom:156.973500px;}
.y1c2{bottom:161.775000px;}
.y1c3{bottom:162.150000px;}
.y1a{bottom:162.673500px;}
.y81{bottom:165.750000px;}
.y4d{bottom:165.823500px;}
.yc1{bottom:172.273500px;}
.y7d{bottom:172.573500px;}
.y7c{bottom:173.023500px;}
.y1c0{bottom:174.000000px;}
.y1c1{bottom:174.148500px;}
.y15e{bottom:174.598500px;}
.y19{bottom:180.523500px;}
.y7b{bottom:182.323500px;}
.y104{bottom:184.273500px;}
.y1be{bottom:186.073500px;}
.y1bf{bottom:186.298500px;}
.y15c{bottom:186.448500px;}
.y15d{bottom:187.348500px;}
.y102{bottom:189.000000px;}
.y4c{bottom:191.773500px;}
.y7a{bottom:192.073500px;}
.y103{bottom:193.798500px;}
.y1bc{bottom:197.923500px;}
.y15b{bottom:198.148500px;}
.y1bd{bottom:198.298500px;}
.y18{bottom:198.375000px;}
.y79{bottom:198.523500px;}
.yfd{bottom:199.423500px;}
.ybe{bottom:201.598500px;}
.ybf{bottom:201.973500px;}
.yc0{bottom:202.125000px;}
.y100{bottom:209.473500px;}
.y101{bottom:209.625000px;}
.y159{bottom:209.848500px;}
.y15a{bottom:209.923500px;}
.y1ba{bottom:210.148500px;}
.y1bb{bottom:210.523500px;}
.y4a{bottom:215.473500px;}
.y4b{bottom:215.698500px;}
.y17{bottom:216.223500px;}
.yff{bottom:216.298500px;}
.ybd{bottom:219.898500px;}
.y75{bottom:220.875000px;}
.y157{bottom:221.625000px;}
.y158{bottom:221.773500px;}
.y1b8{bottom:222.223500px;}
.y1b7{bottom:222.448500px;}
.y1b9{bottom:222.598500px;}
.y155{bottom:233.250000px;}
.y156{bottom:233.625000px;}
.y1b5{bottom:234.073500px;}
.y16{bottom:234.223500px;}
.y1b6{bottom:234.523500px;}
.yfc{bottom:239.323500px;}
.y49{bottom:242.698500px;}
.y153{bottom:245.023500px;}
.y154{bottom:245.173500px;}
.y1b4{bottom:246.000000px;}
.y74{bottom:246.375000px;}
.yf7{bottom:247.423500px;}
.yf8{bottom:247.573500px;}
.yfa{bottom:247.798500px;}
.yf9{bottom:248.023500px;}
.yfb{bottom:248.173500px;}
.yb6{bottom:248.773500px;}
.yb4{bottom:248.923500px;}
.yb7{bottom:249.073500px;}
.yb5{bottom:249.298500px;}
.y151{bottom:256.875000px;}
.y152{bottom:257.398500px;}
.y1b2{bottom:258.000000px;}
.y1b1{bottom:258.223500px;}
.y1b3{bottom:258.448500px;}
.y15{bottom:263.473500px;}
.y14f{bottom:268.723500px;}
.y150{bottom:269.098500px;}
.y1af{bottom:269.923500px;}
.y1b0{bottom:270.073500px;}
.y48{bottom:271.348500px;}
.yf4{bottom:274.273500px;}
.yf5{bottom:274.423500px;}
.yf6{bottom:274.573500px;}
.y70{bottom:277.723500px;}
.y71{bottom:277.875000px;}
.y72{bottom:277.948500px;}
.y73{bottom:278.323500px;}
.ybc{bottom:278.848500px;}
.ybb{bottom:279.148500px;}
.y1fd{bottom:279.375000px;}
.y14d{bottom:280.423500px;}
.y14e{bottom:281.023500px;}
.y14{bottom:281.473500px;}
.y1ad{bottom:281.625000px;}
.y1ae{bottom:281.848500px;}
.yba{bottom:285.973500px;}
.yb3{bottom:289.798500px;}
.y14a{bottom:292.500000px;}
.y14b{bottom:292.648500px;}
.y14c{bottom:292.875000px;}
.y1ab{bottom:293.698500px;}
.y1ac{bottom:294.223500px;}
.y6f{bottom:295.573500px;}
.y6e{bottom:295.875000px;}
.yb8{bottom:299.323500px;}
.yb9{bottom:299.698500px;}
.y45{bottom:303.223500px;}
.y44{bottom:303.298500px;}
.y46{bottom:303.523500px;}
.y47{bottom:303.898500px;}
.y148{bottom:304.423500px;}
.y149{bottom:304.573500px;}
.y1a9{bottom:305.923500px;}
.y1aa{bottom:306.148500px;}
.y1fc{bottom:308.698500px;}
.y1fb{bottom:309.823500px;}
.y146{bottom:316.125000px;}
.y147{bottom:316.423500px;}
.y13{bottom:316.648500px;}
.y1a6{bottom:317.625000px;}
.y1a7{bottom:317.773500px;}
.y1a8{bottom:318.000000px;}
.y6d{bottom:321.298500px;}
.yf2{bottom:322.125000px;}
.yf3{bottom:322.875000px;}
.y144{bottom:327.973500px;}
.y145{bottom:328.125000px;}
.yb2{bottom:329.023500px;}
.y1a4{bottom:329.848500px;}
.y1a5{bottom:330.073500px;}
.y43{bottom:332.323500px;}
.y1fa{bottom:333.148500px;}
.y142{bottom:339.823500px;}
.yf1{bottom:339.898500px;}
.y143{bottom:340.198500px;}
.y1a2{bottom:341.548500px;}
.y1a3{bottom:342.673500px;}
.y1f9{bottom:349.423500px;}
.y1f8{bottom:350.323500px;}
.y140{bottom:351.523500px;}
.y141{bottom:351.898500px;}
.y6c{bottom:353.473500px;}
.y1a0{bottom:354.000000px;}
.y1a1{bottom:354.750000px;}
.y42{bottom:358.648500px;}
.y13f{bottom:363.223500px;}
.yae{bottom:365.398500px;}
.yb1{bottom:365.698500px;}
.yaf{bottom:365.923500px;}
.yb0{bottom:366.073500px;}
.y1f7{bottom:367.723500px;}
.yf0{bottom:369.298500px;}
.y6b{bottom:371.923500px;}
.y11{bottom:372.073500px;}
.y12{bottom:372.448500px;}
.y41{bottom:374.625000px;}
.y13d{bottom:375.000000px;}
.y13e{bottom:375.148500px;}
.y19f{bottom:377.923500px;}
.y40{bottom:381.448500px;}
.y1f6{bottom:384.148500px;}
.y1f5{bottom:385.198500px;}
.y13b{bottom:386.473500px;}
.y13c{bottom:386.773500px;}
.yef{bottom:387.073500px;}
.y6a{bottom:389.848500px;}
.y139{bottom:398.323500px;}
.y13a{bottom:398.698500px;}
.yf{bottom:400.798500px;}
.y10{bottom:401.173500px;}
.y1f4{bottom:403.048500px;}
.y137{bottom:410.173500px;}
.y138{bottom:410.548500px;}
.y3e{bottom:413.848500px;}
.y3f{bottom:414.375000px;}
.yee{bottom:417.000000px;}
.y19e{bottom:417.898500px;}
.y69{bottom:419.023500px;}
.ye{bottom:419.173500px;}
.y134{bottom:422.098500px;}
.y135{bottom:422.323500px;}
.y136{bottom:422.473500px;}
.yed{bottom:426.673500px;}
.yec{bottom:427.048500px;}
.yad{bottom:427.648500px;}
.y19c{bottom:429.823500px;}
.y19d{bottom:429.898500px;}
.y132{bottom:433.573500px;}
.y133{bottom:433.798500px;}
.y65{bottom:436.798500px;}
.y66{bottom:436.875000px;}
.yd{bottom:437.023500px;}
.y68{bottom:437.250000px;}
.y67{bottom:437.398500px;}
.y1f3{bottom:439.198500px;}
.y19b{bottom:441.823500px;}
.y3d{bottom:443.250000px;}
.y131{bottom:445.125000px;}
.ya8{bottom:445.500000px;}
.ya9{bottom:445.648500px;}
.yac{bottom:445.798500px;}
.yaa{bottom:446.023500px;}
.yab{bottom:446.098500px;}
.y199{bottom:453.673500px;}
.y19a{bottom:454.048500px;}
.y64{bottom:454.875000px;}
.yc{bottom:455.023500px;}
.yeb{bottom:455.548500px;}
.y12f{bottom:456.973500px;}
.y130{bottom:457.198500px;}
.ya6{bottom:463.500000px;}
.ya7{bottom:464.023500px;}
.y197{bottom:465.973500px;}
.y198{bottom:466.348500px;}
.y12d{bottom:468.898500px;}
.y12e{bottom:469.273500px;}
.y63{bottom:472.648500px;}
.yb{bottom:472.875000px;}
.yea{bottom:473.173500px;}
.y3c{bottom:478.125000px;}
.y196{bottom:478.200000px;}
.y12b{bottom:480.598500px;}
.y12c{bottom:481.125000px;}
.y194{bottom:489.673500px;}
.y193{bottom:489.898500px;}
.y195{bottom:490.200000px;}
.ye9{bottom:491.173500px;}
.y129{bottom:492.523500px;}
.y12a{bottom:492.825000px;}
.ya4{bottom:493.348500px;}
.ya5{bottom:493.423500px;}
.y3a{bottom:495.973500px;}
.y3b{bottom:496.348500px;}
.y62{bottom:501.825000px;}
.y191{bottom:502.125000px;}
.y192{bottom:502.273500px;}
.y126{bottom:504.375000px;}
.y127{bottom:504.750000px;}
.y128{bottom:505.423500px;}
.ya{bottom:508.500000px;}
.ya3{bottom:510.825000px;}
.y61{bottom:513.148500px;}
.y18f{bottom:514.200000px;}
.y190{bottom:514.423500px;}
.y124{bottom:516.598500px;}
.y125{bottom:517.200000px;}
.y1ef{bottom:518.173500px;}
.y1f2{bottom:518.250000px;}
.y1f0{bottom:518.398500px;}
.y1ee{bottom:518.548500px;}
.y1f1{bottom:518.700000px;}
.ye8{bottom:520.125000px;}
.ya2{bottom:524.325000px;}
.ya1{bottom:524.473500px;}
.y18d{bottom:526.125000px;}
.y18e{bottom:526.200000px;}
.y39{bottom:527.625000px;}
.y1ed{bottom:532.423500px;}
.y1ec{bottom:533.325000px;}
.y9{bottom:537.598500px;}
.ye7{bottom:537.750000px;}
.y18b{bottom:537.825000px;}
.y18c{bottom:537.973500px;}
.y123{bottom:539.848500px;}
.ya0{bottom:540.898500px;}
.ye6{bottom:547.875000px;}
.y8{bottom:547.950000px;}
.y189{bottom:549.523500px;}
.y60{bottom:549.525000px;}
.y18a{bottom:549.973500px;}
.y1eb{bottom:552.973500px;}
.y1ea{bottom:553.500000px;}
.y1e9{bottom:553.723500px;}
.y38{bottom:554.250000px;}
.y1e8{bottom:554.400000px;}
.ye0{bottom:555.448500px;}
.ye1{bottom:555.598500px;}
.ye2{bottom:555.750000px;}
.ye3{bottom:555.900000px;}
.ye4{bottom:556.125000px;}
.ye5{bottom:556.348500px;}
.y7{bottom:558.375000px;}
.y9f{bottom:558.900000px;}
.y187{bottom:561.375000px;}
.y188{bottom:561.598500px;}
.y37{bottom:565.048500px;}
.y36{bottom:565.125000px;}
.y35{bottom:565.275000px;}
.y186{bottom:573.750000px;}
.y6{bottom:574.048500px;}
.y1e7{bottom:574.723500px;}
.y122{bottom:577.275000px;}
.y5f{bottom:578.698500px;}
.y5e{bottom:578.848500px;}
.yde{bottom:585.073500px;}
.ydd{bottom:585.150000px;}
.ydc{bottom:585.298500px;}
.ydf{bottom:585.448500px;}
.y184{bottom:585.673500px;}
.y185{bottom:585.823500px;}
.y9d{bottom:586.048500px;}
.y9e{bottom:586.798500px;}
.y1e6{bottom:588.448500px;}
.y34{bottom:589.348500px;}
.y5{bottom:589.500000px;}
.y1e5{bottom:589.650000px;}
.y97{bottom:590.923500px;}
.y121{bottom:596.323500px;}
.y182{bottom:597.525000px;}
.y183{bottom:598.275000px;}
.y9c{bottom:601.500000px;}
.y96{bottom:601.573500px;}
.y95{bottom:601.875000px;}
.y9b{bottom:602.250000px;}
.y180{bottom:610.125000px;}
.y181{bottom:610.500000px;}
.y94{bottom:611.250000px;}
.ydb{bottom:611.548500px;}
.y32{bottom:613.875000px;}
.y33{bottom:614.098500px;}
.y1e4{bottom:619.198500px;}
.yda{bottom:622.348500px;}
.y11f{bottom:623.848500px;}
.y120{bottom:624.223500px;}
.y4{bottom:626.698500px;}
.y93{bottom:628.573500px;}
.y5d{bottom:629.473500px;}
.y30{bottom:632.025000px;}
.yd9{bottom:632.625000px;}
.y31{bottom:632.923500px;}
.y17f{bottom:633.900000px;}
.y9a{bottom:638.625000px;}
.y11e{bottom:645.298500px;}
.y99{bottom:648.900000px;}
.y2f{bottom:650.025000px;}
.y3{bottom:650.548500px;}
.y11c{bottom:652.875000px;}
.y11d{bottom:654.823500px;}
.yd7{bottom:656.400000px;}
.yd8{bottom:656.548500px;}
.y5c{bottom:657.750000px;}
.y98{bottom:659.098500px;}
.y11b{bottom:664.948500px;}
.y5b{bottom:668.323500px;}
.y17d{bottom:670.125000px;}
.y17e{bottom:670.198500px;}
.y5a{bottom:678.073500px;}
.y17b{bottom:681.750000px;}
.y17c{bottom:682.125000px;}
.yd4{bottom:685.048500px;}
.yd5{bottom:685.198500px;}
.yd6{bottom:685.573500px;}
.y2d{bottom:685.798500px;}
.y1e3{bottom:686.323500px;}
.y2c{bottom:687.823500px;}
.y92{bottom:689.400000px;}
.y2e{bottom:691.198500px;}
.y11a{bottom:693.150000px;}
.y178{bottom:693.673500px;}
.y179{bottom:693.823500px;}
.y17a{bottom:694.048500px;}
.y1e2{bottom:697.798500px;}
.y115{bottom:699.073500px;}
.y118{bottom:699.448500px;}
.y2b{bottom:700.423500px;}
.y59{bottom:700.500000px;}
.y117{bottom:703.048500px;}
.y116{bottom:703.275000px;}
.y119{bottom:704.323500px;}
.y176{bottom:705.750000px;}
.y177{bottom:706.275000px;}
.y1e0{bottom:709.198500px;}
.y1e1{bottom:709.723500px;}
.yd3{bottom:715.048500px;}
.y174{bottom:717.750000px;}
.y175{bottom:718.125000px;}
.y1df{bottom:721.573500px;}
.y1de{bottom:721.650000px;}
.y90{bottom:723.223500px;}
.y58{bottom:727.948500px;}
.y28{bottom:729.450000px;}
.y171{bottom:729.598500px;}
.y172{bottom:729.673500px;}
.y173{bottom:730.048500px;}
.y29{bottom:730.650000px;}
.y2a{bottom:730.875000px;}
.y1dd{bottom:734.025000px;}
.yd2{bottom:737.025000px;}
.y8f{bottom:738.750000px;}
.y16f{bottom:741.900000px;}
.y57{bottom:742.125000px;}
.y170{bottom:742.275000px;}
.y1dc{bottom:745.723500px;}
.y25{bottom:747.075000px;}
.y26{bottom:747.973500px;}
.y27{bottom:748.125000px;}
.y114{bottom:750.223500px;}
.y56{bottom:751.875000px;}
.y16d{bottom:754.125000px;}
.y16e{bottom:754.723500px;}
.y8e{bottom:754.875000px;}
.y8d{bottom:754.950000px;}
.y1db{bottom:757.575000px;}
.y8c{bottom:762.075000px;}
.y8b{bottom:762.150000px;}
.y1d9{bottom:769.125000px;}
.y1da{bottom:769.275000px;}
.y1d8{bottom:769.500000px;}
.yd1{bottom:770.698500px;}
.yd0{bottom:770.925000px;}
.y8a{bottom:771.300000px;}
.y88{bottom:771.448500px;}
.y89{bottom:771.525000px;}
.y22{bottom:776.400000px;}
.y23{bottom:777.150000px;}
.y24{bottom:777.300000px;}
.y113{bottom:779.025000px;}
.ycb{bottom:779.473500px;}
.ycc{bottom:779.698500px;}
.y53{bottom:780.150000px;}
.ycd{bottom:780.448500px;}
.yce{bottom:780.598500px;}
.ycf{bottom:780.823500px;}
.y1d7{bottom:781.050000px;}
.y87{bottom:781.348500px;}
.y16c{bottom:784.875000px;}
.y112{bottom:788.925000px;}
.y1d6{bottom:791.473500px;}
.y85{bottom:791.698500px;}
.y86{bottom:791.848500px;}
.y1d5{bottom:792.000000px;}
.y1d3{bottom:792.150000px;}
.y1d4{bottom:792.375000px;}
.y21{bottom:794.250000px;}
.yca{bottom:796.050000px;}
.y2{bottom:797.550000px;}
.y52{bottom:798.300000px;}
.y55{bottom:798.823500px;}
.y84{bottom:801.525000px;}
.y1d2{bottom:804.073500px;}
.y1d1{bottom:804.750000px;}
.y20{bottom:812.025000px;}
.y1{bottom:812.473500px;}
.y1d0{bottom:815.775000px;}
.y1cf{bottom:815.925000px;}
.y111{bottom:818.250000px;}
.yc6{bottom:819.448500px;}
.yc7{bottom:819.675000px;}
.yc8{bottom:820.050000px;}
.yc9{bottom:820.198500px;}
.y16a{bottom:823.650000px;}
.y16b{bottom:823.800000px;}
.y51{bottom:825.150000px;}
.y1ce{bottom:827.625000px;}
.y1cd{bottom:828.000000px;}
.y1cc{bottom:828.375000px;}
.y83{bottom:830.925000px;}
.y168{bottom:835.500000px;}
.y169{bottom:835.875000px;}
.y1e{bottom:846.223500px;}
.y1f{bottom:847.198500px;}
.y10e{bottom:852.675000px;}
.y10f{bottom:853.875000px;}
.y110{bottom:854.250000px;}
.yc4{bottom:855.598500px;}
.yc5{bottom:855.675000px;}
.y50{bottom:860.925000px;}
.y54{bottom:861.973500px;}
.y1cb{bottom:864.000000px;}
.y1ca{bottom:864.223500px;}
.y91{bottom:866.473500px;}
.y82{bottom:866.698500px;}
.y167{bottom:873.150000px;}
.y166{bottom:873.300000px;}
.h1a{height:25.031250px;}
.h15{height:29.428711px;}
.h12{height:29.443359px;}
.h16{height:29.926758px;}
.h1d{height:30.234375px;}
.hf{height:30.835273px;}
.h9{height:31.289062px;}
.h19{height:35.332031px;}
.h5{height:36.281250px;}
.h1b{height:37.546875px;}
.he{height:41.200195px;}
.h1{height:41.220703px;}
.h2{height:42.328125px;}
.hd{height:43.169382px;}
.h13{height:43.804688px;}
.h7{height:47.085938px;}
.h6{height:47.109375px;}
.hb{height:48.375000px;}
.ha{height:49.336436px;}
.h14{height:49.968750px;}
.hc{height:50.062500px;}
.h4{height:52.998047px;}
.h17{height:56.320312px;}
.h1f{height:61.670545px;}
.h3{height:76.552734px;}
.h10{height:225.281250px;}
.h8{height:918.000000px;}
.h1c{height:921.000000px;}
.h18{height:928.500000px;}
.h11{height:930.000000px;}
.h0{height:934.500000px;}
.h1e{height:937.500000px;}
.w0{width:690.000000px;}
.x0{left:0.000000px;}
.x87{left:35.775000px;}
.x85{left:37.050000px;}
.x38{left:41.025000px;}
.x3a{left:42.450000px;}
.xad{left:46.425000px;}
.xb2{left:47.700000px;}
.xf{left:51.450000px;}
.x2{left:52.875000px;}
.x7e{left:57.750000px;}
.x8c{left:59.400000px;}
.x39{left:63.300000px;}
.x88{left:65.100000px;}
.x47{left:67.800000px;}
.x10{left:73.050000px;}
.x1{left:74.475000px;}
.x3{left:82.050000px;}
.xb1{left:84.375000px;}
.xae{left:85.650000px;}
.xb3{left:86.925000px;}
.x37{left:91.200000px;}
.x14{left:94.275000px;}
.x11{left:95.400000px;}
.x2c{left:97.198500px;}
.x34{left:98.250000px;}
.x9d{left:100.800000px;}
.xa5{left:101.850000px;}
.xa9{left:102.900000px;}
.x59{left:105.600000px;}
.x58{left:107.775000px;}
.xaf{left:109.425000px;}
.x21{left:111.375000px;}
.x8d{left:112.800000px;}
.x89{left:115.875000px;}
.x13{left:117.000000px;}
.x30{left:118.800000px;}
.x9e{left:121.275000px;}
.xa4{left:122.700000px;}
.xba{left:124.725000px;}
.x6d{left:126.150000px;}
.xb0{left:127.800000px;}
.x99{left:129.600000px;}
.x77{left:130.800000px;}
.x28{left:131.925000px;}
.x45{left:133.350000px;}
.x8a{left:135.900000px;}
.x78{left:137.700000px;}
.xaa{left:140.700000px;}
.xa8{left:141.975000px;}
.xb4{left:144.900000px;}
.x82{left:151.875000px;}
.xd{left:153.900000px;}
.xa{left:155.700000px;}
.x8b{left:160.500000px;}
.xb5{left:167.700000px;}
.xb8{left:168.975000px;}
.x71{left:170.400000px;}
.xa7{left:171.675000px;}
.xc{left:173.325000px;}
.xbb{left:174.375000px;}
.xb{left:177.450000px;}
.xbd{left:181.425000px;}
.x27{left:186.300000px;}
.x2d{left:188.250000px;}
.x4{left:190.800000px;}
.x7b{left:203.925000px;}
.x4f{left:205.500000px;}
.x46{left:207.898500px;}
.x50{left:210.000000px;}
.xab{left:212.700000px;}
.x4a{left:217.050000px;}
.x95{left:222.075000px;}
.x51{left:223.725000px;}
.xbf{left:225.675000px;}
.x6f{left:230.175000px;}
.x1c{left:236.100000px;}
.xb6{left:239.550000px;}
.x2e{left:240.975000px;}
.x90{left:244.575000px;}
.xb7{left:246.600000px;}
.x48{left:247.800000px;}
.xa6{left:250.725000px;}
.x1d{left:252.300000px;}
.x4b{left:254.325000px;}
.x2f{left:257.025000px;}
.x9a{left:259.200000px;}
.x52{left:261.000000px;}
.x5d{left:262.200000px;}
.x70{left:263.325000px;}
.xe{left:264.750000px;}
.xbe{left:268.350000px;}
.xb9{left:269.400000px;}
.x40{left:270.900000px;}
.x8e{left:273.600000px;}
.x86{left:275.025000px;}
.x3e{left:276.975000px;}
.x60{left:280.050000px;}
.x64{left:281.475000px;}
.xc2{left:283.800000px;}
.x9b{left:286.875000px;}
.x43{left:288.525000px;}
.x18{left:289.950000px;}
.x23{left:293.400000px;}
.x2a{left:294.825000px;}
.x24{left:296.625000px;}
.x29{left:297.900000px;}
.x61{left:300.375000px;}
.x81{left:302.025000px;}
.x1b{left:305.400000px;}
.x5f{left:306.525000px;}
.x49{left:308.475000px;}
.x25{left:311.025000px;}
.x12{left:312.600000px;}
.x5b{left:314.625000px;}
.x62{left:320.925000px;}
.x53{left:324.000000px;}
.x55{left:325.050000px;}
.x9f{left:326.475000px;}
.x4c{left:328.125000px;}
.x63{left:329.925000px;}
.x65{left:332.775000px;}
.x91{left:336.900000px;}
.x57{left:340.725000px;}
.x26{left:342.525000px;}
.x5a{left:344.850000px;}
.x5c{left:346.650000px;}
.x54{left:347.925000px;}
.x7f{left:349.200000px;}
.x42{left:350.250000px;}
.x44{left:353.100000px;}
.x22{left:354.600000px;}
.xa0{left:357.300000px;}
.x67{left:359.625000px;}
.x1f{left:362.325000px;}
.x3f{left:363.750000px;}
.x6a{left:365.400000px;}
.x31{left:366.975000px;}
.x41{left:369.300000px;}
.x20{left:370.575000px;}
.x79{left:372.000000px;}
.x7c{left:373.500000px;}
.x19{left:378.150000px;}
.xac{left:379.425000px;}
.x1a{left:380.700000px;}
.x32{left:383.025000px;}
.x8f{left:384.975000px;}
.x5{left:386.625000px;}
.x6{left:388.575000px;}
.x97{left:390.000000px;}
.x98{left:391.798500px;}
.x84{left:393.298500px;}
.x1e{left:394.350000px;}
.x6c{left:398.475000px;}
.xa1{left:399.600000px;}
.x33{left:401.400000px;}
.x5e{left:403.350000px;}
.x92{left:408.000000px;}
.x66{left:409.275000px;}
.xa2{left:410.400000px;}
.x68{left:412.350000px;}
.x96{left:415.048500px;}
.x3c{left:416.325000px;}
.x16{left:422.400000px;}
.x80{left:433.048500px;}
.x2b{left:434.100000px;}
.xa3{left:435.600000px;}
.x73{left:437.923500px;}
.x35{left:439.350000px;}
.x7a{left:441.673500px;}
.x9c{left:443.100000px;}
.x56{left:444.600000px;}
.x4d{left:446.173500px;}
.x36{left:451.575000px;}
.x93{left:453.900000px;}
.x7{left:458.100000px;}
.x83{left:459.298500px;}
.x69{left:462.225000px;}
.x17{left:464.925000px;}
.xc1{left:471.375000px;}
.x74{left:476.100000px;}
.x6b{left:478.800000px;}
.x3d{left:487.950000px;}
.xbc{left:490.800000px;}
.x15{left:494.775000px;}
.x75{left:496.575000px;}
.x8{left:498.000000px;}
.x9{left:505.950000px;}
.x94{left:528.450000px;}
.x4e{left:552.750000px;}
.x72{left:575.625000px;}
.x76{left:577.200000px;}
.x6e{left:598.125000px;}
.x3b{left:599.400000px;}
.x7d{left:601.875000px;}
.xc0{left:637.200000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:254.014411pt;}
.ws0{word-spacing:0.000000pt;}
.fs7{font-size:21.333333pt;}
.fs5{font-size:26.666667pt;}
.fs3{font-size:32.000000pt;}
.fs0{font-size:37.333333pt;}
.fs4{font-size:42.666667pt;}
.fs2{font-size:48.000000pt;}
.fs8{font-size:53.333333pt;}
.fs1{font-size:69.333333pt;}
.fs6{font-size:192.000000pt;}
.y0{bottom:0.000000pt;}
.y1d{bottom:97.133333pt;}
.y4e{bottom:106.333333pt;}
.y4f{bottom:106.598667pt;}
.y163{bottom:107.666667pt;}
.y164{bottom:107.800000pt;}
.y165{bottom:108.265333pt;}
.y10b{bottom:109.865333pt;}
.y80{bottom:110.532000pt;}
.y10c{bottom:110.666667pt;}
.y10d{bottom:111.000000pt;}
.y1c8{bottom:111.800000pt;}
.y1c9{bottom:111.932000pt;}
.y1c{bottom:113.133333pt;}
.yc3{bottom:117.932000pt;}
.y162{bottom:118.398667pt;}
.y1c6{bottom:122.333333pt;}
.y1c7{bottom:122.666667pt;}
.y10a{bottom:126.065333pt;}
.yc2{bottom:126.532000pt;}
.y161{bottom:128.800000pt;}
.y1b{bottom:129.133333pt;}
.y78{bottom:129.398667pt;}
.yfe{bottom:130.532000pt;}
.y76{bottom:132.932000pt;}
.y77{bottom:133.000000pt;}
.y1c4{bottom:133.065333pt;}
.y1c5{bottom:133.398667pt;}
.y105{bottom:133.532000pt;}
.y106{bottom:133.666667pt;}
.y107{bottom:133.865333pt;}
.y108{bottom:134.333333pt;}
.y109{bottom:134.666667pt;}
.y7f{bottom:138.065333pt;}
.y7e{bottom:138.133333pt;}
.y15f{bottom:139.398667pt;}
.y160{bottom:139.532000pt;}
.y1c2{bottom:143.800000pt;}
.y1c3{bottom:144.133333pt;}
.y1a{bottom:144.598667pt;}
.y81{bottom:147.333333pt;}
.y4d{bottom:147.398667pt;}
.yc1{bottom:153.132000pt;}
.y7d{bottom:153.398667pt;}
.y7c{bottom:153.798667pt;}
.y1c0{bottom:154.666667pt;}
.y1c1{bottom:154.798667pt;}
.y15e{bottom:155.198667pt;}
.y19{bottom:160.465333pt;}
.y7b{bottom:162.065333pt;}
.y104{bottom:163.798667pt;}
.y1be{bottom:165.398667pt;}
.y1bf{bottom:165.598667pt;}
.y15c{bottom:165.732000pt;}
.y15d{bottom:166.532000pt;}
.y102{bottom:168.000000pt;}
.y4c{bottom:170.465333pt;}
.y7a{bottom:170.732000pt;}
.y103{bottom:172.265333pt;}
.y1bc{bottom:175.932000pt;}
.y15b{bottom:176.132000pt;}
.y1bd{bottom:176.265333pt;}
.y18{bottom:176.333333pt;}
.y79{bottom:176.465333pt;}
.yfd{bottom:177.265333pt;}
.ybe{bottom:179.198667pt;}
.ybf{bottom:179.532000pt;}
.yc0{bottom:179.666667pt;}
.y100{bottom:186.198667pt;}
.y101{bottom:186.333333pt;}
.y159{bottom:186.532000pt;}
.y15a{bottom:186.598667pt;}
.y1ba{bottom:186.798667pt;}
.y1bb{bottom:187.132000pt;}
.y4a{bottom:191.532000pt;}
.y4b{bottom:191.732000pt;}
.y17{bottom:192.198667pt;}
.yff{bottom:192.265333pt;}
.ybd{bottom:195.465333pt;}
.y75{bottom:196.333333pt;}
.y157{bottom:197.000000pt;}
.y158{bottom:197.132000pt;}
.y1b8{bottom:197.532000pt;}
.y1b7{bottom:197.732000pt;}
.y1b9{bottom:197.865333pt;}
.y155{bottom:207.333333pt;}
.y156{bottom:207.666667pt;}
.y1b5{bottom:208.065333pt;}
.y16{bottom:208.198667pt;}
.y1b6{bottom:208.465333pt;}
.yfc{bottom:212.732000pt;}
.y49{bottom:215.732000pt;}
.y153{bottom:217.798667pt;}
.y154{bottom:217.932000pt;}
.y1b4{bottom:218.666667pt;}
.y74{bottom:219.000000pt;}
.yf7{bottom:219.932000pt;}
.yf8{bottom:220.065333pt;}
.yfa{bottom:220.265333pt;}
.yf9{bottom:220.465333pt;}
.yfb{bottom:220.598667pt;}
.yb6{bottom:221.132000pt;}
.yb4{bottom:221.265333pt;}
.yb7{bottom:221.398667pt;}
.yb5{bottom:221.598667pt;}
.y151{bottom:228.333333pt;}
.y152{bottom:228.798667pt;}
.y1b2{bottom:229.333333pt;}
.y1b1{bottom:229.532000pt;}
.y1b3{bottom:229.732000pt;}
.y15{bottom:234.198667pt;}
.y14f{bottom:238.865333pt;}
.y150{bottom:239.198667pt;}
.y1af{bottom:239.932000pt;}
.y1b0{bottom:240.065333pt;}
.y48{bottom:241.198667pt;}
.yf4{bottom:243.798667pt;}
.yf5{bottom:243.932000pt;}
.yf6{bottom:244.065333pt;}
.y70{bottom:246.865333pt;}
.y71{bottom:247.000000pt;}
.y72{bottom:247.065333pt;}
.y73{bottom:247.398667pt;}
.ybc{bottom:247.865333pt;}
.ybb{bottom:248.132000pt;}
.y1fd{bottom:248.333333pt;}
.y14d{bottom:249.265333pt;}
.y14e{bottom:249.798667pt;}
.y14{bottom:250.198667pt;}
.y1ad{bottom:250.333333pt;}
.y1ae{bottom:250.532000pt;}
.yba{bottom:254.198667pt;}
.yb3{bottom:257.598667pt;}
.y14a{bottom:260.000000pt;}
.y14b{bottom:260.132000pt;}
.y14c{bottom:260.333333pt;}
.y1ab{bottom:261.065333pt;}
.y1ac{bottom:261.532000pt;}
.y6f{bottom:262.732000pt;}
.y6e{bottom:263.000000pt;}
.yb8{bottom:266.065333pt;}
.yb9{bottom:266.398667pt;}
.y45{bottom:269.532000pt;}
.y44{bottom:269.598667pt;}
.y46{bottom:269.798667pt;}
.y47{bottom:270.132000pt;}
.y148{bottom:270.598667pt;}
.y149{bottom:270.732000pt;}
.y1a9{bottom:271.932000pt;}
.y1aa{bottom:272.132000pt;}
.y1fc{bottom:274.398667pt;}
.y1fb{bottom:275.398667pt;}
.y146{bottom:281.000000pt;}
.y147{bottom:281.265333pt;}
.y13{bottom:281.465333pt;}
.y1a6{bottom:282.333333pt;}
.y1a7{bottom:282.465333pt;}
.y1a8{bottom:282.666667pt;}
.y6d{bottom:285.598667pt;}
.yf2{bottom:286.333333pt;}
.yf3{bottom:287.000000pt;}
.y144{bottom:291.532000pt;}
.y145{bottom:291.666667pt;}
.yb2{bottom:292.465333pt;}
.y1a4{bottom:293.198667pt;}
.y1a5{bottom:293.398667pt;}
.y43{bottom:295.398667pt;}
.y1fa{bottom:296.132000pt;}
.y142{bottom:302.065333pt;}
.yf1{bottom:302.132000pt;}
.y143{bottom:302.398667pt;}
.y1a2{bottom:303.598667pt;}
.y1a3{bottom:304.598667pt;}
.y1f9{bottom:310.598667pt;}
.y1f8{bottom:311.398667pt;}
.y140{bottom:312.465333pt;}
.y141{bottom:312.798667pt;}
.y6c{bottom:314.198667pt;}
.y1a0{bottom:314.666667pt;}
.y1a1{bottom:315.333333pt;}
.y42{bottom:318.798667pt;}
.y13f{bottom:322.865333pt;}
.yae{bottom:324.798667pt;}
.yb1{bottom:325.065333pt;}
.yaf{bottom:325.265333pt;}
.yb0{bottom:325.398667pt;}
.y1f7{bottom:326.865333pt;}
.yf0{bottom:328.265333pt;}
.y6b{bottom:330.598667pt;}
.y11{bottom:330.732000pt;}
.y12{bottom:331.065333pt;}
.y41{bottom:333.000000pt;}
.y13d{bottom:333.333333pt;}
.y13e{bottom:333.465333pt;}
.y19f{bottom:335.932000pt;}
.y40{bottom:339.065333pt;}
.y1f6{bottom:341.465333pt;}
.y1f5{bottom:342.398667pt;}
.y13b{bottom:343.532000pt;}
.y13c{bottom:343.798667pt;}
.yef{bottom:344.065333pt;}
.y6a{bottom:346.532000pt;}
.y139{bottom:354.065333pt;}
.y13a{bottom:354.398667pt;}
.yf{bottom:356.265333pt;}
.y10{bottom:356.598667pt;}
.y1f4{bottom:358.265333pt;}
.y137{bottom:364.598667pt;}
.y138{bottom:364.932000pt;}
.y3e{bottom:367.865333pt;}
.y3f{bottom:368.333333pt;}
.yee{bottom:370.666667pt;}
.y19e{bottom:371.465333pt;}
.y69{bottom:372.465333pt;}
.ye{bottom:372.598667pt;}
.y134{bottom:375.198667pt;}
.y135{bottom:375.398667pt;}
.y136{bottom:375.532000pt;}
.yed{bottom:379.265333pt;}
.yec{bottom:379.598667pt;}
.yad{bottom:380.132000pt;}
.y19c{bottom:382.065333pt;}
.y19d{bottom:382.132000pt;}
.y132{bottom:385.398667pt;}
.y133{bottom:385.598667pt;}
.y65{bottom:388.265333pt;}
.y66{bottom:388.333333pt;}
.yd{bottom:388.465333pt;}
.y68{bottom:388.666667pt;}
.y67{bottom:388.798667pt;}
.y1f3{bottom:390.398667pt;}
.y19b{bottom:392.732000pt;}
.y3d{bottom:394.000000pt;}
.y131{bottom:395.666667pt;}
.ya8{bottom:396.000000pt;}
.ya9{bottom:396.132000pt;}
.yac{bottom:396.265333pt;}
.yaa{bottom:396.465333pt;}
.yab{bottom:396.532000pt;}
.y199{bottom:403.265333pt;}
.y19a{bottom:403.598667pt;}
.y64{bottom:404.333333pt;}
.yc{bottom:404.465333pt;}
.yeb{bottom:404.932000pt;}
.y12f{bottom:406.198667pt;}
.y130{bottom:406.398667pt;}
.ya6{bottom:412.000000pt;}
.ya7{bottom:412.465333pt;}
.y197{bottom:414.198667pt;}
.y198{bottom:414.532000pt;}
.y12d{bottom:416.798667pt;}
.y12e{bottom:417.132000pt;}
.y63{bottom:420.132000pt;}
.yb{bottom:420.333333pt;}
.yea{bottom:420.598667pt;}
.y3c{bottom:425.000000pt;}
.y196{bottom:425.066667pt;}
.y12b{bottom:427.198667pt;}
.y12c{bottom:427.666667pt;}
.y194{bottom:435.265333pt;}
.y193{bottom:435.465333pt;}
.y195{bottom:435.733333pt;}
.ye9{bottom:436.598667pt;}
.y129{bottom:437.798667pt;}
.y12a{bottom:438.066667pt;}
.ya4{bottom:438.532000pt;}
.ya5{bottom:438.598667pt;}
.y3a{bottom:440.865333pt;}
.y3b{bottom:441.198667pt;}
.y62{bottom:446.066667pt;}
.y191{bottom:446.333333pt;}
.y192{bottom:446.465333pt;}
.y126{bottom:448.333333pt;}
.y127{bottom:448.666667pt;}
.y128{bottom:449.265333pt;}
.ya{bottom:452.000000pt;}
.ya3{bottom:454.066667pt;}
.y61{bottom:456.132000pt;}
.y18f{bottom:457.066667pt;}
.y190{bottom:457.265333pt;}
.y124{bottom:459.198667pt;}
.y125{bottom:459.733333pt;}
.y1ef{bottom:460.598667pt;}
.y1f2{bottom:460.666667pt;}
.y1f0{bottom:460.798667pt;}
.y1ee{bottom:460.932000pt;}
.y1f1{bottom:461.066667pt;}
.ye8{bottom:462.333333pt;}
.ya2{bottom:466.066667pt;}
.ya1{bottom:466.198667pt;}
.y18d{bottom:467.666667pt;}
.y18e{bottom:467.733333pt;}
.y39{bottom:469.000000pt;}
.y1ed{bottom:473.265333pt;}
.y1ec{bottom:474.066667pt;}
.y9{bottom:477.865333pt;}
.ye7{bottom:478.000000pt;}
.y18b{bottom:478.066667pt;}
.y18c{bottom:478.198667pt;}
.y123{bottom:479.865333pt;}
.ya0{bottom:480.798667pt;}
.ye6{bottom:487.000000pt;}
.y8{bottom:487.066667pt;}
.y189{bottom:488.465333pt;}
.y60{bottom:488.466667pt;}
.y18a{bottom:488.865333pt;}
.y1eb{bottom:491.532000pt;}
.y1ea{bottom:492.000000pt;}
.y1e9{bottom:492.198667pt;}
.y38{bottom:492.666667pt;}
.y1e8{bottom:492.800000pt;}
.ye0{bottom:493.732000pt;}
.ye1{bottom:493.865333pt;}
.ye2{bottom:494.000000pt;}
.ye3{bottom:494.133333pt;}
.ye4{bottom:494.333333pt;}
.ye5{bottom:494.532000pt;}
.y7{bottom:496.333333pt;}
.y9f{bottom:496.800000pt;}
.y187{bottom:499.000000pt;}
.y188{bottom:499.198667pt;}
.y37{bottom:502.265333pt;}
.y36{bottom:502.333333pt;}
.y35{bottom:502.466667pt;}
.y186{bottom:510.000000pt;}
.y6{bottom:510.265333pt;}
.y1e7{bottom:510.865333pt;}
.y122{bottom:513.133333pt;}
.y5f{bottom:514.398667pt;}
.y5e{bottom:514.532000pt;}
.yde{bottom:520.065333pt;}
.ydd{bottom:520.133333pt;}
.ydc{bottom:520.265333pt;}
.ydf{bottom:520.398667pt;}
.y184{bottom:520.598667pt;}
.y185{bottom:520.732000pt;}
.y9d{bottom:520.932000pt;}
.y9e{bottom:521.598667pt;}
.y1e6{bottom:523.065333pt;}
.y34{bottom:523.865333pt;}
.y5{bottom:524.000000pt;}
.y1e5{bottom:524.133333pt;}
.y97{bottom:525.265333pt;}
.y121{bottom:530.065333pt;}
.y182{bottom:531.133333pt;}
.y183{bottom:531.800000pt;}
.y9c{bottom:534.666667pt;}
.y96{bottom:534.732000pt;}
.y95{bottom:535.000000pt;}
.y9b{bottom:535.333333pt;}
.y180{bottom:542.333333pt;}
.y181{bottom:542.666667pt;}
.y94{bottom:543.333333pt;}
.ydb{bottom:543.598667pt;}
.y32{bottom:545.666667pt;}
.y33{bottom:545.865333pt;}
.y1e4{bottom:550.398667pt;}
.yda{bottom:553.198667pt;}
.y11f{bottom:554.532000pt;}
.y120{bottom:554.865333pt;}
.y4{bottom:557.065333pt;}
.y93{bottom:558.732000pt;}
.y5d{bottom:559.532000pt;}
.y30{bottom:561.800000pt;}
.yd9{bottom:562.333333pt;}
.y31{bottom:562.598667pt;}
.y17f{bottom:563.466667pt;}
.y9a{bottom:567.666667pt;}
.y11e{bottom:573.598667pt;}
.y99{bottom:576.800000pt;}
.y2f{bottom:577.800000pt;}
.y3{bottom:578.265333pt;}
.y11c{bottom:580.333333pt;}
.y11d{bottom:582.065333pt;}
.yd7{bottom:583.466667pt;}
.yd8{bottom:583.598667pt;}
.y5c{bottom:584.666667pt;}
.y98{bottom:585.865333pt;}
.y11b{bottom:591.065333pt;}
.y5b{bottom:594.065333pt;}
.y17d{bottom:595.666667pt;}
.y17e{bottom:595.732000pt;}
.y5a{bottom:602.732000pt;}
.y17b{bottom:606.000000pt;}
.y17c{bottom:606.333333pt;}
.yd4{bottom:608.932000pt;}
.yd5{bottom:609.065333pt;}
.yd6{bottom:609.398667pt;}
.y2d{bottom:609.598667pt;}
.y1e3{bottom:610.065333pt;}
.y2c{bottom:611.398667pt;}
.y92{bottom:612.800000pt;}
.y2e{bottom:614.398667pt;}
.y11a{bottom:616.133333pt;}
.y178{bottom:616.598667pt;}
.y179{bottom:616.732000pt;}
.y17a{bottom:616.932000pt;}
.y1e2{bottom:620.265333pt;}
.y115{bottom:621.398667pt;}
.y118{bottom:621.732000pt;}
.y2b{bottom:622.598667pt;}
.y59{bottom:622.666667pt;}
.y117{bottom:624.932000pt;}
.y116{bottom:625.133333pt;}
.y119{bottom:626.065333pt;}
.y176{bottom:627.333333pt;}
.y177{bottom:627.800000pt;}
.y1e0{bottom:630.398667pt;}
.y1e1{bottom:630.865333pt;}
.yd3{bottom:635.598667pt;}
.y174{bottom:638.000000pt;}
.y175{bottom:638.333333pt;}
.y1df{bottom:641.398667pt;}
.y1de{bottom:641.466667pt;}
.y90{bottom:642.865333pt;}
.y58{bottom:647.065333pt;}
.y28{bottom:648.400000pt;}
.y171{bottom:648.532000pt;}
.y172{bottom:648.598667pt;}
.y173{bottom:648.932000pt;}
.y29{bottom:649.466667pt;}
.y2a{bottom:649.666667pt;}
.y1dd{bottom:652.466667pt;}
.yd2{bottom:655.133333pt;}
.y8f{bottom:656.666667pt;}
.y16f{bottom:659.466667pt;}
.y57{bottom:659.666667pt;}
.y170{bottom:659.800000pt;}
.y1dc{bottom:662.865333pt;}
.y25{bottom:664.066667pt;}
.y26{bottom:664.865333pt;}
.y27{bottom:665.000000pt;}
.y114{bottom:666.865333pt;}
.y56{bottom:668.333333pt;}
.y16d{bottom:670.333333pt;}
.y16e{bottom:670.865333pt;}
.y8e{bottom:671.000000pt;}
.y8d{bottom:671.066667pt;}
.y1db{bottom:673.400000pt;}
.y8c{bottom:677.400000pt;}
.y8b{bottom:677.466667pt;}
.y1d9{bottom:683.666667pt;}
.y1da{bottom:683.800000pt;}
.y1d8{bottom:684.000000pt;}
.yd1{bottom:685.065333pt;}
.yd0{bottom:685.266667pt;}
.y8a{bottom:685.600000pt;}
.y88{bottom:685.732000pt;}
.y89{bottom:685.800000pt;}
.y22{bottom:690.133333pt;}
.y23{bottom:690.800000pt;}
.y24{bottom:690.933333pt;}
.y113{bottom:692.466667pt;}
.ycb{bottom:692.865333pt;}
.ycc{bottom:693.065333pt;}
.y53{bottom:693.466667pt;}
.ycd{bottom:693.732000pt;}
.yce{bottom:693.865333pt;}
.ycf{bottom:694.065333pt;}
.y1d7{bottom:694.266667pt;}
.y87{bottom:694.532000pt;}
.y16c{bottom:697.666667pt;}
.y112{bottom:701.266667pt;}
.y1d6{bottom:703.532000pt;}
.y85{bottom:703.732000pt;}
.y86{bottom:703.865333pt;}
.y1d5{bottom:704.000000pt;}
.y1d3{bottom:704.133333pt;}
.y1d4{bottom:704.333333pt;}
.y21{bottom:706.000000pt;}
.yca{bottom:707.600000pt;}
.y2{bottom:708.933333pt;}
.y52{bottom:709.600000pt;}
.y55{bottom:710.065333pt;}
.y84{bottom:712.466667pt;}
.y1d2{bottom:714.732000pt;}
.y1d1{bottom:715.333333pt;}
.y20{bottom:721.800000pt;}
.y1{bottom:722.198667pt;}
.y1d0{bottom:725.133333pt;}
.y1cf{bottom:725.266667pt;}
.y111{bottom:727.333333pt;}
.yc6{bottom:728.398667pt;}
.yc7{bottom:728.600000pt;}
.yc8{bottom:728.933333pt;}
.yc9{bottom:729.065333pt;}
.y16a{bottom:732.133333pt;}
.y16b{bottom:732.266667pt;}
.y51{bottom:733.466667pt;}
.y1ce{bottom:735.666667pt;}
.y1cd{bottom:736.000000pt;}
.y1cc{bottom:736.333333pt;}
.y83{bottom:738.600000pt;}
.y168{bottom:742.666667pt;}
.y169{bottom:743.000000pt;}
.y1e{bottom:752.198667pt;}
.y1f{bottom:753.065333pt;}
.y10e{bottom:757.933333pt;}
.y10f{bottom:759.000000pt;}
.y110{bottom:759.333333pt;}
.yc4{bottom:760.532000pt;}
.yc5{bottom:760.600000pt;}
.y50{bottom:765.266667pt;}
.y54{bottom:766.198667pt;}
.y1cb{bottom:768.000000pt;}
.y1ca{bottom:768.198667pt;}
.y91{bottom:770.198667pt;}
.y82{bottom:770.398667pt;}
.y167{bottom:776.133333pt;}
.y166{bottom:776.266667pt;}
.h1a{height:22.250000pt;}
.h15{height:26.158854pt;}
.h12{height:26.171875pt;}
.h16{height:26.601562pt;}
.h1d{height:26.875000pt;}
.hf{height:27.409131pt;}
.h9{height:27.812500pt;}
.h19{height:31.406250pt;}
.h5{height:32.250000pt;}
.h1b{height:33.375000pt;}
.he{height:36.622396pt;}
.h1{height:36.640625pt;}
.h2{height:37.625000pt;}
.hd{height:38.372784pt;}
.h13{height:38.937500pt;}
.h7{height:41.854167pt;}
.h6{height:41.875000pt;}
.hb{height:43.000000pt;}
.ha{height:43.854610pt;}
.h14{height:44.416667pt;}
.hc{height:44.500000pt;}
.h4{height:47.109375pt;}
.h17{height:50.062500pt;}
.h1f{height:54.818262pt;}
.h3{height:68.046875pt;}
.h10{height:200.250000pt;}
.h8{height:816.000000pt;}
.h1c{height:818.666667pt;}
.h18{height:825.333333pt;}
.h11{height:826.666667pt;}
.h0{height:830.666667pt;}
.h1e{height:833.333333pt;}
.w0{width:613.333333pt;}
.x0{left:0.000000pt;}
.x87{left:31.800000pt;}
.x85{left:32.933333pt;}
.x38{left:36.466667pt;}
.x3a{left:37.733333pt;}
.xad{left:41.266667pt;}
.xb2{left:42.400000pt;}
.xf{left:45.733333pt;}
.x2{left:47.000000pt;}
.x7e{left:51.333333pt;}
.x8c{left:52.800000pt;}
.x39{left:56.266667pt;}
.x88{left:57.866667pt;}
.x47{left:60.266667pt;}
.x10{left:64.933333pt;}
.x1{left:66.200000pt;}
.x3{left:72.933333pt;}
.xb1{left:75.000000pt;}
.xae{left:76.133333pt;}
.xb3{left:77.266667pt;}
.x37{left:81.066667pt;}
.x14{left:83.800000pt;}
.x11{left:84.800000pt;}
.x2c{left:86.398667pt;}
.x34{left:87.333333pt;}
.x9d{left:89.600000pt;}
.xa5{left:90.533333pt;}
.xa9{left:91.466667pt;}
.x59{left:93.866667pt;}
.x58{left:95.800000pt;}
.xaf{left:97.266667pt;}
.x21{left:99.000000pt;}
.x8d{left:100.266667pt;}
.x89{left:103.000000pt;}
.x13{left:104.000000pt;}
.x30{left:105.600000pt;}
.x9e{left:107.800000pt;}
.xa4{left:109.066667pt;}
.xba{left:110.866667pt;}
.x6d{left:112.133333pt;}
.xb0{left:113.600000pt;}
.x99{left:115.200000pt;}
.x77{left:116.266667pt;}
.x28{left:117.266667pt;}
.x45{left:118.533333pt;}
.x8a{left:120.800000pt;}
.x78{left:122.400000pt;}
.xaa{left:125.066667pt;}
.xa8{left:126.200000pt;}
.xb4{left:128.800000pt;}
.x82{left:135.000000pt;}
.xd{left:136.800000pt;}
.xa{left:138.400000pt;}
.x8b{left:142.666667pt;}
.xb5{left:149.066667pt;}
.xb8{left:150.200000pt;}
.x71{left:151.466667pt;}
.xa7{left:152.600000pt;}
.xc{left:154.066667pt;}
.xbb{left:155.000000pt;}
.xb{left:157.733333pt;}
.xbd{left:161.266667pt;}
.x27{left:165.600000pt;}
.x2d{left:167.333333pt;}
.x4{left:169.600000pt;}
.x7b{left:181.266667pt;}
.x4f{left:182.666667pt;}
.x46{left:184.798667pt;}
.x50{left:186.666667pt;}
.xab{left:189.066667pt;}
.x4a{left:192.933333pt;}
.x95{left:197.400000pt;}
.x51{left:198.866667pt;}
.xbf{left:200.600000pt;}
.x6f{left:204.600000pt;}
.x1c{left:209.866667pt;}
.xb6{left:212.933333pt;}
.x2e{left:214.200000pt;}
.x90{left:217.400000pt;}
.xb7{left:219.200000pt;}
.x48{left:220.266667pt;}
.xa6{left:222.866667pt;}
.x1d{left:224.266667pt;}
.x4b{left:226.066667pt;}
.x2f{left:228.466667pt;}
.x9a{left:230.400000pt;}
.x52{left:232.000000pt;}
.x5d{left:233.066667pt;}
.x70{left:234.066667pt;}
.xe{left:235.333333pt;}
.xbe{left:238.533333pt;}
.xb9{left:239.466667pt;}
.x40{left:240.800000pt;}
.x8e{left:243.200000pt;}
.x86{left:244.466667pt;}
.x3e{left:246.200000pt;}
.x60{left:248.933333pt;}
.x64{left:250.200000pt;}
.xc2{left:252.266667pt;}
.x9b{left:255.000000pt;}
.x43{left:256.466667pt;}
.x18{left:257.733333pt;}
.x23{left:260.800000pt;}
.x2a{left:262.066667pt;}
.x24{left:263.666667pt;}
.x29{left:264.800000pt;}
.x61{left:267.000000pt;}
.x81{left:268.466667pt;}
.x1b{left:271.466667pt;}
.x5f{left:272.466667pt;}
.x49{left:274.200000pt;}
.x25{left:276.466667pt;}
.x12{left:277.866667pt;}
.x5b{left:279.666667pt;}
.x62{left:285.266667pt;}
.x53{left:288.000000pt;}
.x55{left:288.933333pt;}
.x9f{left:290.200000pt;}
.x4c{left:291.666667pt;}
.x63{left:293.266667pt;}
.x65{left:295.800000pt;}
.x91{left:299.466667pt;}
.x57{left:302.866667pt;}
.x26{left:304.466667pt;}
.x5a{left:306.533333pt;}
.x5c{left:308.133333pt;}
.x54{left:309.266667pt;}
.x7f{left:310.400000pt;}
.x42{left:311.333333pt;}
.x44{left:313.866667pt;}
.x22{left:315.200000pt;}
.xa0{left:317.600000pt;}
.x67{left:319.666667pt;}
.x1f{left:322.066667pt;}
.x3f{left:323.333333pt;}
.x6a{left:324.800000pt;}
.x31{left:326.200000pt;}
.x41{left:328.266667pt;}
.x20{left:329.400000pt;}
.x79{left:330.666667pt;}
.x7c{left:332.000000pt;}
.x19{left:336.133333pt;}
.xac{left:337.266667pt;}
.x1a{left:338.400000pt;}
.x32{left:340.466667pt;}
.x8f{left:342.200000pt;}
.x5{left:343.666667pt;}
.x6{left:345.400000pt;}
.x97{left:346.666667pt;}
.x98{left:348.265333pt;}
.x84{left:349.598667pt;}
.x1e{left:350.533333pt;}
.x6c{left:354.200000pt;}
.xa1{left:355.200000pt;}
.x33{left:356.800000pt;}
.x5e{left:358.533333pt;}
.x92{left:362.666667pt;}
.x66{left:363.800000pt;}
.xa2{left:364.800000pt;}
.x68{left:366.533333pt;}
.x96{left:368.932000pt;}
.x3c{left:370.066667pt;}
.x16{left:375.466667pt;}
.x80{left:384.932000pt;}
.x2b{left:385.866667pt;}
.xa3{left:387.200000pt;}
.x73{left:389.265333pt;}
.x35{left:390.533333pt;}
.x7a{left:392.598667pt;}
.x9c{left:393.866667pt;}
.x56{left:395.200000pt;}
.x4d{left:396.598667pt;}
.x36{left:401.400000pt;}
.x93{left:403.466667pt;}
.x7{left:407.200000pt;}
.x83{left:408.265333pt;}
.x69{left:410.866667pt;}
.x17{left:413.266667pt;}
.xc1{left:419.000000pt;}
.x74{left:423.200000pt;}
.x6b{left:425.600000pt;}
.x3d{left:433.733333pt;}
.xbc{left:436.266667pt;}
.x15{left:439.800000pt;}
.x75{left:441.400000pt;}
.x8{left:442.666667pt;}
.x9{left:449.733333pt;}
.x94{left:469.733333pt;}
.x4e{left:491.333333pt;}
.x72{left:511.666667pt;}
.x76{left:513.066667pt;}
.x6e{left:531.666667pt;}
.x3b{left:532.800000pt;}
.x7d{left:535.000000pt;}
.xc0{left:566.400000pt;}
}




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