
    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_722c48ff56b403ee2e98b33c.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.675781;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_8ba605ee536d19b104de4f2d.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.100098;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_7a1067817dd57e0380028f59.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.100098;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_c8ce1aef1b3e97bc57f0997d.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_5f86ae88a2fb112e6b6f231f.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.094727;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_5a6d359db4fe1f2e8cf20177.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_798599113f120e4ca48c63be.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_83c88e4df050a0dc81d1858d.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_eba82e78a487e374f5e0f7da.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_d38dadf3f1af531f8dcc7275.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_7c1c0ab5ce5726d5f1f0afa6.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_91e0d07a85589152c70b4f93.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_d039f966845def1bea79cfd2.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_1d1a8f460f441e32d3656e99.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.917969;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_1c50393166dd0f95ad79a353.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_c603c94b5b1f2b69a1f3ef47.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.088379;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_f4c7d6bb0f7fe652038460b3.woff2')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_e51eb0dcfd8bb2846c6becd0.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_ccc9ccdecd1ba1b2b8371b8b.woff2')format("woff");}.ff13{font-family:ff13;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:ff14;src:url('chunks/assets/font_618ea237168a52b8759b7983.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.682129;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_c02a92bbb0099d6f3a2ff1a0.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.925293;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_430bebecca9544a5caa4a35d.woff2')format("woff");}.ff16{font-family:ff16;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:ff17;src:url('chunks/assets/font_67627dce53baa839e5025122.woff2')format("woff");}.ff17{font-family:ff17;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:ff18;src:url('chunks/assets/font_6c5504238d913128430e544b.woff2')format("woff");}.ff18{font-family:ff18;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:ff19;src:url('chunks/assets/font_707cb7f68f481a4bf54c3be6.woff2')format("woff");}.ff19{font-family:ff19;line-height:1.102051;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_14678bbadb8b30c394c1cd60.woff2')format("woff");}.ff1a{font-family:ff1a;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:ff1b;src:url('chunks/assets/font_e1f20caa0e01bd1b850244bc.woff2')format("woff");}.ff1b{font-family:ff1b;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:ff1c;src:url('chunks/assets/font_16e957cbb4f4ed89dbc8be23.woff2')format("woff");}.ff1c{font-family:ff1c;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:ff1d;src:url('chunks/assets/font_e67766e5d35f4980779106ce.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_ed942263c90cbfb0280569fb.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:1.102051;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_082adac3b406ab949dd88c72.woff2')format("woff");}.ff1f{font-family:ff1f;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:ff20;src:url('chunks/assets/font_71912385418a11ea436ce0ab.woff2')format("woff");}.ff20{font-family:ff20;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:ff21;src:url('chunks/assets/font_51d9d5da9649d8c0198cf2d7.woff2')format("woff");}.ff21{font-family:ff21;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:ff22;src:url('chunks/assets/font_82bcc00a46fa3997895c36f6.woff2')format("woff");}.ff22{font-family:ff22;line-height:0.680176;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_236347144a38ea8d249cd765.woff2')format("woff");}.ff23{font-family:ff23;line-height:0.681152;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_e9a00d6b4f51db9c27960932.woff2')format("woff");}.ff24{font-family:ff24;line-height:0.687500;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_45771040aaa4989d13d8b6d7.woff2')format("woff");}.ff25{font-family:ff25;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;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.260870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260870,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.321429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321429,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.328947,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328947,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328947,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:2.880000px;}
.ls8{letter-spacing:-0.634752px;}
.ls7{letter-spacing:-0.497952px;}
.lsa{letter-spacing:-0.443232px;}
.ls9{letter-spacing:-0.404928px;}
.ls3a{letter-spacing:-0.241920px;}
.ls3{letter-spacing:-0.229824px;}
.ls35{letter-spacing:-0.198720px;}
.ls2c{letter-spacing:-0.185472px;}
.ls1f{letter-spacing:-0.172224px;}
.ls26{letter-spacing:-0.165600px;}
.ls23{letter-spacing:-0.152352px;}
.ls25{letter-spacing:-0.145728px;}
.ls1{letter-spacing:-0.139104px;}
.ls24{letter-spacing:-0.132480px;}
.ls22{letter-spacing:-0.125856px;}
.ls33{letter-spacing:-0.119232px;}
.ls2e{letter-spacing:-0.112608px;}
.ls2d{letter-spacing:-0.105984px;}
.ls34{letter-spacing:-0.092736px;}
.ls21{letter-spacing:-0.086112px;}
.ls30{letter-spacing:-0.079488px;}
.ls20{letter-spacing:-0.066240px;}
.ls32{letter-spacing:-0.059616px;}
.ls2f{letter-spacing:-0.052992px;}
.ls31{letter-spacing:-0.046368px;}
.ls2a{letter-spacing:-0.036000px;}
.ls27{letter-spacing:-0.021600px;}
.ls39{letter-spacing:-0.014400px;}
.ls0{letter-spacing:0.000000px;}
.ls36{letter-spacing:0.014400px;}
.ls29{letter-spacing:0.021600px;}
.ls28{letter-spacing:0.036000px;}
.ls3b{letter-spacing:0.069984px;}
.ls3e{letter-spacing:0.093312px;}
.ls3c{letter-spacing:0.118656px;}
.ls1c{letter-spacing:0.123552px;}
.ls3d{letter-spacing:0.124416px;}
.ls15{letter-spacing:0.133056px;}
.ls11{letter-spacing:0.152064px;}
.ls3f{letter-spacing:0.155520px;}
.ls16{letter-spacing:0.166320px;}
.ls40{letter-spacing:0.178848px;}
.ls1b{letter-spacing:0.180576px;}
.lsb{letter-spacing:0.199584px;}
.ls12{letter-spacing:0.209088px;}
.ls1a{letter-spacing:0.237600px;}
.lsf{letter-spacing:0.242352px;}
.ls18{letter-spacing:0.247104px;}
.ls5{letter-spacing:0.252000px;}
.ls10{letter-spacing:0.256608px;}
.lsd{letter-spacing:0.266112px;}
.ls14{letter-spacing:0.270864px;}
.ls13{letter-spacing:0.275616px;}
.ls17{letter-spacing:0.285120px;}
.ls19{letter-spacing:0.299376px;}
.ls6{letter-spacing:0.299520px;}
.lse{letter-spacing:0.304128px;}
.lsc{letter-spacing:0.389664px;}
.ls37{letter-spacing:38.484000px;}
.ls1e{letter-spacing:837.000000px;}
.ls4{letter-spacing:843.120288px;}
.ls38{letter-spacing:846.000000px;}
.ls2{letter-spacing:846.000288px;}
.ls2b{letter-spacing:847.440000px;}
.ls1d{letter-spacing:847.440576px;}
.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;}
}
.ws2e{word-spacing:-19.595520px;}
.ws2d{word-spacing:-19.509984px;}
.ws21{word-spacing:-18.036000px;}
.ws22{word-spacing:-18.021600px;}
.ws2a{word-spacing:-18.014400px;}
.ws29{word-spacing:-18.000000px;}
.ws2b{word-spacing:-17.985600px;}
.ws20{word-spacing:-17.978400px;}
.ws23{word-spacing:-17.964000px;}
.ws24{word-spacing:-16.560000px;}
.ws1a{word-spacing:-16.493760px;}
.ws25{word-spacing:-16.480512px;}
.ws1b{word-spacing:-16.473888px;}
.ws28{word-spacing:-16.454016px;}
.ws1c{word-spacing:-16.434144px;}
.ws1e{word-spacing:-16.427520px;}
.ws27{word-spacing:-16.414272px;}
.ws1f{word-spacing:-16.394400px;}
.ws19{word-spacing:-16.387776px;}
.ws26{word-spacing:-16.374528px;}
.ws2c{word-spacing:-14.878080px;}
.ws1d{word-spacing:-14.837760px;}
.ws7{word-spacing:-0.437184px;}
.wsa{word-spacing:-0.351648px;}
.ws15{word-spacing:-0.346896px;}
.ws13{word-spacing:-0.332640px;}
.wsf{word-spacing:-0.323136px;}
.ws10{word-spacing:-0.318384px;}
.ws9{word-spacing:-0.313632px;}
.wsc{word-spacing:-0.304128px;}
.ws14{word-spacing:-0.294624px;}
.wsb{word-spacing:-0.289872px;}
.ws16{word-spacing:-0.285120px;}
.wse{word-spacing:-0.256608px;}
.ws6{word-spacing:-0.247104px;}
.ws17{word-spacing:-0.228096px;}
.ws12{word-spacing:-0.213840px;}
.wsd{word-spacing:-0.199584px;}
.ws11{word-spacing:-0.180576px;}
.ws18{word-spacing:-0.171072px;}
.ws8{word-spacing:-0.047520px;}
.ws0{word-spacing:0.000000px;}
.ws1{word-spacing:0.175104px;}
.ws4{word-spacing:0.350208px;}
.ws5{word-spacing:0.388512px;}
.ws2{word-spacing:0.443232px;}
.ws3{word-spacing:0.580032px;}
._d{margin-left:-15.990480px;}
._9{margin-left:-14.773392px;}
._6{margin-left:-13.761936px;}
._4{margin-left:-12.270384px;}
._7{margin-left:-10.721232px;}
._b{margin-left:-9.591120px;}
._8{margin-left:-8.378352px;}
._5{margin-left:-6.850368px;}
._c{margin-left:-5.733360px;}
._3{margin-left:-4.241232px;}
._a{margin-left:-2.865456px;}
._2{margin-left:-1.140480px;}
._1{width:1.039680px;}
._19{width:2.312640px;}
._15{width:3.564000px;}
._18{width:4.903200px;}
._16{width:6.541200px;}
._11{width:7.646400px;}
._10{width:8.683200px;}
._14{width:9.892800px;}
._20{width:10.987200px;}
._1b{width:12.168000px;}
._24{width:13.456800px;}
._22{width:14.572800px;}
._f{width:16.221600px;}
._25{width:19.958400px;}
._1c{width:21.052800px;}
._13{width:22.384800px;}
._1a{width:24.120000px;}
._17{width:26.049600px;}
._1f{width:27.288000px;}
._1e{width:28.598400px;}
._23{width:30.924000px;}
._21{width:34.473600px;}
._12{width:36.540288px;}
._1d{width:37.561824px;}
._26{width:56.433600px;}
._e{width:71.668800px;}
._0{width:847.728288px;}
.fc2{color:transparent;}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(0,0,0);}
.fsd{font-size:41.760000px;}
.fsc{font-size:44.640000px;}
.fsb{font-size:47.520000px;}
.fs2{font-size:50.400000px;}
.fs7{font-size:54.720000px;}
.fs4{font-size:60.480000px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fse{font-size:77.760000px;}
.fsa{font-size:83.520000px;}
.fs5{font-size:96.480000px;}
.fs3{font-size:108.000000px;}
.fs9{font-size:146.880000px;}
.fs6{font-size:155.520000px;}
.fs8{font-size:174.240000px;}
.y0{bottom:0.000000px;}
.y27f{bottom:14.160000px;}
.y4e{bottom:23.100000px;}
.y3{bottom:23.820000px;}
.y27e{bottom:33.000000px;}
.y2{bottom:52.500000px;}
.y4d{bottom:75.600000px;}
.y1{bottom:76.320000px;}
.y1fd{bottom:110.880000px;}
.y9f{bottom:111.600000px;}
.ybc{bottom:112.320000px;}
.y1c8{bottom:112.680000px;}
.y29c{bottom:116.640000px;}
.y11c{bottom:119.160000px;}
.y96{bottom:119.520000px;}
.y65{bottom:123.480000px;}
.yfb{bottom:123.840000px;}
.yd4{bottom:124.200000px;}
.yfa{bottom:124.560000px;}
.y178{bottom:125.640000px;}
.y140{bottom:126.360000px;}
.y179{bottom:126.720000px;}
.y152{bottom:127.080000px;}
.y17c{bottom:127.800000px;}
.y14e{bottom:128.160000px;}
.y24e{bottom:129.240000px;}
.y204{bottom:129.600000px;}
.y86{bottom:130.320000px;}
.y25c{bottom:130.680000px;}
.y1a3{bottom:131.400000px;}
.y190{bottom:132.120000px;}
.y19a{bottom:132.840000px;}
.y1c7{bottom:133.200000px;}
.y1de{bottom:134.280000px;}
.y1be{bottom:136.440000px;}
.y23e{bottom:138.240000px;}
.y29b{bottom:138.960000px;}
.y64{bottom:139.320000px;}
.y11b{bottom:140.040000px;}
.y28b{bottom:140.760000px;}
.ye3{bottom:145.080000px;}
.y103{bottom:145.440000px;}
.yeb{bottom:145.800000px;}
.yab{bottom:146.520000px;}
.y130{bottom:147.960000px;}
.y194{bottom:148.320000px;}
.y156{bottom:148.680000px;}
.y1fc{bottom:149.040000px;}
.y9e{bottom:151.560000px;}
.y1a2{bottom:151.920000px;}
.ybb{bottom:152.640000px;}
.y1c6{bottom:153.360000px;}
.y63{bottom:155.160000px;}
.y9c{bottom:156.960000px;}
.y29a{bottom:161.640000px;}
.y276{bottom:164.880000px;}
.y95{bottom:165.960000px;}
.yd3{bottom:166.320000px;}
.ye2{bottom:166.680000px;}
.y102{bottom:167.040000px;}
.y13f{bottom:167.760000px;}
.y192{bottom:168.120000px;}
.y151{bottom:168.480000px;}
.y155{bottom:168.840000px;}
.y14d{bottom:169.200000px;}
.y203{bottom:170.640000px;}
.y1e{bottom:171.000000px;}
.y27b{bottom:171.360000px;}
.y18f{bottom:171.720000px;}
.y1a1{bottom:172.080000px;}
.y1af{bottom:172.800000px;}
.y1c5{bottom:173.880000px;}
.y26c{bottom:174.600000px;}
.y1dd{bottom:175.320000px;}
.y85{bottom:176.400000px;}
.y25b{bottom:176.760000px;}
.y1bd{bottom:177.120000px;}
.y1eb{bottom:178.200000px;}
.y11a{bottom:180.720000px;}
.y23d{bottom:182.520000px;}
.y222{bottom:183.960000px;}
.y62{bottom:186.840000px;}
.y174{bottom:187.200000px;}
.y160{bottom:187.560000px;}
.yea{bottom:187.920000px;}
.ye1{bottom:188.280000px;}
.y12f{bottom:188.640000px;}
.y150{bottom:189.000000px;}
.y1d{bottom:189.360000px;}
.y14c{bottom:189.720000px;}
.y1fb{bottom:190.080000px;}
.y202{bottom:191.520000px;}
.y18e{bottom:192.600000px;}
.yba{bottom:193.320000px;}
.y1c4{bottom:194.040000px;}
.y27a{bottom:194.760000px;}
.y1dc{bottom:195.480000px;}
.y1bc{bottom:197.280000px;}
.y26b{bottom:197.640000px;}
.y25a{bottom:200.160000px;}
.y9d{bottom:201.240000px;}
.y119{bottom:201.600000px;}
.y9b{bottom:203.040000px;}
.y275{bottom:203.400000px;}
.y23c{bottom:205.200000px;}
.y24d{bottom:206.280000px;}
.y299{bottom:206.640000px;}
.y221{bottom:207.000000px;}
.y61{bottom:207.720000px;}
.y177{bottom:208.080000px;}
.y13e{bottom:208.440000px;}
.yd2{bottom:208.800000px;}
.yf9{bottom:209.160000px;}
.ye0{bottom:209.520000px;}
.y20d{bottom:209.880000px;}
.y14b{bottom:210.240000px;}
.y1c{bottom:210.600000px;}
.y201{bottom:211.680000px;}
.y94{bottom:212.040000px;}
.y22e{bottom:212.400000px;}
.y18d{bottom:212.760000px;}
.y1ae{bottom:213.480000px;}
.y1c3{bottom:214.200000px;}
.y1db{bottom:215.640000px;}
.y279{bottom:217.800000px;}
.y1ea{bottom:219.600000px;}
.y26a{bottom:221.040000px;}
.y118{bottom:221.760000px;}
.y4c{bottom:222.120000px;}
.y84{bottom:222.480000px;}
.y259{bottom:223.200000px;}
.yaa{bottom:227.520000px;}
.y173{bottom:228.240000px;}
.y15f{bottom:228.600000px;}
.y13d{bottom:228.960000px;}
.y193{bottom:229.320000px;}
.y12e{bottom:229.680000px;}
.yd1{bottom:230.400000px;}
.yf8{bottom:230.760000px;}
.y1fa{bottom:231.480000px;}
.y200{bottom:231.840000px;}
.y18c{bottom:232.920000px;}
.y1a0{bottom:233.280000px;}
.yb9{bottom:233.640000px;}
.y1c2{bottom:234.360000px;}
.y22d{bottom:235.440000px;}
.y1da{bottom:236.160000px;}
.y4b{bottom:236.520000px;}
.y1bb{bottom:238.320000px;}
.y1e9{bottom:240.120000px;}
.y278{bottom:241.200000px;}
.y274{bottom:241.560000px;}
.y117{bottom:241.920000px;}
.y269{bottom:244.080000px;}
.y24c{bottom:244.440000px;}
.y258{bottom:246.600000px;}
.y9a{bottom:249.120000px;}
.y191{bottom:249.480000px;}
.y12d{bottom:249.840000px;}
.y14f{bottom:250.200000px;}
.y14a{bottom:250.560000px;}
.y4a{bottom:250.920000px;}
.ydf{bottom:251.280000px;}
.y60{bottom:251.640000px;}
.yf7{bottom:252.000000px;}
.y28a{bottom:252.360000px;}
.y18b{bottom:253.080000px;}
.y220{bottom:253.440000px;}
.y19f{bottom:254.160000px;}
.y1b{bottom:254.520000px;}
.y1c1{bottom:254.880000px;}
.y1d9{bottom:256.320000px;}
.y93{bottom:258.120000px;}
.y1ba{bottom:258.840000px;}
.y1e8{bottom:260.280000px;}
.y273{bottom:264.600000px;}
.y268{bottom:267.480000px;}
.ya9{bottom:267.840000px;}
.y83{bottom:268.560000px;}
.y172{bottom:268.920000px;}
.y176{bottom:269.280000px;}
.y13c{bottom:269.640000px;}
.y12c{bottom:270.000000px;}
.y199{bottom:270.360000px;}
.y149{bottom:270.720000px;}
.y1f9{bottom:272.520000px;}
.ye9{bottom:272.880000px;}
.yd0{bottom:273.240000px;}
.yf6{bottom:273.600000px;}
.y298{bottom:273.960000px;}
.yb8{bottom:274.320000px;}
.y1c0{bottom:275.040000px;}
.y1d8{bottom:276.480000px;}
.y21f{bottom:276.840000px;}
.y49{bottom:277.200000px;}
.y1b9{bottom:279.000000px;}
.y1e7{bottom:280.800000px;}
.y22c{bottom:282.240000px;}
.y116{bottom:282.960000px;}
.y289{bottom:283.320000px;}
.y272{bottom:287.640000px;}
.y171{bottom:289.440000px;}
.y197{bottom:290.160000px;}
.y12b{bottom:290.520000px;}
.y267{bottom:290.880000px;}
.y148{bottom:291.240000px;}
.y1f8{bottom:292.680000px;}
.y48{bottom:293.040000px;}
.y257{bottom:293.400000px;}
.y18a{bottom:294.120000px;}
.ycf{bottom:294.480000px;}
.yf5{bottom:294.840000px;}
.y99{bottom:295.200000px;}
.y1d7{bottom:296.640000px;}
.y23b{bottom:298.440000px;}
.y1b8{bottom:299.520000px;}
.y21e{bottom:300.240000px;}
.y1e6{bottom:300.960000px;}
.y5f{bottom:301.680000px;}
.y115{bottom:303.480000px;}
.y92{bottom:304.200000px;}
.y1a{bottom:304.560000px;}
.y22b{bottom:305.280000px;}
.y24b{bottom:306.000000px;}
.y47{bottom:308.520000px;}
.y170{bottom:309.960000px;}
.y13b{bottom:310.680000px;}
.y154{bottom:311.040000px;}
.y147{bottom:311.400000px;}
.y1f7{bottom:312.840000px;}
.y288{bottom:313.560000px;}
.y266{bottom:314.280000px;}
.y82{bottom:314.640000px;}
.y101{bottom:315.360000px;}
.yce{bottom:315.720000px;}
.yf4{bottom:316.080000px;}
.y256{bottom:316.440000px;}
.y1d6{bottom:317.160000px;}
.y297{bottom:318.960000px;}
.y1e5{bottom:321.120000px;}
.y23a{bottom:321.840000px;}
.y46{bottom:322.920000px;}
.y21d{bottom:323.280000px;}
.y114{bottom:323.640000px;}
.y22a{bottom:328.680000px;}
.y24a{bottom:329.040000px;}
.y13a{bottom:330.840000px;}
.y12a{bottom:331.200000px;}
.y146{bottom:331.560000px;}
.y20c{bottom:331.920000px;}
.y1f6{bottom:333.000000px;}
.y271{bottom:334.440000px;}
.y189{bottom:335.160000px;}
.y1ad{bottom:335.880000px;}
.y45{bottom:337.320000px;}
.y255{bottom:339.840000px;}
.y1b7{bottom:340.200000px;}
.y98{bottom:341.280000px;}
.y296{bottom:341.640000px;}
.y113{bottom:343.800000px;}
.y239{bottom:344.880000px;}
.y21c{bottom:346.680000px;}
.ya8{bottom:348.840000px;}
.y91{bottom:350.280000px;}
.y16f{bottom:350.640000px;}
.y15e{bottom:351.000000px;}
.y44{bottom:351.360000px;}
.y5e{bottom:351.720000px;}
.y229{bottom:352.080000px;}
.y20b{bottom:352.440000px;}
.y1f5{bottom:353.520000px;}
.y19{bottom:354.600000px;}
.yb7{bottom:355.320000px;}
.y19e{bottom:355.680000px;}
.y1ac{bottom:356.040000px;}
.y1d5{bottom:357.480000px;}
.ycd{bottom:357.840000px;}
.yf3{bottom:358.200000px;}
.y100{bottom:358.560000px;}
.y81{bottom:360.720000px;}
.y1b6{bottom:361.080000px;}
.y1e4{bottom:361.800000px;}
.y254{bottom:363.240000px;}
.y112{bottom:363.960000px;}
.y43{bottom:366.120000px;}
.y238{bottom:368.280000px;}
.y21b{bottom:370.080000px;}
.y196{bottom:371.160000px;}
.y15d{bottom:371.520000px;}
.y139{bottom:371.880000px;}
.y129{bottom:372.240000px;}
.y20a{bottom:372.960000px;}
.y1f4{bottom:373.680000px;}
.y287{bottom:374.400000px;}
.y228{bottom:375.120000px;}
.y188{bottom:375.480000px;}
.y249{bottom:375.840000px;}
.y19d{bottom:376.200000px;}
.y1d4{bottom:377.640000px;}
.yde{bottom:379.080000px;}
.ycc{bottom:379.440000px;}
.yf2{bottom:379.800000px;}
.y42{bottom:380.520000px;}
.y270{bottom:380.880000px;}
.y1b5{bottom:381.240000px;}
.y1e3{bottom:381.960000px;}
.y265{bottom:384.120000px;}
.y295{bottom:386.640000px;}
.y97{bottom:387.360000px;}
.ya7{bottom:389.520000px;}
.y16e{bottom:391.680000px;}
.y128{bottom:392.400000px;}
.y209{bottom:393.120000px;}
.y21a{bottom:393.480000px;}
.y1f3{bottom:393.840000px;}
.y41{bottom:394.560000px;}
.yb6{bottom:395.640000px;}
.y90{bottom:396.360000px;}
.y248{bottom:398.880000px;}
.ycb{bottom:400.680000px;}
.y5d{bottom:401.040000px;}
.y1b4{bottom:401.400000px;}
.y1e2{bottom:402.120000px;}
.y18{bottom:403.560000px;}
.y26f{bottom:404.280000px;}
.y253{bottom:404.640000px;}
.y111{bottom:405.360000px;}
.y80{bottom:406.800000px;}
.y264{bottom:407.160000px;}
.y40{bottom:408.960000px;}
.y15c{bottom:412.200000px;}
.y127{bottom:412.560000px;}
.y165{bottom:413.280000px;}
.y75{bottom:414.000000px;}
.y237{bottom:415.080000px;}
.y19c{bottom:416.520000px;}
.y187{bottom:416.880000px;}
.y1ab{bottom:417.600000px;}
.y1d3{bottom:419.040000px;}
.ydd{bottom:421.920000px;}
.yef{bottom:422.280000px;}
.y3f{bottom:423.360000px;}
.y277{bottom:424.800000px;}
.y110{bottom:425.520000px;}
.y26e{bottom:427.680000px;}
.ya6{bottom:429.840000px;}
.y263{bottom:430.560000px;}
.y294{bottom:431.640000px;}
.y16d{bottom:432.360000px;}
.y15b{bottom:432.720000px;}
.y8f{bottom:433.440000px;}
.y1ff{bottom:434.160000px;}
.y286{bottom:435.240000px;}
.yb5{bottom:436.320000px;}
.y3e{bottom:437.760000px;}
.y219{bottom:439.920000px;}
.yca{bottom:440.640000px;}
.yf1{bottom:441.000000px;}
.y252{bottom:442.440000px;}
.ye8{bottom:442.800000px;}
.yee{bottom:443.160000px;}
.y1e1{bottom:443.520000px;}
.y247{bottom:445.680000px;}
.y5c{bottom:448.920000px;}
.y26d{bottom:450.720000px;}
.y17{bottom:451.440000px;}
.y3d{bottom:451.800000px;}
.y15a{bottom:452.880000px;}
.y7f{bottom:453.240000px;}
.y195{bottom:453.600000px;}
.y126{bottom:453.960000px;}
.y164{bottom:454.320000px;}
.y208{bottom:454.680000px;}
.y1f2{bottom:455.400000px;}
.y236{bottom:456.480000px;}
.y186{bottom:457.560000px;}
.y19b{bottom:457.920000px;}
.y1aa{bottom:458.280000px;}
.y1d2{bottom:459.720000px;}
.y218{bottom:460.440000px;}
.ydc{bottom:461.880000px;}
.y251{bottom:462.960000px;}
.ye7{bottom:464.400000px;}
.y285{bottom:465.480000px;}
.y3c{bottom:466.560000px;}
.y5b{bottom:467.640000px;}
.y246{bottom:468.720000px;}
.y10f{bottom:469.080000px;}
.y16{bottom:470.160000px;}
.ya5{bottom:470.520000px;}
.y227{bottom:471.240000px;}
.y16c{bottom:473.400000px;}
.y175{bottom:473.760000px;}
.y125{bottom:474.120000px;}
.y145{bottom:474.480000px;}
.y207{bottom:474.840000px;}
.y74{bottom:475.560000px;}
.yb4{bottom:476.640000px;}
.y1bf{bottom:478.800000px;}
.y1a9{bottom:479.160000px;}
.y8e{bottom:479.520000px;}
.y3b{bottom:480.240000px;}
.y1d1{bottom:480.600000px;}
.y1e0{bottom:480.960000px;}
.yed{bottom:483.480000px;}
.yc9{bottom:484.200000px;}
.yf0{bottom:484.560000px;}
.y5a{bottom:485.640000px;}
.y27d{bottom:486.360000px;}
.y15{bottom:488.520000px;}
.y10e{bottom:490.680000px;}
.y245{bottom:492.120000px;}
.y26{bottom:492.840000px;}
.y3a{bottom:493.920000px;}
.y159{bottom:494.280000px;}
.y138{bottom:494.640000px;}
.y144{bottom:495.000000px;}
.y163{bottom:495.360000px;}
.y284{bottom:495.720000px;}
.y1f1{bottom:496.080000px;}
.y185{bottom:498.960000px;}
.y7e{bottom:499.320000px;}
.y1d0{bottom:500.760000px;}
.y250{bottom:501.480000px;}
.y59{bottom:504.000000px;}
.ydb{bottom:505.440000px;}
.yc8{bottom:505.800000px;}
.y14{bottom:506.880000px;}
.y39{bottom:509.400000px;}
.y226{bottom:509.760000px;}
.ya4{bottom:510.840000px;}
.y10d{bottom:512.280000px;}
.y244{bottom:512.640000px;}
.y16b{bottom:514.440000px;}
.y124{bottom:515.160000px;}
.y143{bottom:515.520000px;}
.y206{bottom:515.880000px;}
.y162{bottom:516.240000px;}
.y1fe{bottom:516.600000px;}
.y1f0{bottom:516.960000px;}
.yb3{bottom:517.320000px;}
.y235{bottom:517.680000px;}
.y1a8{bottom:519.480000px;}
.y1b3{bottom:519.840000px;}
.y1df{bottom:520.560000px;}
.y1cf{bottom:520.920000px;}
.y293{bottom:521.640000px;}
.y25{bottom:522.720000px;}
.y38{bottom:524.160000px;}
.y27c{bottom:524.520000px;}
.y58{bottom:525.600000px;}
.y8d{bottom:525.960000px;}
.yec{bottom:526.680000px;}
.yda{bottom:527.040000px;}
.y13{bottom:528.480000px;}
.y225{bottom:532.800000px;}
.y217{bottom:533.160000px;}
.y158{bottom:535.320000px;}
.y123{bottom:535.680000px;}
.y137{bottom:536.040000px;}
.y161{bottom:536.400000px;}
.y73{bottom:537.120000px;}
.y37{bottom:538.560000px;}
.y1a7{bottom:539.640000px;}
.y184{bottom:540.000000px;}
.y1b2{bottom:540.360000px;}
.y1ce{bottom:541.080000px;}
.y292{bottom:543.960000px;}
.y7d{bottom:545.400000px;}
.y283{bottom:546.840000px;}
.y24f{bottom:547.560000px;}
.yc7{bottom:547.920000px;}
.yd9{bottom:548.640000px;}
.y262{bottom:551.160000px;}
.ya3{bottom:551.520000px;}
.y36{bottom:552.960000px;}
.y10c{bottom:554.040000px;}
.y16a{bottom:555.480000px;}
.y122{bottom:555.840000px;}
.y142{bottom:556.200000px;}
.y136{bottom:556.560000px;}
.y205{bottom:556.920000px;}
.y1ef{bottom:557.280000px;}
.yb2{bottom:557.640000px;}
.y183{bottom:560.880000px;}
.y1cd{bottom:561.600000px;}
.y57{bottom:563.760000px;}
.y234{bottom:564.480000px;}
.y12{bottom:566.280000px;}
.y291{bottom:566.640000px;}
.y35{bottom:567.360000px;}
.ye6{bottom:569.160000px;}
.yc6{bottom:569.520000px;}
.yd8{bottom:569.880000px;}
.y24{bottom:570.960000px;}
.y243{bottom:571.320000px;}
.y8c{bottom:572.040000px;}
.y261{bottom:573.840000px;}
.y10b{bottom:576.000000px;}
.y153{bottom:576.360000px;}
.y135{bottom:576.720000px;}
.y72{bottom:577.080000px;}
.y1ee{bottom:577.440000px;}
.y216{bottom:579.240000px;}
.y1a6{bottom:580.680000px;}
.y34{bottom:581.040000px;}
.y1cc{bottom:581.760000px;}
.y233{bottom:587.520000px;}
.y290{bottom:588.960000px;}
.yc5{bottom:590.760000px;}
.y7c{bottom:591.480000px;}
.ya2{bottom:591.840000px;}
.y242{bottom:594.360000px;}
.y33{bottom:596.520000px;}
.y169{bottom:596.880000px;}
.y56{bottom:597.240000px;}
.y1ed{bottom:597.960000px;}
.yb1{bottom:598.320000px;}
.ybd{bottom:598.680000px;}
.y11{bottom:599.760000px;}
.y182{bottom:601.200000px;}
.y1cb{bottom:601.920000px;}
.y215{bottom:602.640000px;}
.y282{bottom:608.040000px;}
.y32{bottom:610.560000px;}
.y23{bottom:610.920000px;}
.yff{bottom:611.640000px;}
.yd7{bottom:612.000000px;}
.yc4{bottom:612.360000px;}
.y55{bottom:613.080000px;}
.y10{bottom:615.960000px;}
.y121{bottom:617.040000px;}
.y134{bottom:617.400000px;}
.y71{bottom:617.760000px;}
.y8b{bottom:618.120000px;}
.y10a{bottom:618.480000px;}
.y260{bottom:620.640000px;}
.y181{bottom:621.360000px;}
.y1ca{bottom:622.080000px;}
.y31{bottom:624.240000px;}
.y214{bottom:625.680000px;}
.y54{bottom:630.360000px;}
.ya1{bottom:632.520000px;}
.yf{bottom:633.240000px;}
.yc3{bottom:633.600000px;}
.y28f{bottom:633.960000px;}
.y232{bottom:634.320000px;}
.y17b{bottom:637.200000px;}
.y7b{bottom:637.560000px;}
.y141{bottom:637.920000px;}
.y1ec{bottom:638.280000px;}
.yb0{bottom:638.640000px;}
.y30{bottom:639.720000px;}
.y241{bottom:640.800000px;}
.y1a5{bottom:641.880000px;}
.y1b1{bottom:642.240000px;}
.y1c9{bottom:642.600000px;}
.y25f{bottom:643.680000px;}
.y53{bottom:647.640000px;}
.y213{bottom:649.080000px;}
.ye{bottom:650.520000px;}
.y2f{bottom:653.760000px;}
.ye5{bottom:654.120000px;}
.yfe{bottom:654.480000px;}
.yc2{bottom:654.840000px;}
.y28e{bottom:656.640000px;}
.y231{bottom:657.360000px;}
.y120{bottom:657.720000px;}
.y133{bottom:658.080000px;}
.y70{bottom:658.440000px;}
.y22{bottom:658.800000px;}
.y109{bottom:660.600000px;}
.y180{bottom:662.400000px;}
.y1b0{bottom:662.760000px;}
.y8a{bottom:664.200000px;}
.y25e{bottom:667.080000px;}
.y2e{bottom:668.520000px;}
.y281{bottom:668.880000px;}
.y52{bottom:669.960000px;}
.y212{bottom:672.480000px;}
.yd{bottom:672.840000px;}
.yd6{bottom:675.720000px;}
.ye4{bottom:676.080000px;}
.y168{bottom:678.240000px;}
.y157{bottom:678.600000px;}
.y132{bottom:678.960000px;}
.yaf{bottom:679.320000px;}
.y230{bottom:680.760000px;}
.y108{bottom:682.200000px;}
.y1a4{bottom:682.560000px;}
.y17f{bottom:682.920000px;}
.y7a{bottom:683.640000px;}
.y2d{bottom:684.720000px;}
.y8{bottom:685.440000px;}
.y240{bottom:687.240000px;}
.y25d{bottom:690.480000px;}
.y224{bottom:695.520000px;}
.yc1{bottom:696.960000px;}
.yd5{bottom:697.320000px;}
.yfd{bottom:697.680000px;}
.y167{bottom:698.400000px;}
.y11f{bottom:698.760000px;}
.y131{bottom:699.120000px;}
.y6f{bottom:699.840000px;}
.y2c{bottom:700.920000px;}
.y17e{bottom:703.080000px;}
.y107{bottom:703.440000px;}
.y22f{bottom:704.160000px;}
.y28d{bottom:709.560000px;}
.y89{bottom:710.280000px;}
.y23f{bottom:710.640000px;}
.y211{bottom:711.000000px;}
.ya0{bottom:713.520000px;}
.y21{bottom:714.600000px;}
.y7{bottom:715.320000px;}
.yc0{bottom:718.560000px;}
.y198{bottom:718.920000px;}
.y11e{bottom:719.280000px;}
.yae{bottom:719.640000px;}
.y6e{bottom:720.000000px;}
.y17d{bottom:723.240000px;}
.y106{bottom:724.680000px;}
.y2b{bottom:725.760000px;}
.y79{bottom:727.560000px;}
.y280{bottom:729.360000px;}
.y29f{bottom:731.520000px;}
.y51{bottom:731.880000px;}
.y210{bottom:734.040000px;}
.yc{bottom:734.400000px;}
.y6{bottom:736.920000px;}
.y166{bottom:739.080000px;}
.yfc{bottom:739.440000px;}
.ybf{bottom:739.800000px;}
.y6d{bottom:740.520000px;}
.y223{bottom:742.320000px;}
.y2a{bottom:744.120000px;}
.y78{bottom:753.840000px;}
.y69{bottom:754.200000px;}
.y88{bottom:756.360000px;}
.y20f{bottom:757.080000px;}
.y11d{bottom:759.600000px;}
.y17a{bottom:759.960000px;}
.yad{bottom:760.320000px;}
.y6c{bottom:760.680000px;}
.ybe{bottom:761.040000px;}
.y29{bottom:762.840000px;}
.yb{bottom:763.920000px;}
.y50{bottom:764.280000px;}
.y105{bottom:764.640000px;}
.y28c{bottom:770.760000px;}
.y68{bottom:771.840000px;}
.y5{bottom:774.720000px;}
.y29e{bottom:776.520000px;}
.y20e{bottom:780.480000px;}
.y6b{bottom:780.840000px;}
.y28{bottom:781.200000px;}
.y67{bottom:787.680000px;}
.y20{bottom:790.560000px;}
.y77{bottom:790.920000px;}
.ya{bottom:791.280000px;}
.y76{bottom:793.080000px;}
.y4f{bottom:793.800000px;}
.y29d{bottom:799.200000px;}
.y27{bottom:799.920000px;}
.yac{bottom:800.640000px;}
.y6a{bottom:801.000000px;}
.y104{bottom:802.080000px;}
.y87{bottom:802.440000px;}
.y66{bottom:803.520000px;}
.y4{bottom:809.640000px;}
.y1f{bottom:817.200000px;}
.y9{bottom:818.640000px;}
.h1b{height:27.000000px;}
.h15{height:27.833203px;}
.h14{height:29.752734px;}
.h6{height:33.591797px;}
.h13{height:33.598125px;}
.hc{height:36.471094px;}
.h12{height:36.898594px;}
.hf{height:38.528438px;}
.h16{height:39.000000px;}
.h8{height:40.310156px;}
.h3{height:40.500000px;}
.h2{height:44.149219px;}
.h9{height:47.988281px;}
.h1c{height:51.827344px;}
.h4{height:55.437188px;}
.h11{height:55.666406px;}
.h1a{height:56.019375px;}
.h17{height:58.317188px;}
.h5{height:60.257813px;}
.h10{height:60.328125px;}
.h18{height:60.890625px;}
.ha{height:64.304297px;}
.h19{height:71.982422px;}
.h7{height:90.386719px;}
.he{height:97.896094px;}
.hb{height:103.654688px;}
.hd{height:116.131641px;}
.h0{height:893.160000px;}
.h1{height:893.250000px;}
.w3{width:9.000000px;}
.w2{width:10.500000px;}
.w7{width:16.500000px;}
.w6{width:18.000000px;}
.w5{width:19.500000px;}
.w4{width:637.920000px;}
.w1{width:638.250000px;}
.w0{width:638.280000px;}
.x0{left:0.000000px;}
.x3{left:1.320000px;}
.x9{left:76.680180px;}
.x18{left:84.000000px;}
.x12{left:93.599856px;}
.x1c{left:95.464224px;}
.x1b{left:101.273796px;}
.x1{left:103.680180px;}
.xc{left:106.380252px;}
.x23{left:110.099844px;}
.x17{left:111.959856px;}
.xd{left:120.599856px;}
.x22{left:126.599868px;}
.x4f{left:131.230224px;}
.x3a{left:134.047116px;}
.x37{left:136.785276px;}
.x26{left:138.059676px;}
.x43{left:139.667724px;}
.x53{left:141.742296px;}
.x27{left:146.699712px;}
.x58{left:152.609616px;}
.x42{left:155.712528px;}
.x1d{left:158.631228px;}
.x2b{left:162.158940px;}
.x56{left:164.883564px;}
.x2e{left:166.944564px;}
.x8{left:170.271252px;}
.x40{left:172.758564px;}
.x15{left:174.215700px;}
.x3e{left:176.133564px;}
.x47{left:178.313616px;}
.x45{left:182.343384px;}
.x29{left:184.782348px;}
.x46{left:185.797116px;}
.x4d{left:187.291260px;}
.x35{left:189.822492px;}
.x30{left:191.329848px;}
.x52{left:192.634992px;}
.x2d{left:194.335704px;}
.x4b{left:195.728760px;}
.x2a{left:197.425044px;}
.x32{left:199.873152px;}
.x34{left:201.072492px;}
.x31{left:202.856688px;}
.x33{left:204.461064px;}
.x49{left:205.783812px;}
.x3f{left:207.185652px;}
.x28{left:210.072492px;}
.x57{left:211.390848px;}
.x2f{left:212.995224px;}
.x4a{left:214.669188px;}
.x4c{left:217.402956px;}
.x4{left:220.228632px;}
.x7{left:221.865228px;}
.xf{left:224.173080px;}
.x14{left:225.809676px;}
.x50{left:226.873152px;}
.x39{left:228.353760px;}
.x48{left:230.718384px;}
.x2c{left:232.124616px;}
.x3d{left:234.075420px;}
.x4e{left:235.402956px;}
.x3c{left:238.685652px;}
.x36{left:241.309188px;}
.x54{left:242.983152px;}
.x38{left:244.407348px;}
.xb{left:252.576416px;}
.x16{left:256.520901px;}
.x51{left:259.309188px;}
.x44{left:261.831276px;}
.x25{left:268.963632px;}
.x59{left:279.069948px;}
.x1e{left:283.286520px;}
.x55{left:286.498152px;}
.x21{left:290.494980px;}
.x3b{left:297.545652px;}
.x41{left:311.902956px;}
.x19{left:314.609642px;}
.xa{left:319.305168px;}
.x13{left:323.249616px;}
.x1f{left:369.348840px;}
.x5{left:418.381574px;}
.x10{left:422.326102px;}
.x6{left:424.455121px;}
.x11{left:428.399203px;}
.x1a{left:483.158520px;}
.x24{left:535.500000px;}
.xe{left:543.000000px;}
.x20{left:544.259880px;}
.x2{left:552.000000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:2.560000pt;}
.ls8{letter-spacing:-0.564224pt;}
.ls7{letter-spacing:-0.442624pt;}
.lsa{letter-spacing:-0.393984pt;}
.ls9{letter-spacing:-0.359936pt;}
.ls3a{letter-spacing:-0.215040pt;}
.ls3{letter-spacing:-0.204288pt;}
.ls35{letter-spacing:-0.176640pt;}
.ls2c{letter-spacing:-0.164864pt;}
.ls1f{letter-spacing:-0.153088pt;}
.ls26{letter-spacing:-0.147200pt;}
.ls23{letter-spacing:-0.135424pt;}
.ls25{letter-spacing:-0.129536pt;}
.ls1{letter-spacing:-0.123648pt;}
.ls24{letter-spacing:-0.117760pt;}
.ls22{letter-spacing:-0.111872pt;}
.ls33{letter-spacing:-0.105984pt;}
.ls2e{letter-spacing:-0.100096pt;}
.ls2d{letter-spacing:-0.094208pt;}
.ls34{letter-spacing:-0.082432pt;}
.ls21{letter-spacing:-0.076544pt;}
.ls30{letter-spacing:-0.070656pt;}
.ls20{letter-spacing:-0.058880pt;}
.ls32{letter-spacing:-0.052992pt;}
.ls2f{letter-spacing:-0.047104pt;}
.ls31{letter-spacing:-0.041216pt;}
.ls2a{letter-spacing:-0.032000pt;}
.ls27{letter-spacing:-0.019200pt;}
.ls39{letter-spacing:-0.012800pt;}
.ls0{letter-spacing:0.000000pt;}
.ls36{letter-spacing:0.012800pt;}
.ls29{letter-spacing:0.019200pt;}
.ls28{letter-spacing:0.032000pt;}
.ls3b{letter-spacing:0.062208pt;}
.ls3e{letter-spacing:0.082944pt;}
.ls3c{letter-spacing:0.105472pt;}
.ls1c{letter-spacing:0.109824pt;}
.ls3d{letter-spacing:0.110592pt;}
.ls15{letter-spacing:0.118272pt;}
.ls11{letter-spacing:0.135168pt;}
.ls3f{letter-spacing:0.138240pt;}
.ls16{letter-spacing:0.147840pt;}
.ls40{letter-spacing:0.158976pt;}
.ls1b{letter-spacing:0.160512pt;}
.lsb{letter-spacing:0.177408pt;}
.ls12{letter-spacing:0.185856pt;}
.ls1a{letter-spacing:0.211200pt;}
.lsf{letter-spacing:0.215424pt;}
.ls18{letter-spacing:0.219648pt;}
.ls5{letter-spacing:0.224000pt;}
.ls10{letter-spacing:0.228096pt;}
.lsd{letter-spacing:0.236544pt;}
.ls14{letter-spacing:0.240768pt;}
.ls13{letter-spacing:0.244992pt;}
.ls17{letter-spacing:0.253440pt;}
.ls19{letter-spacing:0.266112pt;}
.ls6{letter-spacing:0.266240pt;}
.lse{letter-spacing:0.270336pt;}
.lsc{letter-spacing:0.346368pt;}
.ls37{letter-spacing:34.208000pt;}
.ls1e{letter-spacing:744.000000pt;}
.ls4{letter-spacing:749.440256pt;}
.ls38{letter-spacing:752.000000pt;}
.ls2{letter-spacing:752.000256pt;}
.ls2b{letter-spacing:753.280000pt;}
.ls1d{letter-spacing:753.280512pt;}
.ws2e{word-spacing:-17.418240pt;}
.ws2d{word-spacing:-17.342208pt;}
.ws21{word-spacing:-16.032000pt;}
.ws22{word-spacing:-16.019200pt;}
.ws2a{word-spacing:-16.012800pt;}
.ws29{word-spacing:-16.000000pt;}
.ws2b{word-spacing:-15.987200pt;}
.ws20{word-spacing:-15.980800pt;}
.ws23{word-spacing:-15.968000pt;}
.ws24{word-spacing:-14.720000pt;}
.ws1a{word-spacing:-14.661120pt;}
.ws25{word-spacing:-14.649344pt;}
.ws1b{word-spacing:-14.643456pt;}
.ws28{word-spacing:-14.625792pt;}
.ws1c{word-spacing:-14.608128pt;}
.ws1e{word-spacing:-14.602240pt;}
.ws27{word-spacing:-14.590464pt;}
.ws1f{word-spacing:-14.572800pt;}
.ws19{word-spacing:-14.566912pt;}
.ws26{word-spacing:-14.555136pt;}
.ws2c{word-spacing:-13.224960pt;}
.ws1d{word-spacing:-13.189120pt;}
.ws7{word-spacing:-0.388608pt;}
.wsa{word-spacing:-0.312576pt;}
.ws15{word-spacing:-0.308352pt;}
.ws13{word-spacing:-0.295680pt;}
.wsf{word-spacing:-0.287232pt;}
.ws10{word-spacing:-0.283008pt;}
.ws9{word-spacing:-0.278784pt;}
.wsc{word-spacing:-0.270336pt;}
.ws14{word-spacing:-0.261888pt;}
.wsb{word-spacing:-0.257664pt;}
.ws16{word-spacing:-0.253440pt;}
.wse{word-spacing:-0.228096pt;}
.ws6{word-spacing:-0.219648pt;}
.ws17{word-spacing:-0.202752pt;}
.ws12{word-spacing:-0.190080pt;}
.wsd{word-spacing:-0.177408pt;}
.ws11{word-spacing:-0.160512pt;}
.ws18{word-spacing:-0.152064pt;}
.ws8{word-spacing:-0.042240pt;}
.ws0{word-spacing:0.000000pt;}
.ws1{word-spacing:0.155648pt;}
.ws4{word-spacing:0.311296pt;}
.ws5{word-spacing:0.345344pt;}
.ws2{word-spacing:0.393984pt;}
.ws3{word-spacing:0.515584pt;}
._d{margin-left:-14.213760pt;}
._9{margin-left:-13.131904pt;}
._6{margin-left:-12.232832pt;}
._4{margin-left:-10.907008pt;}
._7{margin-left:-9.529984pt;}
._b{margin-left:-8.525440pt;}
._8{margin-left:-7.447424pt;}
._5{margin-left:-6.089216pt;}
._c{margin-left:-5.096320pt;}
._3{margin-left:-3.769984pt;}
._a{margin-left:-2.547072pt;}
._2{margin-left:-1.013760pt;}
._1{width:0.924160pt;}
._19{width:2.055680pt;}
._15{width:3.168000pt;}
._18{width:4.358400pt;}
._16{width:5.814400pt;}
._11{width:6.796800pt;}
._10{width:7.718400pt;}
._14{width:8.793600pt;}
._20{width:9.766400pt;}
._1b{width:10.816000pt;}
._24{width:11.961600pt;}
._22{width:12.953600pt;}
._f{width:14.419200pt;}
._25{width:17.740800pt;}
._1c{width:18.713600pt;}
._13{width:19.897600pt;}
._1a{width:21.440000pt;}
._17{width:23.155200pt;}
._1f{width:24.256000pt;}
._1e{width:25.420800pt;}
._23{width:27.488000pt;}
._21{width:30.643200pt;}
._12{width:32.480256pt;}
._1d{width:33.388288pt;}
._26{width:50.163200pt;}
._e{width:63.705600pt;}
._0{width:753.536256pt;}
.fsd{font-size:37.120000pt;}
.fsc{font-size:39.680000pt;}
.fsb{font-size:42.240000pt;}
.fs2{font-size:44.800000pt;}
.fs7{font-size:48.640000pt;}
.fs4{font-size:53.760000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fse{font-size:69.120000pt;}
.fsa{font-size:74.240000pt;}
.fs5{font-size:85.760000pt;}
.fs3{font-size:96.000000pt;}
.fs9{font-size:130.560000pt;}
.fs6{font-size:138.240000pt;}
.fs8{font-size:154.880000pt;}
.y0{bottom:0.000000pt;}
.y27f{bottom:12.586667pt;}
.y4e{bottom:20.533333pt;}
.y3{bottom:21.173333pt;}
.y27e{bottom:29.333333pt;}
.y2{bottom:46.666667pt;}
.y4d{bottom:67.200000pt;}
.y1{bottom:67.840000pt;}
.y1fd{bottom:98.560000pt;}
.y9f{bottom:99.200000pt;}
.ybc{bottom:99.840000pt;}
.y1c8{bottom:100.160000pt;}
.y29c{bottom:103.680000pt;}
.y11c{bottom:105.920000pt;}
.y96{bottom:106.240000pt;}
.y65{bottom:109.760000pt;}
.yfb{bottom:110.080000pt;}
.yd4{bottom:110.400000pt;}
.yfa{bottom:110.720000pt;}
.y178{bottom:111.680000pt;}
.y140{bottom:112.320000pt;}
.y179{bottom:112.640000pt;}
.y152{bottom:112.960000pt;}
.y17c{bottom:113.600000pt;}
.y14e{bottom:113.920000pt;}
.y24e{bottom:114.880000pt;}
.y204{bottom:115.200000pt;}
.y86{bottom:115.840000pt;}
.y25c{bottom:116.160000pt;}
.y1a3{bottom:116.800000pt;}
.y190{bottom:117.440000pt;}
.y19a{bottom:118.080000pt;}
.y1c7{bottom:118.400000pt;}
.y1de{bottom:119.360000pt;}
.y1be{bottom:121.280000pt;}
.y23e{bottom:122.880000pt;}
.y29b{bottom:123.520000pt;}
.y64{bottom:123.840000pt;}
.y11b{bottom:124.480000pt;}
.y28b{bottom:125.120000pt;}
.ye3{bottom:128.960000pt;}
.y103{bottom:129.280000pt;}
.yeb{bottom:129.600000pt;}
.yab{bottom:130.240000pt;}
.y130{bottom:131.520000pt;}
.y194{bottom:131.840000pt;}
.y156{bottom:132.160000pt;}
.y1fc{bottom:132.480000pt;}
.y9e{bottom:134.720000pt;}
.y1a2{bottom:135.040000pt;}
.ybb{bottom:135.680000pt;}
.y1c6{bottom:136.320000pt;}
.y63{bottom:137.920000pt;}
.y9c{bottom:139.520000pt;}
.y29a{bottom:143.680000pt;}
.y276{bottom:146.560000pt;}
.y95{bottom:147.520000pt;}
.yd3{bottom:147.840000pt;}
.ye2{bottom:148.160000pt;}
.y102{bottom:148.480000pt;}
.y13f{bottom:149.120000pt;}
.y192{bottom:149.440000pt;}
.y151{bottom:149.760000pt;}
.y155{bottom:150.080000pt;}
.y14d{bottom:150.400000pt;}
.y203{bottom:151.680000pt;}
.y1e{bottom:152.000000pt;}
.y27b{bottom:152.320000pt;}
.y18f{bottom:152.640000pt;}
.y1a1{bottom:152.960000pt;}
.y1af{bottom:153.600000pt;}
.y1c5{bottom:154.560000pt;}
.y26c{bottom:155.200000pt;}
.y1dd{bottom:155.840000pt;}
.y85{bottom:156.800000pt;}
.y25b{bottom:157.120000pt;}
.y1bd{bottom:157.440000pt;}
.y1eb{bottom:158.400000pt;}
.y11a{bottom:160.640000pt;}
.y23d{bottom:162.240000pt;}
.y222{bottom:163.520000pt;}
.y62{bottom:166.080000pt;}
.y174{bottom:166.400000pt;}
.y160{bottom:166.720000pt;}
.yea{bottom:167.040000pt;}
.ye1{bottom:167.360000pt;}
.y12f{bottom:167.680000pt;}
.y150{bottom:168.000000pt;}
.y1d{bottom:168.320000pt;}
.y14c{bottom:168.640000pt;}
.y1fb{bottom:168.960000pt;}
.y202{bottom:170.240000pt;}
.y18e{bottom:171.200000pt;}
.yba{bottom:171.840000pt;}
.y1c4{bottom:172.480000pt;}
.y27a{bottom:173.120000pt;}
.y1dc{bottom:173.760000pt;}
.y1bc{bottom:175.360000pt;}
.y26b{bottom:175.680000pt;}
.y25a{bottom:177.920000pt;}
.y9d{bottom:178.880000pt;}
.y119{bottom:179.200000pt;}
.y9b{bottom:180.480000pt;}
.y275{bottom:180.800000pt;}
.y23c{bottom:182.400000pt;}
.y24d{bottom:183.360000pt;}
.y299{bottom:183.680000pt;}
.y221{bottom:184.000000pt;}
.y61{bottom:184.640000pt;}
.y177{bottom:184.960000pt;}
.y13e{bottom:185.280000pt;}
.yd2{bottom:185.600000pt;}
.yf9{bottom:185.920000pt;}
.ye0{bottom:186.240000pt;}
.y20d{bottom:186.560000pt;}
.y14b{bottom:186.880000pt;}
.y1c{bottom:187.200000pt;}
.y201{bottom:188.160000pt;}
.y94{bottom:188.480000pt;}
.y22e{bottom:188.800000pt;}
.y18d{bottom:189.120000pt;}
.y1ae{bottom:189.760000pt;}
.y1c3{bottom:190.400000pt;}
.y1db{bottom:191.680000pt;}
.y279{bottom:193.600000pt;}
.y1ea{bottom:195.200000pt;}
.y26a{bottom:196.480000pt;}
.y118{bottom:197.120000pt;}
.y4c{bottom:197.440000pt;}
.y84{bottom:197.760000pt;}
.y259{bottom:198.400000pt;}
.yaa{bottom:202.240000pt;}
.y173{bottom:202.880000pt;}
.y15f{bottom:203.200000pt;}
.y13d{bottom:203.520000pt;}
.y193{bottom:203.840000pt;}
.y12e{bottom:204.160000pt;}
.yd1{bottom:204.800000pt;}
.yf8{bottom:205.120000pt;}
.y1fa{bottom:205.760000pt;}
.y200{bottom:206.080000pt;}
.y18c{bottom:207.040000pt;}
.y1a0{bottom:207.360000pt;}
.yb9{bottom:207.680000pt;}
.y1c2{bottom:208.320000pt;}
.y22d{bottom:209.280000pt;}
.y1da{bottom:209.920000pt;}
.y4b{bottom:210.240000pt;}
.y1bb{bottom:211.840000pt;}
.y1e9{bottom:213.440000pt;}
.y278{bottom:214.400000pt;}
.y274{bottom:214.720000pt;}
.y117{bottom:215.040000pt;}
.y269{bottom:216.960000pt;}
.y24c{bottom:217.280000pt;}
.y258{bottom:219.200000pt;}
.y9a{bottom:221.440000pt;}
.y191{bottom:221.760000pt;}
.y12d{bottom:222.080000pt;}
.y14f{bottom:222.400000pt;}
.y14a{bottom:222.720000pt;}
.y4a{bottom:223.040000pt;}
.ydf{bottom:223.360000pt;}
.y60{bottom:223.680000pt;}
.yf7{bottom:224.000000pt;}
.y28a{bottom:224.320000pt;}
.y18b{bottom:224.960000pt;}
.y220{bottom:225.280000pt;}
.y19f{bottom:225.920000pt;}
.y1b{bottom:226.240000pt;}
.y1c1{bottom:226.560000pt;}
.y1d9{bottom:227.840000pt;}
.y93{bottom:229.440000pt;}
.y1ba{bottom:230.080000pt;}
.y1e8{bottom:231.360000pt;}
.y273{bottom:235.200000pt;}
.y268{bottom:237.760000pt;}
.ya9{bottom:238.080000pt;}
.y83{bottom:238.720000pt;}
.y172{bottom:239.040000pt;}
.y176{bottom:239.360000pt;}
.y13c{bottom:239.680000pt;}
.y12c{bottom:240.000000pt;}
.y199{bottom:240.320000pt;}
.y149{bottom:240.640000pt;}
.y1f9{bottom:242.240000pt;}
.ye9{bottom:242.560000pt;}
.yd0{bottom:242.880000pt;}
.yf6{bottom:243.200000pt;}
.y298{bottom:243.520000pt;}
.yb8{bottom:243.840000pt;}
.y1c0{bottom:244.480000pt;}
.y1d8{bottom:245.760000pt;}
.y21f{bottom:246.080000pt;}
.y49{bottom:246.400000pt;}
.y1b9{bottom:248.000000pt;}
.y1e7{bottom:249.600000pt;}
.y22c{bottom:250.880000pt;}
.y116{bottom:251.520000pt;}
.y289{bottom:251.840000pt;}
.y272{bottom:255.680000pt;}
.y171{bottom:257.280000pt;}
.y197{bottom:257.920000pt;}
.y12b{bottom:258.240000pt;}
.y267{bottom:258.560000pt;}
.y148{bottom:258.880000pt;}
.y1f8{bottom:260.160000pt;}
.y48{bottom:260.480000pt;}
.y257{bottom:260.800000pt;}
.y18a{bottom:261.440000pt;}
.ycf{bottom:261.760000pt;}
.yf5{bottom:262.080000pt;}
.y99{bottom:262.400000pt;}
.y1d7{bottom:263.680000pt;}
.y23b{bottom:265.280000pt;}
.y1b8{bottom:266.240000pt;}
.y21e{bottom:266.880000pt;}
.y1e6{bottom:267.520000pt;}
.y5f{bottom:268.160000pt;}
.y115{bottom:269.760000pt;}
.y92{bottom:270.400000pt;}
.y1a{bottom:270.720000pt;}
.y22b{bottom:271.360000pt;}
.y24b{bottom:272.000000pt;}
.y47{bottom:274.240000pt;}
.y170{bottom:275.520000pt;}
.y13b{bottom:276.160000pt;}
.y154{bottom:276.480000pt;}
.y147{bottom:276.800000pt;}
.y1f7{bottom:278.080000pt;}
.y288{bottom:278.720000pt;}
.y266{bottom:279.360000pt;}
.y82{bottom:279.680000pt;}
.y101{bottom:280.320000pt;}
.yce{bottom:280.640000pt;}
.yf4{bottom:280.960000pt;}
.y256{bottom:281.280000pt;}
.y1d6{bottom:281.920000pt;}
.y297{bottom:283.520000pt;}
.y1e5{bottom:285.440000pt;}
.y23a{bottom:286.080000pt;}
.y46{bottom:287.040000pt;}
.y21d{bottom:287.360000pt;}
.y114{bottom:287.680000pt;}
.y22a{bottom:292.160000pt;}
.y24a{bottom:292.480000pt;}
.y13a{bottom:294.080000pt;}
.y12a{bottom:294.400000pt;}
.y146{bottom:294.720000pt;}
.y20c{bottom:295.040000pt;}
.y1f6{bottom:296.000000pt;}
.y271{bottom:297.280000pt;}
.y189{bottom:297.920000pt;}
.y1ad{bottom:298.560000pt;}
.y45{bottom:299.840000pt;}
.y255{bottom:302.080000pt;}
.y1b7{bottom:302.400000pt;}
.y98{bottom:303.360000pt;}
.y296{bottom:303.680000pt;}
.y113{bottom:305.600000pt;}
.y239{bottom:306.560000pt;}
.y21c{bottom:308.160000pt;}
.ya8{bottom:310.080000pt;}
.y91{bottom:311.360000pt;}
.y16f{bottom:311.680000pt;}
.y15e{bottom:312.000000pt;}
.y44{bottom:312.320000pt;}
.y5e{bottom:312.640000pt;}
.y229{bottom:312.960000pt;}
.y20b{bottom:313.280000pt;}
.y1f5{bottom:314.240000pt;}
.y19{bottom:315.200000pt;}
.yb7{bottom:315.840000pt;}
.y19e{bottom:316.160000pt;}
.y1ac{bottom:316.480000pt;}
.y1d5{bottom:317.760000pt;}
.ycd{bottom:318.080000pt;}
.yf3{bottom:318.400000pt;}
.y100{bottom:318.720000pt;}
.y81{bottom:320.640000pt;}
.y1b6{bottom:320.960000pt;}
.y1e4{bottom:321.600000pt;}
.y254{bottom:322.880000pt;}
.y112{bottom:323.520000pt;}
.y43{bottom:325.440000pt;}
.y238{bottom:327.360000pt;}
.y21b{bottom:328.960000pt;}
.y196{bottom:329.920000pt;}
.y15d{bottom:330.240000pt;}
.y139{bottom:330.560000pt;}
.y129{bottom:330.880000pt;}
.y20a{bottom:331.520000pt;}
.y1f4{bottom:332.160000pt;}
.y287{bottom:332.800000pt;}
.y228{bottom:333.440000pt;}
.y188{bottom:333.760000pt;}
.y249{bottom:334.080000pt;}
.y19d{bottom:334.400000pt;}
.y1d4{bottom:335.680000pt;}
.yde{bottom:336.960000pt;}
.ycc{bottom:337.280000pt;}
.yf2{bottom:337.600000pt;}
.y42{bottom:338.240000pt;}
.y270{bottom:338.560000pt;}
.y1b5{bottom:338.880000pt;}
.y1e3{bottom:339.520000pt;}
.y265{bottom:341.440000pt;}
.y295{bottom:343.680000pt;}
.y97{bottom:344.320000pt;}
.ya7{bottom:346.240000pt;}
.y16e{bottom:348.160000pt;}
.y128{bottom:348.800000pt;}
.y209{bottom:349.440000pt;}
.y21a{bottom:349.760000pt;}
.y1f3{bottom:350.080000pt;}
.y41{bottom:350.720000pt;}
.yb6{bottom:351.680000pt;}
.y90{bottom:352.320000pt;}
.y248{bottom:354.560000pt;}
.ycb{bottom:356.160000pt;}
.y5d{bottom:356.480000pt;}
.y1b4{bottom:356.800000pt;}
.y1e2{bottom:357.440000pt;}
.y18{bottom:358.720000pt;}
.y26f{bottom:359.360000pt;}
.y253{bottom:359.680000pt;}
.y111{bottom:360.320000pt;}
.y80{bottom:361.600000pt;}
.y264{bottom:361.920000pt;}
.y40{bottom:363.520000pt;}
.y15c{bottom:366.400000pt;}
.y127{bottom:366.720000pt;}
.y165{bottom:367.360000pt;}
.y75{bottom:368.000000pt;}
.y237{bottom:368.960000pt;}
.y19c{bottom:370.240000pt;}
.y187{bottom:370.560000pt;}
.y1ab{bottom:371.200000pt;}
.y1d3{bottom:372.480000pt;}
.ydd{bottom:375.040000pt;}
.yef{bottom:375.360000pt;}
.y3f{bottom:376.320000pt;}
.y277{bottom:377.600000pt;}
.y110{bottom:378.240000pt;}
.y26e{bottom:380.160000pt;}
.ya6{bottom:382.080000pt;}
.y263{bottom:382.720000pt;}
.y294{bottom:383.680000pt;}
.y16d{bottom:384.320000pt;}
.y15b{bottom:384.640000pt;}
.y8f{bottom:385.280000pt;}
.y1ff{bottom:385.920000pt;}
.y286{bottom:386.880000pt;}
.yb5{bottom:387.840000pt;}
.y3e{bottom:389.120000pt;}
.y219{bottom:391.040000pt;}
.yca{bottom:391.680000pt;}
.yf1{bottom:392.000000pt;}
.y252{bottom:393.280000pt;}
.ye8{bottom:393.600000pt;}
.yee{bottom:393.920000pt;}
.y1e1{bottom:394.240000pt;}
.y247{bottom:396.160000pt;}
.y5c{bottom:399.040000pt;}
.y26d{bottom:400.640000pt;}
.y17{bottom:401.280000pt;}
.y3d{bottom:401.600000pt;}
.y15a{bottom:402.560000pt;}
.y7f{bottom:402.880000pt;}
.y195{bottom:403.200000pt;}
.y126{bottom:403.520000pt;}
.y164{bottom:403.840000pt;}
.y208{bottom:404.160000pt;}
.y1f2{bottom:404.800000pt;}
.y236{bottom:405.760000pt;}
.y186{bottom:406.720000pt;}
.y19b{bottom:407.040000pt;}
.y1aa{bottom:407.360000pt;}
.y1d2{bottom:408.640000pt;}
.y218{bottom:409.280000pt;}
.ydc{bottom:410.560000pt;}
.y251{bottom:411.520000pt;}
.ye7{bottom:412.800000pt;}
.y285{bottom:413.760000pt;}
.y3c{bottom:414.720000pt;}
.y5b{bottom:415.680000pt;}
.y246{bottom:416.640000pt;}
.y10f{bottom:416.960000pt;}
.y16{bottom:417.920000pt;}
.ya5{bottom:418.240000pt;}
.y227{bottom:418.880000pt;}
.y16c{bottom:420.800000pt;}
.y175{bottom:421.120000pt;}
.y125{bottom:421.440000pt;}
.y145{bottom:421.760000pt;}
.y207{bottom:422.080000pt;}
.y74{bottom:422.720000pt;}
.yb4{bottom:423.680000pt;}
.y1bf{bottom:425.600000pt;}
.y1a9{bottom:425.920000pt;}
.y8e{bottom:426.240000pt;}
.y3b{bottom:426.880000pt;}
.y1d1{bottom:427.200000pt;}
.y1e0{bottom:427.520000pt;}
.yed{bottom:429.760000pt;}
.yc9{bottom:430.400000pt;}
.yf0{bottom:430.720000pt;}
.y5a{bottom:431.680000pt;}
.y27d{bottom:432.320000pt;}
.y15{bottom:434.240000pt;}
.y10e{bottom:436.160000pt;}
.y245{bottom:437.440000pt;}
.y26{bottom:438.080000pt;}
.y3a{bottom:439.040000pt;}
.y159{bottom:439.360000pt;}
.y138{bottom:439.680000pt;}
.y144{bottom:440.000000pt;}
.y163{bottom:440.320000pt;}
.y284{bottom:440.640000pt;}
.y1f1{bottom:440.960000pt;}
.y185{bottom:443.520000pt;}
.y7e{bottom:443.840000pt;}
.y1d0{bottom:445.120000pt;}
.y250{bottom:445.760000pt;}
.y59{bottom:448.000000pt;}
.ydb{bottom:449.280000pt;}
.yc8{bottom:449.600000pt;}
.y14{bottom:450.560000pt;}
.y39{bottom:452.800000pt;}
.y226{bottom:453.120000pt;}
.ya4{bottom:454.080000pt;}
.y10d{bottom:455.360000pt;}
.y244{bottom:455.680000pt;}
.y16b{bottom:457.280000pt;}
.y124{bottom:457.920000pt;}
.y143{bottom:458.240000pt;}
.y206{bottom:458.560000pt;}
.y162{bottom:458.880000pt;}
.y1fe{bottom:459.200000pt;}
.y1f0{bottom:459.520000pt;}
.yb3{bottom:459.840000pt;}
.y235{bottom:460.160000pt;}
.y1a8{bottom:461.760000pt;}
.y1b3{bottom:462.080000pt;}
.y1df{bottom:462.720000pt;}
.y1cf{bottom:463.040000pt;}
.y293{bottom:463.680000pt;}
.y25{bottom:464.640000pt;}
.y38{bottom:465.920000pt;}
.y27c{bottom:466.240000pt;}
.y58{bottom:467.200000pt;}
.y8d{bottom:467.520000pt;}
.yec{bottom:468.160000pt;}
.yda{bottom:468.480000pt;}
.y13{bottom:469.760000pt;}
.y225{bottom:473.600000pt;}
.y217{bottom:473.920000pt;}
.y158{bottom:475.840000pt;}
.y123{bottom:476.160000pt;}
.y137{bottom:476.480000pt;}
.y161{bottom:476.800000pt;}
.y73{bottom:477.440000pt;}
.y37{bottom:478.720000pt;}
.y1a7{bottom:479.680000pt;}
.y184{bottom:480.000000pt;}
.y1b2{bottom:480.320000pt;}
.y1ce{bottom:480.960000pt;}
.y292{bottom:483.520000pt;}
.y7d{bottom:484.800000pt;}
.y283{bottom:486.080000pt;}
.y24f{bottom:486.720000pt;}
.yc7{bottom:487.040000pt;}
.yd9{bottom:487.680000pt;}
.y262{bottom:489.920000pt;}
.ya3{bottom:490.240000pt;}
.y36{bottom:491.520000pt;}
.y10c{bottom:492.480000pt;}
.y16a{bottom:493.760000pt;}
.y122{bottom:494.080000pt;}
.y142{bottom:494.400000pt;}
.y136{bottom:494.720000pt;}
.y205{bottom:495.040000pt;}
.y1ef{bottom:495.360000pt;}
.yb2{bottom:495.680000pt;}
.y183{bottom:498.560000pt;}
.y1cd{bottom:499.200000pt;}
.y57{bottom:501.120000pt;}
.y234{bottom:501.760000pt;}
.y12{bottom:503.360000pt;}
.y291{bottom:503.680000pt;}
.y35{bottom:504.320000pt;}
.ye6{bottom:505.920000pt;}
.yc6{bottom:506.240000pt;}
.yd8{bottom:506.560000pt;}
.y24{bottom:507.520000pt;}
.y243{bottom:507.840000pt;}
.y8c{bottom:508.480000pt;}
.y261{bottom:510.080000pt;}
.y10b{bottom:512.000000pt;}
.y153{bottom:512.320000pt;}
.y135{bottom:512.640000pt;}
.y72{bottom:512.960000pt;}
.y1ee{bottom:513.280000pt;}
.y216{bottom:514.880000pt;}
.y1a6{bottom:516.160000pt;}
.y34{bottom:516.480000pt;}
.y1cc{bottom:517.120000pt;}
.y233{bottom:522.240000pt;}
.y290{bottom:523.520000pt;}
.yc5{bottom:525.120000pt;}
.y7c{bottom:525.760000pt;}
.ya2{bottom:526.080000pt;}
.y242{bottom:528.320000pt;}
.y33{bottom:530.240000pt;}
.y169{bottom:530.560000pt;}
.y56{bottom:530.880000pt;}
.y1ed{bottom:531.520000pt;}
.yb1{bottom:531.840000pt;}
.ybd{bottom:532.160000pt;}
.y11{bottom:533.120000pt;}
.y182{bottom:534.400000pt;}
.y1cb{bottom:535.040000pt;}
.y215{bottom:535.680000pt;}
.y282{bottom:540.480000pt;}
.y32{bottom:542.720000pt;}
.y23{bottom:543.040000pt;}
.yff{bottom:543.680000pt;}
.yd7{bottom:544.000000pt;}
.yc4{bottom:544.320000pt;}
.y55{bottom:544.960000pt;}
.y10{bottom:547.520000pt;}
.y121{bottom:548.480000pt;}
.y134{bottom:548.800000pt;}
.y71{bottom:549.120000pt;}
.y8b{bottom:549.440000pt;}
.y10a{bottom:549.760000pt;}
.y260{bottom:551.680000pt;}
.y181{bottom:552.320000pt;}
.y1ca{bottom:552.960000pt;}
.y31{bottom:554.880000pt;}
.y214{bottom:556.160000pt;}
.y54{bottom:560.320000pt;}
.ya1{bottom:562.240000pt;}
.yf{bottom:562.880000pt;}
.yc3{bottom:563.200000pt;}
.y28f{bottom:563.520000pt;}
.y232{bottom:563.840000pt;}
.y17b{bottom:566.400000pt;}
.y7b{bottom:566.720000pt;}
.y141{bottom:567.040000pt;}
.y1ec{bottom:567.360000pt;}
.yb0{bottom:567.680000pt;}
.y30{bottom:568.640000pt;}
.y241{bottom:569.600000pt;}
.y1a5{bottom:570.560000pt;}
.y1b1{bottom:570.880000pt;}
.y1c9{bottom:571.200000pt;}
.y25f{bottom:572.160000pt;}
.y53{bottom:575.680000pt;}
.y213{bottom:576.960000pt;}
.ye{bottom:578.240000pt;}
.y2f{bottom:581.120000pt;}
.ye5{bottom:581.440000pt;}
.yfe{bottom:581.760000pt;}
.yc2{bottom:582.080000pt;}
.y28e{bottom:583.680000pt;}
.y231{bottom:584.320000pt;}
.y120{bottom:584.640000pt;}
.y133{bottom:584.960000pt;}
.y70{bottom:585.280000pt;}
.y22{bottom:585.600000pt;}
.y109{bottom:587.200000pt;}
.y180{bottom:588.800000pt;}
.y1b0{bottom:589.120000pt;}
.y8a{bottom:590.400000pt;}
.y25e{bottom:592.960000pt;}
.y2e{bottom:594.240000pt;}
.y281{bottom:594.560000pt;}
.y52{bottom:595.520000pt;}
.y212{bottom:597.760000pt;}
.yd{bottom:598.080000pt;}
.yd6{bottom:600.640000pt;}
.ye4{bottom:600.960000pt;}
.y168{bottom:602.880000pt;}
.y157{bottom:603.200000pt;}
.y132{bottom:603.520000pt;}
.yaf{bottom:603.840000pt;}
.y230{bottom:605.120000pt;}
.y108{bottom:606.400000pt;}
.y1a4{bottom:606.720000pt;}
.y17f{bottom:607.040000pt;}
.y7a{bottom:607.680000pt;}
.y2d{bottom:608.640000pt;}
.y8{bottom:609.280000pt;}
.y240{bottom:610.880000pt;}
.y25d{bottom:613.760000pt;}
.y224{bottom:618.240000pt;}
.yc1{bottom:619.520000pt;}
.yd5{bottom:619.840000pt;}
.yfd{bottom:620.160000pt;}
.y167{bottom:620.800000pt;}
.y11f{bottom:621.120000pt;}
.y131{bottom:621.440000pt;}
.y6f{bottom:622.080000pt;}
.y2c{bottom:623.040000pt;}
.y17e{bottom:624.960000pt;}
.y107{bottom:625.280000pt;}
.y22f{bottom:625.920000pt;}
.y28d{bottom:630.720000pt;}
.y89{bottom:631.360000pt;}
.y23f{bottom:631.680000pt;}
.y211{bottom:632.000000pt;}
.ya0{bottom:634.240000pt;}
.y21{bottom:635.200000pt;}
.y7{bottom:635.840000pt;}
.yc0{bottom:638.720000pt;}
.y198{bottom:639.040000pt;}
.y11e{bottom:639.360000pt;}
.yae{bottom:639.680000pt;}
.y6e{bottom:640.000000pt;}
.y17d{bottom:642.880000pt;}
.y106{bottom:644.160000pt;}
.y2b{bottom:645.120000pt;}
.y79{bottom:646.720000pt;}
.y280{bottom:648.320000pt;}
.y29f{bottom:650.240000pt;}
.y51{bottom:650.560000pt;}
.y210{bottom:652.480000pt;}
.yc{bottom:652.800000pt;}
.y6{bottom:655.040000pt;}
.y166{bottom:656.960000pt;}
.yfc{bottom:657.280000pt;}
.ybf{bottom:657.600000pt;}
.y6d{bottom:658.240000pt;}
.y223{bottom:659.840000pt;}
.y2a{bottom:661.440000pt;}
.y78{bottom:670.080000pt;}
.y69{bottom:670.400000pt;}
.y88{bottom:672.320000pt;}
.y20f{bottom:672.960000pt;}
.y11d{bottom:675.200000pt;}
.y17a{bottom:675.520000pt;}
.yad{bottom:675.840000pt;}
.y6c{bottom:676.160000pt;}
.ybe{bottom:676.480000pt;}
.y29{bottom:678.080000pt;}
.yb{bottom:679.040000pt;}
.y50{bottom:679.360000pt;}
.y105{bottom:679.680000pt;}
.y28c{bottom:685.120000pt;}
.y68{bottom:686.080000pt;}
.y5{bottom:688.640000pt;}
.y29e{bottom:690.240000pt;}
.y20e{bottom:693.760000pt;}
.y6b{bottom:694.080000pt;}
.y28{bottom:694.400000pt;}
.y67{bottom:700.160000pt;}
.y20{bottom:702.720000pt;}
.y77{bottom:703.040000pt;}
.ya{bottom:703.360000pt;}
.y76{bottom:704.960000pt;}
.y4f{bottom:705.600000pt;}
.y29d{bottom:710.400000pt;}
.y27{bottom:711.040000pt;}
.yac{bottom:711.680000pt;}
.y6a{bottom:712.000000pt;}
.y104{bottom:712.960000pt;}
.y87{bottom:713.280000pt;}
.y66{bottom:714.240000pt;}
.y4{bottom:719.680000pt;}
.y1f{bottom:726.400000pt;}
.y9{bottom:727.680000pt;}
.h1b{height:24.000000pt;}
.h15{height:24.740625pt;}
.h14{height:26.446875pt;}
.h6{height:29.859375pt;}
.h13{height:29.865000pt;}
.hc{height:32.418750pt;}
.h12{height:32.798750pt;}
.hf{height:34.247500pt;}
.h16{height:34.666667pt;}
.h8{height:35.831250pt;}
.h3{height:36.000000pt;}
.h2{height:39.243750pt;}
.h9{height:42.656250pt;}
.h1c{height:46.068750pt;}
.h4{height:49.277500pt;}
.h11{height:49.481250pt;}
.h1a{height:49.795000pt;}
.h17{height:51.837500pt;}
.h5{height:53.562500pt;}
.h10{height:53.625000pt;}
.h18{height:54.125000pt;}
.ha{height:57.159375pt;}
.h19{height:63.984375pt;}
.h7{height:80.343750pt;}
.he{height:87.018750pt;}
.hb{height:92.137500pt;}
.hd{height:103.228125pt;}
.h0{height:793.920000pt;}
.h1{height:794.000000pt;}
.w3{width:8.000000pt;}
.w2{width:9.333333pt;}
.w7{width:14.666667pt;}
.w6{width:16.000000pt;}
.w5{width:17.333333pt;}
.w4{width:567.040000pt;}
.w1{width:567.333333pt;}
.w0{width:567.360000pt;}
.x0{left:0.000000pt;}
.x3{left:1.173333pt;}
.x9{left:68.160160pt;}
.x18{left:74.666667pt;}
.x12{left:83.199872pt;}
.x1c{left:84.857088pt;}
.x1b{left:90.021152pt;}
.x1{left:92.160160pt;}
.xc{left:94.560224pt;}
.x23{left:97.866528pt;}
.x17{left:99.519872pt;}
.xd{left:107.199872pt;}
.x22{left:112.533216pt;}
.x4f{left:116.649088pt;}
.x3a{left:119.152992pt;}
.x37{left:121.586912pt;}
.x26{left:122.719712pt;}
.x43{left:124.149088pt;}
.x53{left:125.993152pt;}
.x27{left:130.399744pt;}
.x58{left:135.652992pt;}
.x42{left:138.411136pt;}
.x1d{left:141.005536pt;}
.x2b{left:144.141280pt;}
.x56{left:146.563168pt;}
.x2e{left:148.395168pt;}
.x8{left:151.352224pt;}
.x40{left:153.563168pt;}
.x15{left:154.858400pt;}
.x3e{left:156.563168pt;}
.x47{left:158.500992pt;}
.x45{left:162.083008pt;}
.x29{left:164.250976pt;}
.x46{left:165.152992pt;}
.x4d{left:166.481120pt;}
.x35{left:168.731104pt;}
.x30{left:170.070976pt;}
.x52{left:171.231104pt;}
.x2d{left:172.742848pt;}
.x4b{left:173.981120pt;}
.x2a{left:175.488928pt;}
.x32{left:177.665024pt;}
.x34{left:178.731104pt;}
.x31{left:180.317056pt;}
.x33{left:181.743168pt;}
.x49{left:182.918944pt;}
.x3f{left:184.165024pt;}
.x28{left:186.731104pt;}
.x57{left:187.902976pt;}
.x2f{left:189.329088pt;}
.x4a{left:190.817056pt;}
.x4c{left:193.247072pt;}
.x4{left:195.758784pt;}
.x7{left:197.213536pt;}
.xf{left:199.264960pt;}
.x14{left:200.719712pt;}
.x50{left:201.665024pt;}
.x39{left:202.981120pt;}
.x48{left:205.083008pt;}
.x2c{left:206.332992pt;}
.x3d{left:208.067040pt;}
.x4e{left:209.247072pt;}
.x3c{left:212.165024pt;}
.x36{left:214.497056pt;}
.x54{left:215.985024pt;}
.x38{left:217.250976pt;}
.xb{left:224.512370pt;}
.x16{left:228.018579pt;}
.x51{left:230.497056pt;}
.x44{left:232.738912pt;}
.x25{left:239.078784pt;}
.x59{left:248.062176pt;}
.x1e{left:251.810240pt;}
.x55{left:254.665024pt;}
.x21{left:258.217760pt;}
.x3b{left:264.485024pt;}
.x41{left:277.247072pt;}
.x19{left:279.653015pt;}
.xa{left:283.826816pt;}
.x13{left:287.332992pt;}
.x1f{left:328.310080pt;}
.x5{left:371.894732pt;}
.x10{left:375.400979pt;}
.x6{left:377.293441pt;}
.x11{left:380.799292pt;}
.x1a{left:429.474240pt;}
.x24{left:476.000000pt;}
.xe{left:482.666667pt;}
.x20{left:483.786560pt;}
.x2{left:490.666667pt;}
}




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