
    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_78bedf82d92959bccfebb5da.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.873535;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_480b101fb92eb96030127ba5.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.338867;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_86184c50e8447e36becef0cf.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.984863;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_4a9ae7ab59b667b2c3bc0c6a.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.098000;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_d0182135799ec90d7831b5a9.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.000000;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_07e011f6047b4837e2879598.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.868164;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_924f33678013a089657fc889.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.875000;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_4deb3661602c00d3fb456092.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.976074;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_95de903416e70996490fe45e.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.978000;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_efa45cb71534e41350bb6fcc.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.098000;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_4a9ae7ab59b667b2c3bc0c6a.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.098000;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_d0182135799ec90d7831b5a9.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.000000;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_924f33678013a089657fc889.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.875000;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;}
.m6{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);}
.m55{transform:matrix(0.245131,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245131,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245131,0.000000,0.000000,0.250000,0,0);}
.m64{transform:matrix(0.245308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245308,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.245364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245364,0.000000,0.000000,0.250000,0,0);}
.m79{transform:matrix(0.245367,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245367,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245367,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.245400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245400,0.000000,0.000000,0.250000,0,0);}
.m72{transform:matrix(0.245472,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245472,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245472,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.245578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245578,0.000000,0.000000,0.250000,0,0);}
.m66{transform:matrix(0.245714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245714,0.000000,0.000000,0.250000,0,0);}
.m87{transform:matrix(0.245761,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245761,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245761,0.000000,0.000000,0.250000,0,0);}
.m37{transform:matrix(0.245872,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245872,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245872,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.245875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245875,0.000000,0.000000,0.250000,0,0);}
.m80{transform:matrix(0.245897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245897,0.000000,0.000000,0.250000,0,0);}
.m31{transform:matrix(0.245900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245900,0.000000,0.000000,0.250000,0,0);}
.m6b{transform:matrix(0.245942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245942,0.000000,0.000000,0.250000,0,0);}
.m63{transform:matrix(0.245944,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245944,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245944,0.000000,0.000000,0.250000,0,0);}
.m7b{transform:matrix(0.245986,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245986,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245986,0.000000,0.000000,0.250000,0,0);}
.m3b{transform:matrix(0.246008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246008,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.246033,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246033,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246033,0.000000,0.000000,0.250000,0,0);}
.m58{transform:matrix(0.246056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246056,0.000000,0.000000,0.250000,0,0);}
.m33{transform:matrix(0.246058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246058,0.000000,0.000000,0.250000,0,0);}
.m6c{transform:matrix(0.246081,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246081,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246081,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.246139,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246139,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246139,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.246233,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246233,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246233,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.246244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246244,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.246267,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246267,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246267,0.000000,0.000000,0.250000,0,0);}
.m38{transform:matrix(0.246272,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246272,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246272,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.246281,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246281,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246281,0.000000,0.000000,0.250000,0,0);}
.m4d{transform:matrix(0.246381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246381,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.246447,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246447,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246447,0.000000,0.000000,0.250000,0,0);}
.m61{transform:matrix(0.246450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246450,0.000000,0.000000,0.250000,0,0);}
.m6d{transform:matrix(0.246453,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246453,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246453,0.000000,0.000000,0.250000,0,0);}
.m6e{transform:matrix(0.246478,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246478,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246478,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.246489,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246489,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246489,0.000000,0.000000,0.250000,0,0);}
.m7d{transform:matrix(0.246492,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246492,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246492,0.000000,0.000000,0.250000,0,0);}
.m32{transform:matrix(0.246522,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246522,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246522,0.000000,0.000000,0.250000,0,0);}
.m7c{transform:matrix(0.246525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246525,0.000000,0.000000,0.250000,0,0);}
.m42{transform:matrix(0.246544,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246544,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246544,0.000000,0.000000,0.250000,0,0);}
.m51{transform:matrix(0.246572,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246572,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246572,0.000000,0.000000,0.250000,0,0);}
.m75{transform:matrix(0.246686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246686,0.000000,0.000000,0.250000,0,0);}
.m7a{transform:matrix(0.246689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246689,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.246731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246731,0.000000,0.000000,0.250000,0,0);}
.m62{transform:matrix(0.246747,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246747,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246747,0.000000,0.000000,0.250000,0,0);}
.m3c{transform:matrix(0.246756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246756,0.000000,0.000000,0.250000,0,0);}
.m3a{transform:matrix(0.246828,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246828,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246828,0.000000,0.000000,0.250000,0,0);}
.m5b{transform:matrix(0.246864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246864,0.000000,0.000000,0.250000,0,0);}
.m49{transform:matrix(0.246989,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246989,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246989,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.247089,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247089,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247089,0.000000,0.000000,0.250000,0,0);}
.m54{transform:matrix(0.247131,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247131,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247131,0.000000,0.000000,0.250000,0,0);}
.m70{transform:matrix(0.247167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247167,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.247175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247175,0.000000,0.000000,0.250000,0,0);}
.m81{transform:matrix(0.247258,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247258,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247258,0.000000,0.000000,0.250000,0,0);}
.m77{transform:matrix(0.247269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247269,0.000000,0.000000,0.250000,0,0);}
.m67{transform:matrix(0.247289,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247289,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247289,0.000000,0.000000,0.250000,0,0);}
.m48{transform:matrix(0.247322,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247322,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247322,0.000000,0.000000,0.250000,0,0);}
.m6f{transform:matrix(0.247372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247372,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.247375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247375,0.000000,0.000000,0.250000,0,0);}
.m6a{transform:matrix(0.247414,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247414,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247414,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.247539,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247539,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247539,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.247564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247564,0.000000,0.000000,0.250000,0,0);}
.m60{transform:matrix(0.247592,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247592,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247592,0.000000,0.000000,0.250000,0,0);}
.m3d{transform:matrix(0.247686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247686,0.000000,0.000000,0.250000,0,0);}
.m74{transform:matrix(0.247747,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247747,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247747,0.000000,0.000000,0.250000,0,0);}
.m73{transform:matrix(0.247753,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247753,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247753,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.247853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247853,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.247956,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247956,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247956,0.000000,0.000000,0.250000,0,0);}
.m5f{transform:matrix(0.247989,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247989,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247989,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.248036,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248036,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248036,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.248061,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248061,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248061,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.248064,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248064,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248064,0.000000,0.000000,0.250000,0,0);}
.m8c{transform:matrix(0.248067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248067,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.248097,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248097,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248097,0.000000,0.000000,0.250000,0,0);}
.m69{transform:matrix(0.248100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248100,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.248111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248111,0.000000,0.000000,0.250000,0,0);}
.m36{transform:matrix(0.248117,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248117,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248117,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.248137,0.000000,-0.030467,0.248137,0,0);-ms-transform:matrix(0.248137,0.000000,-0.030467,0.248137,0,0);-webkit-transform:matrix(0.248137,0.000000,-0.030467,0.248137,0,0);}
.m16{transform:matrix(0.248144,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248144,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248144,0.000000,0.000000,0.250000,0,0);}
.m5e{transform:matrix(0.248161,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248161,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248161,0.000000,0.000000,0.250000,0,0);}
.m44{transform:matrix(0.248203,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248203,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248203,0.000000,0.000000,0.250000,0,0);}
.m76{transform:matrix(0.248264,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248264,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248264,0.000000,0.000000,0.250000,0,0);}
.m4b{transform:matrix(0.248267,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248267,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248267,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.248272,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248272,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248272,0.000000,0.000000,0.250000,0,0);}
.m35{transform:matrix(0.248289,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248289,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248289,0.000000,0.000000,0.250000,0,0);}
.m7f{transform:matrix(0.248294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248294,0.000000,0.000000,0.250000,0,0);}
.m39{transform:matrix(0.248306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248306,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.248308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248308,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.248322,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248322,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248322,0.000000,0.000000,0.250000,0,0);}
.m57{transform:matrix(0.248331,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248331,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248331,0.000000,0.000000,0.250000,0,0);}
.m43{transform:matrix(0.248367,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248367,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248367,0.000000,0.000000,0.250000,0,0);}
.m5c{transform:matrix(0.248375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248375,0.000000,0.000000,0.250000,0,0);}
.m83{transform:matrix(0.248417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248417,0.000000,0.000000,0.250000,0,0);}
.m7e{transform:matrix(0.248431,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248431,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248431,0.000000,0.000000,0.250000,0,0);}
.m89{transform:matrix(0.248453,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248453,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248453,0.000000,0.000000,0.250000,0,0);}
.m86{transform:matrix(0.248478,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248478,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248478,0.000000,0.000000,0.250000,0,0);}
.m8b{transform:matrix(0.248481,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248481,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248481,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.248547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248547,0.000000,0.000000,0.250000,0,0);}
.m40{transform:matrix(0.248594,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248594,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248594,0.000000,0.000000,0.250000,0,0);}
.m52{transform:matrix(0.248628,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248628,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248628,0.000000,0.000000,0.250000,0,0);}
.m4f{transform:matrix(0.248681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248681,0.000000,0.000000,0.250000,0,0);}
.m59{transform:matrix(0.248758,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248758,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248758,0.000000,0.000000,0.250000,0,0);}
.m3f{transform:matrix(0.248789,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248789,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248789,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.248822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248822,0.000000,0.000000,0.250000,0,0);}
.m41{transform:matrix(0.248839,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248839,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248839,0.000000,0.000000,0.250000,0,0);}
.m34{transform:matrix(0.248842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248842,0.000000,0.000000,0.250000,0,0);}
.m71{transform:matrix(0.248869,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248869,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248869,0.000000,0.000000,0.250000,0,0);}
.m4e{transform:matrix(0.248917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248917,0.000000,0.000000,0.250000,0,0);}
.m82{transform:matrix(0.248936,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248936,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248936,0.000000,0.000000,0.250000,0,0);}
.m53{transform:matrix(0.248986,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248986,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248986,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.248989,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248989,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248989,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.249028,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249028,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249028,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.249036,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249036,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249036,0.000000,0.000000,0.250000,0,0);}
.m8e{transform:matrix(0.249042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249042,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.249106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249106,0.000000,0.000000,0.250000,0,0);}
.m47{transform:matrix(0.249114,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249114,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249114,0.000000,0.000000,0.250000,0,0);}
.m65{transform:matrix(0.249131,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249131,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249131,0.000000,0.000000,0.250000,0,0);}
.m3e{transform:matrix(0.249150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249150,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.249178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249178,0.000000,0.000000,0.250000,0,0);}
.m5a{transform:matrix(0.249194,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249194,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249194,0.000000,0.000000,0.250000,0,0);}
.m30{transform:matrix(0.249197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249197,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.249203,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249203,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249203,0.000000,0.000000,0.250000,0,0);}
.m50{transform:matrix(0.249247,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249247,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249247,0.000000,0.000000,0.250000,0,0);}
.m5d{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m68{transform:matrix(0.249292,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249292,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249292,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.249297,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249297,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249297,0.000000,0.000000,0.250000,0,0);}
.m85{transform:matrix(0.249317,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249317,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249317,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.249397,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249397,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249397,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.249514,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249514,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249514,0.000000,0.000000,0.250000,0,0);}
.m46{transform:matrix(0.249578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249578,0.000000,0.000000,0.250000,0,0);}
.m88{transform:matrix(0.249644,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249644,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249644,0.000000,0.000000,0.250000,0,0);}
.m56{transform:matrix(0.249669,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249669,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249669,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249731,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.249739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249739,0.000000,0.000000,0.250000,0,0);}
.m45{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m84{transform:matrix(0.249786,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249786,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249786,0.000000,0.000000,0.250000,0,0);}
.m4c{transform:matrix(0.249794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249794,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.249844,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249844,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249844,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.249861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249861,0.000000,0.000000,0.250000,0,0);}
.m8d{transform:matrix(0.249892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249892,0.000000,0.000000,0.250000,0,0);}
.m8a{transform:matrix(0.249919,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249919,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249919,0.000000,0.000000,0.250000,0,0);}
.m78{transform:matrix(0.249931,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249931,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249931,0.000000,0.000000,0.250000,0,0);}
.m4a{transform:matrix(0.249994,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249994,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249994,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{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:17.820000px;}
.ls30{letter-spacing:-0.756000px;}
.ls12{letter-spacing:-0.648000px;}
.ls1c{letter-spacing:-0.486000px;}
.ls27{letter-spacing:-0.378000px;}
.lse{letter-spacing:-0.324000px;}
.lsd{letter-spacing:-0.270000px;}
.ls11{letter-spacing:-0.225000px;}
.ls13{letter-spacing:-0.216000px;}
.lsc{letter-spacing:-0.162000px;}
.ls10{letter-spacing:-0.108000px;}
.lsf{letter-spacing:-0.054000px;}
.ls0{letter-spacing:0.000000px;}
.ls2f{letter-spacing:0.021600px;}
.ls2e{letter-spacing:0.027000px;}
.ls4{letter-spacing:0.054000px;}
.ls8{letter-spacing:0.108000px;}
.ls1f{letter-spacing:0.162000px;}
.ls22{letter-spacing:0.187680px;}
.ls28{letter-spacing:0.189000px;}
.ls14{letter-spacing:0.216000px;}
.ls26{letter-spacing:0.237600px;}
.ls23{letter-spacing:0.243000px;}
.ls7{letter-spacing:0.270000px;}
.ls9{letter-spacing:0.324000px;}
.ls6{letter-spacing:0.351000px;}
.ls3{letter-spacing:0.378000px;}
.ls25{letter-spacing:0.405000px;}
.lsb{letter-spacing:0.432000px;}
.ls1e{letter-spacing:0.459000px;}
.ls2{letter-spacing:0.486000px;}
.ls16{letter-spacing:0.540000px;}
.ls19{letter-spacing:0.567000px;}
.ls18{letter-spacing:0.594000px;}
.lsa{letter-spacing:0.648000px;}
.ls21{letter-spacing:0.702000px;}
.ls20{letter-spacing:0.729000px;}
.ls5{letter-spacing:0.756000px;}
.ls2d{letter-spacing:0.783000px;}
.ls1a{letter-spacing:0.810000px;}
.ls2c{letter-spacing:0.837000px;}
.ls29{letter-spacing:0.864000px;}
.ls24{letter-spacing:0.918000px;}
.ls17{letter-spacing:0.972000px;}
.ls15{letter-spacing:1.026000px;}
.ls2b{letter-spacing:1.242000px;}
.ls2a{letter-spacing:1.296000px;}
.ls1d{letter-spacing:1.350000px;}
.ls1b{letter-spacing:1.404000px;}
.ls1{letter-spacing:736.741800px;}
.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;}
}
.ws87{word-spacing:-21.684000px;}
.ws0{word-spacing:-18.984000px;}
.wsaf{word-spacing:-15.552000px;}
.wscf{word-spacing:-15.336000px;}
.ws2{word-spacing:-15.012000px;}
.ws3{word-spacing:-13.344000px;}
.ws14{word-spacing:-8.706960px;}
.wsd4{word-spacing:-7.776000px;}
.ws34{word-spacing:-6.210000px;}
.ws4c{word-spacing:-4.860000px;}
.ws98{word-spacing:-4.050000px;}
.wsb6{word-spacing:-3.942000px;}
.ws33{word-spacing:-3.510000px;}
.ws22{word-spacing:-3.348000px;}
.ws6{word-spacing:-3.240000px;}
.ws35{word-spacing:-3.132000px;}
.ws20{word-spacing:-3.078000px;}
.ws1f{word-spacing:-3.024000px;}
.ws5d{word-spacing:-2.970000px;}
.ws5b{word-spacing:-2.916000px;}
.ws52{word-spacing:-2.862000px;}
.ws1b{word-spacing:-2.808000px;}
.wsdd{word-spacing:-2.754000px;}
.wsc5{word-spacing:-2.700000px;}
.wsd6{word-spacing:-2.646000px;}
.ws27{word-spacing:-2.592000px;}
.ws9c{word-spacing:-2.538000px;}
.ws30{word-spacing:-2.520000px;}
.ws41{word-spacing:-2.430000px;}
.ws4a{word-spacing:-2.376000px;}
.wsc{word-spacing:-2.268000px;}
.ws24{word-spacing:-2.214000px;}
.wscb{word-spacing:-2.160000px;}
.ws46{word-spacing:-2.106000px;}
.ws62{word-spacing:-2.052000px;}
.ws68{word-spacing:-1.944000px;}
.ws6a{word-spacing:-1.890000px;}
.ws2c{word-spacing:-1.782000px;}
.ws63{word-spacing:-1.728000px;}
.ws38{word-spacing:-1.674000px;}
.ws61{word-spacing:-1.620000px;}
.ws73{word-spacing:-1.566000px;}
.ws64{word-spacing:-1.512000px;}
.wse{word-spacing:-1.458000px;}
.wsa5{word-spacing:-1.404000px;}
.wsc9{word-spacing:-1.350000px;}
.wsa1{word-spacing:-1.296000px;}
.wsd5{word-spacing:-1.242000px;}
.ws74{word-spacing:-1.188000px;}
.ws7d{word-spacing:-1.134000px;}
.ws93{word-spacing:-1.080000px;}
.ws8b{word-spacing:-1.026000px;}
.wsd1{word-spacing:-0.972000px;}
.wsce{word-spacing:-0.918000px;}
.ws31{word-spacing:-0.810000px;}
.wsc2{word-spacing:-0.702000px;}
.wsd9{word-spacing:-0.648000px;}
.ws23{word-spacing:-0.540000px;}
.wsae{word-spacing:-0.486000px;}
.ws2e{word-spacing:-0.432000px;}
.wscd{word-spacing:-0.378000px;}
.ws15{word-spacing:-0.324000px;}
.ws97{word-spacing:-0.315000px;}
.ws84{word-spacing:-0.270000px;}
.ws37{word-spacing:-0.216000px;}
.ws13{word-spacing:-0.192000px;}
.ws54{word-spacing:-0.162000px;}
.ws69{word-spacing:-0.108000px;}
.ws1{word-spacing:0.000000px;}
.ws10{word-spacing:0.054000px;}
.wsb0{word-spacing:0.108000px;}
.ws95{word-spacing:0.135000px;}
.ws79{word-spacing:0.162000px;}
.ws7c{word-spacing:0.216000px;}
.wsc3{word-spacing:0.270000px;}
.ws7f{word-spacing:0.324000px;}
.wsa9{word-spacing:0.486000px;}
.ws40{word-spacing:0.540000px;}
.ws8d{word-spacing:0.594000px;}
.ws1a{word-spacing:0.648000px;}
.ws83{word-spacing:0.702000px;}
.ws9{word-spacing:0.756000px;}
.ws65{word-spacing:0.810000px;}
.ws16{word-spacing:0.864000px;}
.wsa3{word-spacing:0.918000px;}
.ws72{word-spacing:0.972000px;}
.wsc8{word-spacing:0.990000px;}
.ws90{word-spacing:1.026000px;}
.ws3c{word-spacing:1.080000px;}
.ws67{word-spacing:1.134000px;}
.ws94{word-spacing:1.188000px;}
.ws3b{word-spacing:1.242000px;}
.ws5{word-spacing:1.344000px;}
.ws4d{word-spacing:1.350000px;}
.ws2b{word-spacing:1.404000px;}
.wsb7{word-spacing:1.458000px;}
.ws4{word-spacing:1.512000px;}
.ws47{word-spacing:1.566000px;}
.ws6b{word-spacing:1.620000px;}
.ws89{word-spacing:1.674000px;}
.wsf{word-spacing:1.680000px;}
.ws8a{word-spacing:1.728000px;}
.ws48{word-spacing:1.782000px;}
.ws2f{word-spacing:1.836000px;}
.ws17{word-spacing:1.861878px;}
.wsb3{word-spacing:1.890000px;}
.ws5e{word-spacing:1.944000px;}
.ws44{word-spacing:1.998000px;}
.ws7{word-spacing:2.052000px;}
.ws6f{word-spacing:2.106000px;}
.ws78{word-spacing:2.160000px;}
.ws1d{word-spacing:2.268000px;}
.ws5f{word-spacing:2.322000px;}
.ws88{word-spacing:2.376000px;}
.ws7a{word-spacing:2.430000px;}
.ws9b{word-spacing:2.484000px;}
.ws29{word-spacing:2.538000px;}
.wsab{word-spacing:2.646000px;}
.ws18{word-spacing:2.700000px;}
.ws58{word-spacing:2.754000px;}
.wsb9{word-spacing:2.808000px;}
.ws12{word-spacing:2.832000px;}
.wsd3{word-spacing:2.916000px;}
.wsc6{word-spacing:2.970000px;}
.ws36{word-spacing:3.024000px;}
.wsc7{word-spacing:3.060000px;}
.ws49{word-spacing:3.078000px;}
.wsa{word-spacing:3.132000px;}
.ws99{word-spacing:3.186000px;}
.wsc1{word-spacing:3.240000px;}
.ws4b{word-spacing:3.294000px;}
.ws32{word-spacing:3.348000px;}
.wsa7{word-spacing:3.402000px;}
.ws7b{word-spacing:3.456000px;}
.ws3d{word-spacing:3.510000px;}
.ws3e{word-spacing:3.564000px;}
.wsd{word-spacing:3.618000px;}
.ws1c{word-spacing:3.672000px;}
.ws28{word-spacing:3.726000px;}
.ws11{word-spacing:3.780000px;}
.ws77{word-spacing:3.834000px;}
.ws45{word-spacing:3.888000px;}
.wsd8{word-spacing:3.942000px;}
.ws39{word-spacing:3.996000px;}
.wsd0{word-spacing:4.050000px;}
.ws50{word-spacing:4.104000px;}
.ws7e{word-spacing:4.158000px;}
.wsbc{word-spacing:4.212000px;}
.ws8{word-spacing:4.266000px;}
.wsbf{word-spacing:4.320000px;}
.ws2d{word-spacing:4.374000px;}
.ws82{word-spacing:4.428000px;}
.ws55{word-spacing:4.482000px;}
.ws9f{word-spacing:4.536000px;}
.ws85{word-spacing:4.590000px;}
.ws21{word-spacing:4.644000px;}
.wsb{word-spacing:4.698000px;}
.ws60{word-spacing:4.752000px;}
.ws9e{word-spacing:4.806000px;}
.ws70{word-spacing:4.860000px;}
.wsbb{word-spacing:4.914000px;}
.ws8c{word-spacing:4.968000px;}
.ws26{word-spacing:5.022000px;}
.ws5c{word-spacing:5.076000px;}
.ws42{word-spacing:5.130000px;}
.ws3f{word-spacing:5.184000px;}
.wsb4{word-spacing:5.238000px;}
.ws86{word-spacing:5.292000px;}
.ws75{word-spacing:5.346000px;}
.ws6e{word-spacing:5.400000px;}
.wsa4{word-spacing:5.454000px;}
.ws92{word-spacing:5.508000px;}
.ws6d{word-spacing:5.724000px;}
.ws96{word-spacing:5.760000px;}
.wsd7{word-spacing:5.778000px;}
.ws53{word-spacing:5.832000px;}
.ws91{word-spacing:5.886000px;}
.wsac{word-spacing:5.940000px;}
.ws25{word-spacing:5.994000px;}
.ws1e{word-spacing:6.048000px;}
.ws19{word-spacing:6.102000px;}
.ws8f{word-spacing:6.210000px;}
.ws9a{word-spacing:6.372000px;}
.ws56{word-spacing:6.534000px;}
.wsdb{word-spacing:6.642000px;}
.ws4e{word-spacing:6.750000px;}
.wsb5{word-spacing:6.912000px;}
.wsc4{word-spacing:7.020000px;}
.ws59{word-spacing:7.074000px;}
.wscc{word-spacing:7.128000px;}
.wsa6{word-spacing:7.182000px;}
.ws51{word-spacing:7.290000px;}
.wsad{word-spacing:7.398000px;}
.ws9d{word-spacing:7.560000px;}
.wsa2{word-spacing:7.668000px;}
.ws81{word-spacing:7.722000px;}
.ws3a{word-spacing:8.154000px;}
.wsd2{word-spacing:8.532000px;}
.ws71{word-spacing:8.640000px;}
.wsaa{word-spacing:8.856000px;}
.ws76{word-spacing:8.910000px;}
.wsda{word-spacing:9.018000px;}
.ws2a{word-spacing:9.450000px;}
.wsb2{word-spacing:9.504000px;}
.ws8e{word-spacing:9.558000px;}
.ws57{word-spacing:9.774000px;}
.ws5a{word-spacing:10.152000px;}
.wsba{word-spacing:10.422000px;}
.wsa0{word-spacing:10.476000px;}
.wsdc{word-spacing:10.638000px;}
.wsca{word-spacing:10.908000px;}
.ws80{word-spacing:11.394000px;}
.wsbd{word-spacing:11.556000px;}
.ws4f{word-spacing:12.312000px;}
.wsbe{word-spacing:12.474000px;}
.ws43{word-spacing:12.528000px;}
.wsb8{word-spacing:12.582000px;}
.wsc0{word-spacing:12.906000px;}
.wsb1{word-spacing:15.498000px;}
.wsa8{word-spacing:15.822000px;}
.ws6c{word-spacing:16.632000px;}
.ws66{word-spacing:17.496000px;}
._14{margin-left:-21.684000px;}
._13{margin-left:-18.261000px;}
._10{margin-left:-14.935500px;}
._c{margin-left:-12.505500px;}
._a{margin-left:-9.660000px;}
._16{margin-left:-8.372400px;}
._2{margin-left:-7.353600px;}
._5{margin-left:-5.764800px;}
._3{margin-left:-4.284000px;}
._d{margin-left:-3.102000px;}
._1{margin-left:-1.996800px;}
._4{width:1.440000px;}
._6{width:2.640000px;}
._7{width:4.531200px;}
._0{width:5.587200px;}
._11{width:7.740000px;}
._e{width:11.070000px;}
._8{width:16.245000px;}
._12{width:20.241000px;}
._15{width:22.315500px;}
._f{width:23.575500px;}
._b{width:26.995500px;}
._9{width:29.205000px;}
.fc4{color:rgb(127,22,26);}
.fc2{color:rgb(247,146,16);}
.fc3{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fsc{font-size:31.320000px;}
.fsa{font-size:36.000000px;}
.fs6{font-size:39.000000px;}
.fsd{font-size:45.000000px;}
.fs3{font-size:48.000000px;}
.fs4{font-size:54.000000px;}
.fs9{font-size:60.000000px;}
.fs2{font-size:66.000000px;}
.fs7{font-size:66.495626px;}
.fs5{font-size:72.000000px;}
.fsb{font-size:78.000000px;}
.fs1{font-size:84.000000px;}
.fs0{font-size:96.000000px;}
.fs8{font-size:120.000000px;}
.y0{bottom:0.000000px;}
.yc{bottom:8.040000px;}
.y1d{bottom:48.195300px;}
.y1c{bottom:63.945300px;}
.y18{bottom:76.391700px;}
.y1b{bottom:93.175650px;}
.y13{bottom:99.795000px;}
.ybe{bottom:127.558950px;}
.y6c{bottom:127.559100px;}
.yee{bottom:127.559250px;}
.y2e{bottom:129.975300px;}
.y16{bottom:135.750000px;}
.y6b{bottom:142.559100px;}
.y19f{bottom:146.422650px;}
.ybd{bottom:146.490900px;}
.y1f5{bottom:146.692800px;}
.y2d{bottom:148.725300px;}
.y14{bottom:154.950000px;}
.yf{bottom:156.015000px;}
.y6a{bottom:157.559100px;}
.y15{bottom:157.830000px;}
.y19e{bottom:165.286350px;}
.ybc{bottom:165.422850px;}
.y1f4{bottom:165.471000px;}
.y225{bottom:165.620700px;}
.y2c{bottom:167.475300px;}
.y14b{bottom:172.559100px;}
.y19d{bottom:184.150200px;}
.y1f3{bottom:184.249200px;}
.ybb{bottom:184.354650px;}
.y224{bottom:184.548450px;}
.y11d{bottom:185.078850px;}
.yed{bottom:185.079000px;}
.y2b{bottom:186.225300px;}
.y14a{bottom:187.559250px;}
.y149{bottom:202.559250px;}
.y1f2{bottom:203.027400px;}
.yba{bottom:203.286600px;}
.y223{bottom:203.476200px;}
.yec{bottom:203.836200px;}
.y11c{bottom:203.995350px;}
.y2a{bottom:204.975300px;}
.y69{bottom:215.078850px;}
.y8d{bottom:215.079000px;}
.y148{bottom:217.559250px;}
.y19c{bottom:221.763900px;}
.y1f1{bottom:221.805450px;}
.yb9{bottom:222.218400px;}
.y222{bottom:222.403950px;}
.yeb{bottom:222.593400px;}
.y11b{bottom:222.911700px;}
.y1cb{bottom:234.169350px;}
.y8c{bottom:234.180600px;}
.y68{bottom:234.337950px;}
.y1f0{bottom:240.583650px;}
.yb8{bottom:241.150350px;}
.y221{bottom:241.331700px;}
.yea{bottom:241.350750px;}
.y11a{bottom:241.828350px;}
.y1ca{bottom:253.260000px;}
.y8b{bottom:253.282050px;}
.y67{bottom:253.596900px;}
.y29{bottom:254.475300px;}
.y1ef{bottom:259.361850px;}
.yb7{bottom:260.082300px;}
.ye9{bottom:260.107950px;}
.y220{bottom:260.259450px;}
.y119{bottom:260.744700px;}
.y1c9{bottom:272.350500px;}
.y8a{bottom:272.383650px;}
.y66{bottom:272.856000px;}
.y147{bottom:275.079000px;}
.y1ee{bottom:278.139900px;}
.ye8{bottom:278.865150px;}
.yb6{bottom:279.014250px;}
.y21f{bottom:279.187350px;}
.y118{bottom:279.661350px;}
.y28{bottom:281.475300px;}
.y19b{bottom:281.877600px;}
.y1c8{bottom:291.441000px;}
.y89{bottom:291.485250px;}
.y65{bottom:292.115100px;}
.y171{bottom:293.933400px;}
.y146{bottom:294.104550px;}
.y1ed{bottom:296.918100px;}
.ye7{bottom:297.622350px;}
.yb5{bottom:297.946050px;}
.y21e{bottom:298.114950px;}
.y117{bottom:298.577700px;}
.y19a{bottom:300.741300px;}
.y1c7{bottom:310.531650px;}
.y88{bottom:310.586850px;}
.y64{bottom:311.374200px;}
.y170{bottom:312.787950px;}
.y145{bottom:313.130100px;}
.y1ec{bottom:315.696300px;}
.ye6{bottom:316.379550px;}
.yb4{bottom:316.878000px;}
.y21d{bottom:317.042850px;}
.y116{bottom:317.494200px;}
.y199{bottom:319.605000px;}
.y1c6{bottom:329.622150px;}
.y87{bottom:329.688450px;}
.y63{bottom:330.633150px;}
.y16f{bottom:331.642350px;}
.y144{bottom:332.155800px;}
.y1eb{bottom:334.474500px;}
.ye5{bottom:335.136750px;}
.y27{bottom:335.475300px;}
.yc0{bottom:335.809800px;}
.y21c{bottom:335.970600px;}
.y115{bottom:336.410700px;}
.y198{bottom:338.468700px;}
.ya{bottom:344.680500px;}
.y1c5{bottom:348.712650px;}
.y86{bottom:348.789900px;}
.y62{bottom:349.892250px;}
.y16e{bottom:350.496900px;}
.y143{bottom:351.181350px;}
.y1ea{bottom:353.252700px;}
.ye4{bottom:353.894100px;}
.y26{bottom:354.225300px;}
.yb3{bottom:354.741750px;}
.y21b{bottom:354.898350px;}
.y114{bottom:355.327200px;}
.y197{bottom:357.332400px;}
.y1c4{bottom:367.803300px;}
.y85{bottom:367.891500px;}
.y61{bottom:369.151350px;}
.y16d{bottom:369.351450px;}
.y142{bottom:370.206900px;}
.y1e9{bottom:372.030750px;}
.ye3{bottom:372.651150px;}
.yb2{bottom:373.673700px;}
.y21a{bottom:373.826100px;}
.y113{bottom:374.243700px;}
.y196{bottom:376.196250px;}
.y25{bottom:380.977350px;}
.yd{bottom:386.490000px;}
.y1c3{bottom:386.893800px;}
.y84{bottom:386.993100px;}
.y16c{bottom:388.205850px;}
.y60{bottom:388.410450px;}
.y141{bottom:389.232450px;}
.y1e8{bottom:390.808950px;}
.ye2{bottom:391.408500px;}
.yb1{bottom:392.605500px;}
.y219{bottom:392.754000px;}
.y112{bottom:393.160200px;}
.y195{bottom:395.059950px;}
.y9{bottom:395.689500px;}
.y24{bottom:399.727350px;}
.y1c2{bottom:405.984300px;}
.y83{bottom:406.094700px;}
.y16b{bottom:407.060400px;}
.y5f{bottom:407.669400px;}
.y140{bottom:408.258150px;}
.y1e7{bottom:409.587150px;}
.ye1{bottom:410.165700px;}
.yb0{bottom:411.537450px;}
.y218{bottom:411.681750px;}
.y111{bottom:412.076700px;}
.y194{bottom:413.923650px;}
.y23{bottom:418.477350px;}
.y1c1{bottom:425.074950px;}
.y82{bottom:425.196300px;}
.y16a{bottom:425.914800px;}
.y5e{bottom:426.928500px;}
.y13f{bottom:427.283700px;}
.y1e6{bottom:428.365350px;}
.ye0{bottom:428.922900px;}
.yaf{bottom:430.469400px;}
.y217{bottom:430.609500px;}
.y110{bottom:430.993200px;}
.y193{bottom:432.787350px;}
.yb{bottom:434.850000px;}
.y22{bottom:437.227350px;}
.y1c0{bottom:444.165450px;}
.y169{bottom:444.769350px;}
.y5d{bottom:446.187600px;}
.y13e{bottom:446.309250px;}
.y8{bottom:446.698500px;}
.ydf{bottom:447.680100px;}
.yae{bottom:449.401200px;}
.y216{bottom:449.537250px;}
.y10f{bottom:449.909700px;}
.y192{bottom:451.651050px;}
.y21{bottom:455.977350px;}
.y81{bottom:463.047750px;}
.y1bf{bottom:463.256100px;}
.y168{bottom:463.623900px;}
.y13d{bottom:465.334950px;}
.y5c{bottom:465.446700px;}
.y1e5{bottom:465.893400px;}
.yde{bottom:466.437300px;}
.yad{bottom:468.333150px;}
.y215{bottom:468.465000px;}
.y10e{bottom:468.826200px;}
.y191{bottom:470.514750px;}
.y20{bottom:474.727350px;}
.y1be{bottom:482.346600px;}
.y167{bottom:482.478300px;}
.y13c{bottom:484.360500px;}
.y5b{bottom:484.705650px;}
.ydd{bottom:485.194500px;}
.y80{bottom:485.899350px;}
.yac{bottom:487.265100px;}
.y214{bottom:487.392750px;}
.y10d{bottom:487.742700px;}
.y10{bottom:488.055000px;}
.y190{bottom:489.378450px;}
.y1f{bottom:493.477350px;}
.y7{bottom:497.707500px;}
.y166{bottom:501.332850px;}
.y1bd{bottom:501.437100px;}
.y13b{bottom:503.386050px;}
.ydc{bottom:503.951850px;}
.y5a{bottom:503.964750px;}
.ybf{bottom:506.196900px;}
.y213{bottom:506.320650px;}
.y10c{bottom:506.659200px;}
.y18f{bottom:508.242300px;}
.y165{bottom:520.187250px;}
.y1bc{bottom:520.527750px;}
.y13a{bottom:522.411600px;}
.ydb{bottom:522.709050px;}
.y59{bottom:523.223850px;}
.yab{bottom:525.128850px;}
.y212{bottom:525.248400px;}
.y10b{bottom:525.575700px;}
.y1e4{bottom:525.921600px;}
.y18e{bottom:527.106000px;}
.y7f{bottom:527.500950px;}
.y11{bottom:538.230000px;}
.y164{bottom:539.041800px;}
.y1bb{bottom:539.618250px;}
.y139{bottom:541.437300px;}
.y58{bottom:542.482950px;}
.yaa{bottom:544.060800px;}
.y211{bottom:544.176150px;}
.y10a{bottom:544.492200px;}
.y1e3{bottom:544.699800px;}
.y18d{bottom:545.969700px;}
.y6{bottom:548.716500px;}
.y163{bottom:557.896200px;}
.y1ba{bottom:558.708900px;}
.yda{bottom:560.216250px;}
.y138{bottom:560.462850px;}
.y57{bottom:561.742050px;}
.ya9{bottom:562.992600px;}
.y210{bottom:563.103900px;}
.y109{bottom:563.408550px;}
.y1e2{bottom:563.478000px;}
.y18c{bottom:564.833400px;}
.y162{bottom:576.750750px;}
.y1b9{bottom:577.799400px;}
.y137{bottom:579.488400px;}
.y56{bottom:581.001000px;}
.ya8{bottom:581.924550px;}
.y20f{bottom:582.031650px;}
.y1e1{bottom:582.256050px;}
.y108{bottom:582.325050px;}
.yd9{bottom:582.723450px;}
.y18b{bottom:583.697100px;}
.y7e{bottom:587.852550px;}
.y17{bottom:589.605000px;}
.y161{bottom:595.605150px;}
.y1b8{bottom:596.889900px;}
.y136{bottom:598.514100px;}
.y5{bottom:599.725500px;}
.y55{bottom:600.260100px;}
.ya7{bottom:600.856500px;}
.y20e{bottom:600.959400px;}
.y1e0{bottom:601.034250px;}
.y107{bottom:601.241550px;}
.y18a{bottom:602.560800px;}
.y3d{bottom:603.379950px;}
.y7d{bottom:606.954000px;}
.y160{bottom:614.459700px;}
.y1b7{bottom:615.980550px;}
.y135{bottom:617.539650px;}
.y54{bottom:619.519200px;}
.ya6{bottom:619.788300px;}
.y1df{bottom:619.812450px;}
.y20d{bottom:619.887300px;}
.y106{bottom:620.158050px;}
.y3c{bottom:620.629950px;}
.y189{bottom:621.424650px;}
.yd8{bottom:623.980650px;}
.y7c{bottom:626.055750px;}
.ye{bottom:631.920000px;}
.y15f{bottom:633.314100px;}
.y1b6{bottom:635.071050px;}
.y134{bottom:636.565200px;}
.y3b{bottom:637.879950px;}
.y1de{bottom:638.590650px;}
.ya5{bottom:638.720250px;}
.y53{bottom:638.778300px;}
.y20c{bottom:638.815050px;}
.y105{bottom:639.074550px;}
.y188{bottom:640.288350px;}
.yd7{bottom:642.737850px;}
.y7b{bottom:645.157200px;}
.y15e{bottom:652.168650px;}
.y1b5{bottom:654.161700px;}
.y133{bottom:655.590750px;}
.y1dd{bottom:657.368700px;}
.ya4{bottom:657.652200px;}
.y20b{bottom:657.742800px;}
.y104{bottom:657.991050px;}
.y187{bottom:659.152050px;}
.yd6{bottom:661.495200px;}
.y7a{bottom:664.258800px;}
.y15d{bottom:671.023200px;}
.y1b4{bottom:673.252200px;}
.y3a{bottom:674.169600px;}
.y132{bottom:674.616450px;}
.y1dc{bottom:676.146900px;}
.ya3{bottom:676.584000px;}
.y20a{bottom:676.670550px;}
.y103{bottom:676.907550px;}
.y52{bottom:677.296350px;}
.y186{bottom:678.015750px;}
.yd5{bottom:680.252400px;}
.y79{bottom:683.360400px;}
.y15c{bottom:689.877600px;}
.y39{bottom:690.669600px;}
.y1b3{bottom:692.342700px;}
.y131{bottom:693.642000px;}
.y1db{bottom:694.925100px;}
.ya2{bottom:695.515950px;}
.y209{bottom:695.598300px;}
.y102{bottom:695.824050px;}
.y51{bottom:696.555450px;}
.y185{bottom:696.879450px;}
.yd4{bottom:699.009600px;}
.y78{bottom:702.462000px;}
.y38{bottom:707.169600px;}
.y15b{bottom:708.732150px;}
.y1b2{bottom:711.433350px;}
.y130{bottom:712.667700px;}
.y1da{bottom:713.703300px;}
.ya1{bottom:714.447750px;}
.y208{bottom:714.526200px;}
.y101{bottom:714.740550px;}
.y184{bottom:715.743150px;}
.y50{bottom:715.814550px;}
.yd3{bottom:717.766800px;}
.y77{bottom:721.563600px;}
.y37{bottom:723.669600px;}
.y1b1{bottom:730.523850px;}
.y12f{bottom:731.693250px;}
.y1d9{bottom:732.481500px;}
.ya0{bottom:733.379700px;}
.y207{bottom:733.453950px;}
.y100{bottom:733.657050px;}
.y183{bottom:734.606850px;}
.y4f{bottom:735.073650px;}
.yd2{bottom:736.524000px;}
.y76{bottom:740.665050px;}
.y15a{bottom:746.336550px;}
.y1b0{bottom:749.614350px;}
.y12e{bottom:750.718800px;}
.y1d8{bottom:751.259550px;}
.y9f{bottom:752.311650px;}
.y206{bottom:752.381700px;}
.yff{bottom:752.573550px;}
.y182{bottom:753.470700px;}
.y4e{bottom:754.332750px;}
.yd1{bottom:755.281200px;}
.y75{bottom:759.766650px;}
.y1af{bottom:768.705000px;}
.y159{bottom:768.941100px;}
.y12d{bottom:769.744350px;}
.y1d7{bottom:770.037750px;}
.y9e{bottom:771.243600px;}
.y205{bottom:771.309450px;}
.yfe{bottom:771.490050px;}
.y181{bottom:772.334250px;}
.y4d{bottom:773.591700px;}
.yd0{bottom:774.038400px;}
.y4{bottom:778.225500px;}
.y74{bottom:778.868250px;}
.y1ae{bottom:787.795500px;}
.y12c{bottom:788.770050px;}
.y1d6{bottom:788.815950px;}
.y9d{bottom:790.175400px;}
.y204{bottom:790.237200px;}
.yfd{bottom:790.406550px;}
.y180{bottom:791.198100px;}
.ycf{bottom:792.795750px;}
.y4c{bottom:792.850800px;}
.y73{bottom:797.969850px;}
.y1ad{bottom:806.886150px;}
.y1d5{bottom:807.594150px;}
.y12b{bottom:807.795600px;}
.y9c{bottom:809.107350px;}
.y203{bottom:809.165100px;}
.yfc{bottom:809.323050px;}
.y17f{bottom:810.061800px;}
.y33{bottom:810.976800px;}
.yce{bottom:811.552950px;}
.y4b{bottom:812.109900px;}
.y12{bottom:815.670000px;}
.y72{bottom:817.071300px;}
.y1ac{bottom:825.976650px;}
.y12a{bottom:826.821150px;}
.y9b{bottom:828.039150px;}
.y202{bottom:828.092850px;}
.yfb{bottom:828.239550px;}
.y17e{bottom:828.925500px;}
.y32{bottom:828.976650px;}
.y158{bottom:829.045500px;}
.ycd{bottom:830.310150px;}
.y4a{bottom:831.369000px;}
.y71{bottom:836.172900px;}
.y230{bottom:843.115800px;}
.y1ab{bottom:845.067300px;}
.y1d4{bottom:845.122200px;}
.y129{bottom:845.846700px;}
.y9a{bottom:846.971100px;}
.y31{bottom:846.976650px;}
.y201{bottom:847.020600px;}
.yfa{bottom:847.155900px;}
.y17d{bottom:847.789200px;}
.y157{bottom:847.900050px;}
.ycc{bottom:849.067350px;}
.y49{bottom:850.628100px;}
.y70{bottom:855.274500px;}
.y22f{bottom:860.365800px;}
.y1aa{bottom:864.157800px;}
.y128{bottom:864.872250px;}
.y99{bottom:865.903050px;}
.y200{bottom:865.948500px;}
.yf9{bottom:866.072550px;}
.y17c{bottom:866.652900px;}
.y156{bottom:866.754600px;}
.ycb{bottom:867.824550px;}
.y48{bottom:869.887200px;}
.y6f{bottom:874.376100px;}
.y22e{bottom:877.615800px;}
.y35{bottom:878.101200px;}
.y1a9{bottom:883.248450px;}
.y127{bottom:883.897950px;}
.y98{bottom:884.835000px;}
.y1ff{bottom:884.876250px;}
.yf8{bottom:884.989050px;}
.y17b{bottom:885.516600px;}
.y155{bottom:885.609000px;}
.yca{bottom:886.581900px;}
.y6e{bottom:893.477550px;}
.y34{bottom:896.101200px;}
.y1a8{bottom:902.338950px;}
.y126{bottom:902.923500px;}
.y97{bottom:903.766800px;}
.y1fe{bottom:903.804000px;}
.yf7{bottom:903.905550px;}
.y17a{bottom:904.380450px;}
.y154{bottom:904.463550px;}
.y1d3{bottom:905.150400px;}
.yc9{bottom:905.339100px;}
.y3{bottom:905.716500px;}
.y47{bottom:907.896300px;}
.y22d{bottom:912.115800px;}
.y6d{bottom:912.579150px;}
.y1a7{bottom:921.429450px;}
.y125{bottom:921.949200px;}
.y96{bottom:922.698600px;}
.y1fd{bottom:922.731750px;}
.yf6{bottom:922.822050px;}
.y179{bottom:923.244300px;}
.y153{bottom:923.317950px;}
.y1d2{bottom:923.928600px;}
.yc8{bottom:924.096300px;}
.y22c{bottom:929.365800px;}
.y1a6{bottom:940.520100px;}
.y124{bottom:940.974750px;}
.y95{bottom:941.630550px;}
.y1fc{bottom:941.659500px;}
.yf5{bottom:941.738550px;}
.y178{bottom:942.108000px;}
.y152{bottom:942.172500px;}
.y1d1{bottom:942.706650px;}
.yc7{bottom:942.853500px;}
.y30{bottom:942.929250px;}
.y22b{bottom:946.615800px;}
.y1a5{bottom:959.610600px;}
.y123{bottom:960.000300px;}
.y94{bottom:960.562500px;}
.y1fb{bottom:960.587250px;}
.yf4{bottom:960.655050px;}
.y177{bottom:960.971700px;}
.y151{bottom:961.026900px;}
.y1d0{bottom:961.484850px;}
.yc6{bottom:961.610550px;}
.y22a{bottom:963.865800px;}
.y2{bottom:964.228500px;}
.y2f{bottom:975.929250px;}
.y1a4{bottom:978.701250px;}
.y122{bottom:979.026000px;}
.y93{bottom:979.494450px;}
.y1fa{bottom:979.515150px;}
.yf3{bottom:979.571550px;}
.y176{bottom:979.835400px;}
.y150{bottom:979.881450px;}
.y1cf{bottom:980.263050px;}
.yc5{bottom:980.367900px;}
.y1{bottom:989.716500px;}
.y46{bottom:990.936000px;}
.y1a3{bottom:997.791750px;}
.y121{bottom:998.051550px;}
.y229{bottom:998.365800px;}
.y92{bottom:998.426400px;}
.y1f9{bottom:998.442900px;}
.yf2{bottom:998.488050px;}
.y175{bottom:998.699100px;}
.y14f{bottom:998.736000px;}
.yc4{bottom:999.125100px;}
.y45{bottom:1009.686000px;}
.y228{bottom:1015.615800px;}
.y1a2{bottom:1016.882250px;}
.y120{bottom:1017.077250px;}
.y91{bottom:1017.358200px;}
.y1f8{bottom:1017.370650px;}
.yf1{bottom:1017.404550px;}
.y174{bottom:1017.562800px;}
.y14e{bottom:1017.590400px;}
.y1ce{bottom:1017.819450px;}
.yc3{bottom:1017.882300px;}
.y36{bottom:1024.142100px;}
.y227{bottom:1032.865800px;}
.y1a1{bottom:1035.972900px;}
.y11f{bottom:1036.102800px;}
.y90{bottom:1036.290150px;}
.y1f7{bottom:1036.298400px;}
.yf0{bottom:1036.321050px;}
.y173{bottom:1036.426500px;}
.y44{bottom:1036.437900px;}
.y14d{bottom:1036.444950px;}
.y1cd{bottom:1036.597650px;}
.yc2{bottom:1036.639500px;}
.y226{bottom:1050.115800px;}
.y1a0{bottom:1055.063400px;}
.y11e{bottom:1055.128350px;}
.y43{bottom:1055.187900px;}
.y8f{bottom:1055.222100px;}
.y1f6{bottom:1055.226150px;}
.yef{bottom:1055.237400px;}
.y172{bottom:1055.290350px;}
.y14c{bottom:1055.299500px;}
.y1cc{bottom:1055.375850px;}
.yc1{bottom:1055.396700px;}
.y42{bottom:1073.937900px;}
.y8e{bottom:1074.154050px;}
.y19{bottom:1084.334250px;}
.y3e{bottom:1125.062550px;}
.y3f{bottom:1126.334100px;}
.y1e{bottom:1129.473750px;}
.y41{bottom:1169.340000px;}
.y40{bottom:1181.340000px;}
.y1a{bottom:1219.842900px;}
.h17{height:31.500000px;}
.h4{height:33.000000px;}
.hd{height:34.125000px;}
.h9{height:36.000000px;}
.h19{height:38.070000px;}
.h11{height:40.068000px;}
.hb{height:40.608000px;}
.h16{height:40.932000px;}
.h14{height:45.480000px;}
.ha{height:45.684000px;}
.he{height:50.028000px;}
.h10{height:50.403685px;}
.h13{height:50.760000px;}
.h15{height:54.000000px;}
.hc{height:54.576000px;}
.h3{height:58.406250px;}
.h18{height:59.124000px;}
.h2{height:66.750000px;}
.h5{height:67.740234px;}
.hf{height:72.000000px;}
.h12{height:90.000000px;}
.h7{height:115.215000px;}
.h6{height:171.435000px;}
.h8{height:173.250000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w8{width:301.170000px;}
.w6{width:366.465000px;}
.w2{width:494.625000px;}
.w5{width:552.660000px;}
.w3{width:553.275000px;}
.w4{width:597.405000px;}
.w7{width:651.810000px;}
.w9{width:892.914000px;}
.w0{width:892.920000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:3.000000px;}
.xd{left:63.779550px;}
.xb{left:65.279550px;}
.x16{left:85.039350px;}
.x1a{left:89.291400px;}
.xe{left:90.614100px;}
.x17{left:92.418900px;}
.x12{left:96.723300px;}
.x10{left:99.925200px;}
.x11{left:100.947600px;}
.x9{left:126.345000px;}
.x1{left:127.559100px;}
.x5{left:174.105000px;}
.x2{left:191.040000px;}
.x7{left:200.715000px;}
.x8{left:217.320000px;}
.x4{left:220.050000px;}
.x6{left:222.480000px;}
.x13{left:227.598450px;}
.xf{left:266.240700px;}
.x1b{left:438.462900px;}
.xa{left:441.283800px;}
.x18{left:459.212550px;}
.x19{left:480.472350px;}
.x15{left:487.559100px;}
.xc{left:525.752700px;}
.x14{left:666.514050px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:15.840000pt;}
.ls30{letter-spacing:-0.672000pt;}
.ls12{letter-spacing:-0.576000pt;}
.ls1c{letter-spacing:-0.432000pt;}
.ls27{letter-spacing:-0.336000pt;}
.lse{letter-spacing:-0.288000pt;}
.lsd{letter-spacing:-0.240000pt;}
.ls11{letter-spacing:-0.200000pt;}
.ls13{letter-spacing:-0.192000pt;}
.lsc{letter-spacing:-0.144000pt;}
.ls10{letter-spacing:-0.096000pt;}
.lsf{letter-spacing:-0.048000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2f{letter-spacing:0.019200pt;}
.ls2e{letter-spacing:0.024000pt;}
.ls4{letter-spacing:0.048000pt;}
.ls8{letter-spacing:0.096000pt;}
.ls1f{letter-spacing:0.144000pt;}
.ls22{letter-spacing:0.166827pt;}
.ls28{letter-spacing:0.168000pt;}
.ls14{letter-spacing:0.192000pt;}
.ls26{letter-spacing:0.211200pt;}
.ls23{letter-spacing:0.216000pt;}
.ls7{letter-spacing:0.240000pt;}
.ls9{letter-spacing:0.288000pt;}
.ls6{letter-spacing:0.312000pt;}
.ls3{letter-spacing:0.336000pt;}
.ls25{letter-spacing:0.360000pt;}
.lsb{letter-spacing:0.384000pt;}
.ls1e{letter-spacing:0.408000pt;}
.ls2{letter-spacing:0.432000pt;}
.ls16{letter-spacing:0.480000pt;}
.ls19{letter-spacing:0.504000pt;}
.ls18{letter-spacing:0.528000pt;}
.lsa{letter-spacing:0.576000pt;}
.ls21{letter-spacing:0.624000pt;}
.ls20{letter-spacing:0.648000pt;}
.ls5{letter-spacing:0.672000pt;}
.ls2d{letter-spacing:0.696000pt;}
.ls1a{letter-spacing:0.720000pt;}
.ls2c{letter-spacing:0.744000pt;}
.ls29{letter-spacing:0.768000pt;}
.ls24{letter-spacing:0.816000pt;}
.ls17{letter-spacing:0.864000pt;}
.ls15{letter-spacing:0.912000pt;}
.ls2b{letter-spacing:1.104000pt;}
.ls2a{letter-spacing:1.152000pt;}
.ls1d{letter-spacing:1.200000pt;}
.ls1b{letter-spacing:1.248000pt;}
.ls1{letter-spacing:654.881600pt;}
.ws87{word-spacing:-19.274667pt;}
.ws0{word-spacing:-16.874667pt;}
.wsaf{word-spacing:-13.824000pt;}
.wscf{word-spacing:-13.632000pt;}
.ws2{word-spacing:-13.344000pt;}
.ws3{word-spacing:-11.861333pt;}
.ws14{word-spacing:-7.739520pt;}
.wsd4{word-spacing:-6.912000pt;}
.ws34{word-spacing:-5.520000pt;}
.ws4c{word-spacing:-4.320000pt;}
.ws98{word-spacing:-3.600000pt;}
.wsb6{word-spacing:-3.504000pt;}
.ws33{word-spacing:-3.120000pt;}
.ws22{word-spacing:-2.976000pt;}
.ws6{word-spacing:-2.880000pt;}
.ws35{word-spacing:-2.784000pt;}
.ws20{word-spacing:-2.736000pt;}
.ws1f{word-spacing:-2.688000pt;}
.ws5d{word-spacing:-2.640000pt;}
.ws5b{word-spacing:-2.592000pt;}
.ws52{word-spacing:-2.544000pt;}
.ws1b{word-spacing:-2.496000pt;}
.wsdd{word-spacing:-2.448000pt;}
.wsc5{word-spacing:-2.400000pt;}
.wsd6{word-spacing:-2.352000pt;}
.ws27{word-spacing:-2.304000pt;}
.ws9c{word-spacing:-2.256000pt;}
.ws30{word-spacing:-2.240000pt;}
.ws41{word-spacing:-2.160000pt;}
.ws4a{word-spacing:-2.112000pt;}
.wsc{word-spacing:-2.016000pt;}
.ws24{word-spacing:-1.968000pt;}
.wscb{word-spacing:-1.920000pt;}
.ws46{word-spacing:-1.872000pt;}
.ws62{word-spacing:-1.824000pt;}
.ws68{word-spacing:-1.728000pt;}
.ws6a{word-spacing:-1.680000pt;}
.ws2c{word-spacing:-1.584000pt;}
.ws63{word-spacing:-1.536000pt;}
.ws38{word-spacing:-1.488000pt;}
.ws61{word-spacing:-1.440000pt;}
.ws73{word-spacing:-1.392000pt;}
.ws64{word-spacing:-1.344000pt;}
.wse{word-spacing:-1.296000pt;}
.wsa5{word-spacing:-1.248000pt;}
.wsc9{word-spacing:-1.200000pt;}
.wsa1{word-spacing:-1.152000pt;}
.wsd5{word-spacing:-1.104000pt;}
.ws74{word-spacing:-1.056000pt;}
.ws7d{word-spacing:-1.008000pt;}
.ws93{word-spacing:-0.960000pt;}
.ws8b{word-spacing:-0.912000pt;}
.wsd1{word-spacing:-0.864000pt;}
.wsce{word-spacing:-0.816000pt;}
.ws31{word-spacing:-0.720000pt;}
.wsc2{word-spacing:-0.624000pt;}
.wsd9{word-spacing:-0.576000pt;}
.ws23{word-spacing:-0.480000pt;}
.wsae{word-spacing:-0.432000pt;}
.ws2e{word-spacing:-0.384000pt;}
.wscd{word-spacing:-0.336000pt;}
.ws15{word-spacing:-0.288000pt;}
.ws97{word-spacing:-0.280000pt;}
.ws84{word-spacing:-0.240000pt;}
.ws37{word-spacing:-0.192000pt;}
.ws13{word-spacing:-0.170667pt;}
.ws54{word-spacing:-0.144000pt;}
.ws69{word-spacing:-0.096000pt;}
.ws1{word-spacing:0.000000pt;}
.ws10{word-spacing:0.048000pt;}
.wsb0{word-spacing:0.096000pt;}
.ws95{word-spacing:0.120000pt;}
.ws79{word-spacing:0.144000pt;}
.ws7c{word-spacing:0.192000pt;}
.wsc3{word-spacing:0.240000pt;}
.ws7f{word-spacing:0.288000pt;}
.wsa9{word-spacing:0.432000pt;}
.ws40{word-spacing:0.480000pt;}
.ws8d{word-spacing:0.528000pt;}
.ws1a{word-spacing:0.576000pt;}
.ws83{word-spacing:0.624000pt;}
.ws9{word-spacing:0.672000pt;}
.ws65{word-spacing:0.720000pt;}
.ws16{word-spacing:0.768000pt;}
.wsa3{word-spacing:0.816000pt;}
.ws72{word-spacing:0.864000pt;}
.wsc8{word-spacing:0.880000pt;}
.ws90{word-spacing:0.912000pt;}
.ws3c{word-spacing:0.960000pt;}
.ws67{word-spacing:1.008000pt;}
.ws94{word-spacing:1.056000pt;}
.ws3b{word-spacing:1.104000pt;}
.ws5{word-spacing:1.194667pt;}
.ws4d{word-spacing:1.200000pt;}
.ws2b{word-spacing:1.248000pt;}
.wsb7{word-spacing:1.296000pt;}
.ws4{word-spacing:1.344000pt;}
.ws47{word-spacing:1.392000pt;}
.ws6b{word-spacing:1.440000pt;}
.ws89{word-spacing:1.488000pt;}
.wsf{word-spacing:1.493333pt;}
.ws8a{word-spacing:1.536000pt;}
.ws48{word-spacing:1.584000pt;}
.ws2f{word-spacing:1.632000pt;}
.ws17{word-spacing:1.655002pt;}
.wsb3{word-spacing:1.680000pt;}
.ws5e{word-spacing:1.728000pt;}
.ws44{word-spacing:1.776000pt;}
.ws7{word-spacing:1.824000pt;}
.ws6f{word-spacing:1.872000pt;}
.ws78{word-spacing:1.920000pt;}
.ws1d{word-spacing:2.016000pt;}
.ws5f{word-spacing:2.064000pt;}
.ws88{word-spacing:2.112000pt;}
.ws7a{word-spacing:2.160000pt;}
.ws9b{word-spacing:2.208000pt;}
.ws29{word-spacing:2.256000pt;}
.wsab{word-spacing:2.352000pt;}
.ws18{word-spacing:2.400000pt;}
.ws58{word-spacing:2.448000pt;}
.wsb9{word-spacing:2.496000pt;}
.ws12{word-spacing:2.517333pt;}
.wsd3{word-spacing:2.592000pt;}
.wsc6{word-spacing:2.640000pt;}
.ws36{word-spacing:2.688000pt;}
.wsc7{word-spacing:2.720000pt;}
.ws49{word-spacing:2.736000pt;}
.wsa{word-spacing:2.784000pt;}
.ws99{word-spacing:2.832000pt;}
.wsc1{word-spacing:2.880000pt;}
.ws4b{word-spacing:2.928000pt;}
.ws32{word-spacing:2.976000pt;}
.wsa7{word-spacing:3.024000pt;}
.ws7b{word-spacing:3.072000pt;}
.ws3d{word-spacing:3.120000pt;}
.ws3e{word-spacing:3.168000pt;}
.wsd{word-spacing:3.216000pt;}
.ws1c{word-spacing:3.264000pt;}
.ws28{word-spacing:3.312000pt;}
.ws11{word-spacing:3.360000pt;}
.ws77{word-spacing:3.408000pt;}
.ws45{word-spacing:3.456000pt;}
.wsd8{word-spacing:3.504000pt;}
.ws39{word-spacing:3.552000pt;}
.wsd0{word-spacing:3.600000pt;}
.ws50{word-spacing:3.648000pt;}
.ws7e{word-spacing:3.696000pt;}
.wsbc{word-spacing:3.744000pt;}
.ws8{word-spacing:3.792000pt;}
.wsbf{word-spacing:3.840000pt;}
.ws2d{word-spacing:3.888000pt;}
.ws82{word-spacing:3.936000pt;}
.ws55{word-spacing:3.984000pt;}
.ws9f{word-spacing:4.032000pt;}
.ws85{word-spacing:4.080000pt;}
.ws21{word-spacing:4.128000pt;}
.wsb{word-spacing:4.176000pt;}
.ws60{word-spacing:4.224000pt;}
.ws9e{word-spacing:4.272000pt;}
.ws70{word-spacing:4.320000pt;}
.wsbb{word-spacing:4.368000pt;}
.ws8c{word-spacing:4.416000pt;}
.ws26{word-spacing:4.464000pt;}
.ws5c{word-spacing:4.512000pt;}
.ws42{word-spacing:4.560000pt;}
.ws3f{word-spacing:4.608000pt;}
.wsb4{word-spacing:4.656000pt;}
.ws86{word-spacing:4.704000pt;}
.ws75{word-spacing:4.752000pt;}
.ws6e{word-spacing:4.800000pt;}
.wsa4{word-spacing:4.848000pt;}
.ws92{word-spacing:4.896000pt;}
.ws6d{word-spacing:5.088000pt;}
.ws96{word-spacing:5.120000pt;}
.wsd7{word-spacing:5.136000pt;}
.ws53{word-spacing:5.184000pt;}
.ws91{word-spacing:5.232000pt;}
.wsac{word-spacing:5.280000pt;}
.ws25{word-spacing:5.328000pt;}
.ws1e{word-spacing:5.376000pt;}
.ws19{word-spacing:5.424000pt;}
.ws8f{word-spacing:5.520000pt;}
.ws9a{word-spacing:5.664000pt;}
.ws56{word-spacing:5.808000pt;}
.wsdb{word-spacing:5.904000pt;}
.ws4e{word-spacing:6.000000pt;}
.wsb5{word-spacing:6.144000pt;}
.wsc4{word-spacing:6.240000pt;}
.ws59{word-spacing:6.288000pt;}
.wscc{word-spacing:6.336000pt;}
.wsa6{word-spacing:6.384000pt;}
.ws51{word-spacing:6.480000pt;}
.wsad{word-spacing:6.576000pt;}
.ws9d{word-spacing:6.720000pt;}
.wsa2{word-spacing:6.816000pt;}
.ws81{word-spacing:6.864000pt;}
.ws3a{word-spacing:7.248000pt;}
.wsd2{word-spacing:7.584000pt;}
.ws71{word-spacing:7.680000pt;}
.wsaa{word-spacing:7.872000pt;}
.ws76{word-spacing:7.920000pt;}
.wsda{word-spacing:8.016000pt;}
.ws2a{word-spacing:8.400000pt;}
.wsb2{word-spacing:8.448000pt;}
.ws8e{word-spacing:8.496000pt;}
.ws57{word-spacing:8.688000pt;}
.ws5a{word-spacing:9.024000pt;}
.wsba{word-spacing:9.264000pt;}
.wsa0{word-spacing:9.312000pt;}
.wsdc{word-spacing:9.456000pt;}
.wsca{word-spacing:9.696000pt;}
.ws80{word-spacing:10.128000pt;}
.wsbd{word-spacing:10.272000pt;}
.ws4f{word-spacing:10.944000pt;}
.wsbe{word-spacing:11.088000pt;}
.ws43{word-spacing:11.136000pt;}
.wsb8{word-spacing:11.184000pt;}
.wsc0{word-spacing:11.472000pt;}
.wsb1{word-spacing:13.776000pt;}
.wsa8{word-spacing:14.064000pt;}
.ws6c{word-spacing:14.784000pt;}
.ws66{word-spacing:15.552000pt;}
._14{margin-left:-19.274667pt;}
._13{margin-left:-16.232000pt;}
._10{margin-left:-13.276000pt;}
._c{margin-left:-11.116000pt;}
._a{margin-left:-8.586667pt;}
._16{margin-left:-7.442133pt;}
._2{margin-left:-6.536533pt;}
._5{margin-left:-5.124267pt;}
._3{margin-left:-3.808000pt;}
._d{margin-left:-2.757333pt;}
._1{margin-left:-1.774933pt;}
._4{width:1.280000pt;}
._6{width:2.346667pt;}
._7{width:4.027733pt;}
._0{width:4.966400pt;}
._11{width:6.880000pt;}
._e{width:9.840000pt;}
._8{width:14.440000pt;}
._12{width:17.992000pt;}
._15{width:19.836000pt;}
._f{width:20.956000pt;}
._b{width:23.996000pt;}
._9{width:25.960000pt;}
.fsc{font-size:27.840000pt;}
.fsa{font-size:32.000000pt;}
.fs6{font-size:34.666667pt;}
.fsd{font-size:40.000000pt;}
.fs3{font-size:42.666667pt;}
.fs4{font-size:48.000000pt;}
.fs9{font-size:53.333333pt;}
.fs2{font-size:58.666667pt;}
.fs7{font-size:59.107223pt;}
.fs5{font-size:64.000000pt;}
.fsb{font-size:69.333333pt;}
.fs1{font-size:74.666667pt;}
.fs0{font-size:85.333333pt;}
.fs8{font-size:106.666667pt;}
.y0{bottom:0.000000pt;}
.yc{bottom:7.146667pt;}
.y1d{bottom:42.840267pt;}
.y1c{bottom:56.840267pt;}
.y18{bottom:67.903733pt;}
.y1b{bottom:82.822800pt;}
.y13{bottom:88.706667pt;}
.ybe{bottom:113.385733pt;}
.y6c{bottom:113.385867pt;}
.yee{bottom:113.386000pt;}
.y2e{bottom:115.533600pt;}
.y16{bottom:120.666667pt;}
.y6b{bottom:126.719200pt;}
.y19f{bottom:130.153467pt;}
.ybd{bottom:130.214133pt;}
.y1f5{bottom:130.393600pt;}
.y2d{bottom:132.200267pt;}
.y14{bottom:137.733333pt;}
.yf{bottom:138.680000pt;}
.y6a{bottom:140.052533pt;}
.y15{bottom:140.293333pt;}
.y19e{bottom:146.921200pt;}
.ybc{bottom:147.042533pt;}
.y1f4{bottom:147.085333pt;}
.y225{bottom:147.218400pt;}
.y2c{bottom:148.866933pt;}
.y14b{bottom:153.385867pt;}
.y19d{bottom:163.689067pt;}
.y1f3{bottom:163.777067pt;}
.ybb{bottom:163.870800pt;}
.y224{bottom:164.043067pt;}
.y11d{bottom:164.514533pt;}
.yed{bottom:164.514667pt;}
.y2b{bottom:165.533600pt;}
.y14a{bottom:166.719333pt;}
.y149{bottom:180.052667pt;}
.y1f2{bottom:180.468800pt;}
.yba{bottom:180.699200pt;}
.y223{bottom:180.867733pt;}
.yec{bottom:181.187733pt;}
.y11c{bottom:181.329200pt;}
.y2a{bottom:182.200267pt;}
.y69{bottom:191.181200pt;}
.y8d{bottom:191.181333pt;}
.y148{bottom:193.386000pt;}
.y19c{bottom:197.123467pt;}
.y1f1{bottom:197.160400pt;}
.yb9{bottom:197.527467pt;}
.y222{bottom:197.692400pt;}
.yeb{bottom:197.860800pt;}
.y11b{bottom:198.143733pt;}
.y1cb{bottom:208.150533pt;}
.y8c{bottom:208.160533pt;}
.y68{bottom:208.300400pt;}
.y1f0{bottom:213.852133pt;}
.yb8{bottom:214.355867pt;}
.y221{bottom:214.517067pt;}
.yea{bottom:214.534000pt;}
.y11a{bottom:214.958533pt;}
.y1ca{bottom:225.120000pt;}
.y8b{bottom:225.139600pt;}
.y67{bottom:225.419467pt;}
.y29{bottom:226.200267pt;}
.y1ef{bottom:230.543867pt;}
.yb7{bottom:231.184267pt;}
.ye9{bottom:231.207067pt;}
.y220{bottom:231.341733pt;}
.y119{bottom:231.773067pt;}
.y1c9{bottom:242.089333pt;}
.y8a{bottom:242.118800pt;}
.y66{bottom:242.538667pt;}
.y147{bottom:244.514667pt;}
.y1ee{bottom:247.235467pt;}
.ye8{bottom:247.880133pt;}
.yb6{bottom:248.012667pt;}
.y21f{bottom:248.166533pt;}
.y118{bottom:248.587867pt;}
.y28{bottom:250.200267pt;}
.y19b{bottom:250.557867pt;}
.y1c8{bottom:259.058667pt;}
.y89{bottom:259.098000pt;}
.y65{bottom:259.657867pt;}
.y171{bottom:261.274133pt;}
.y146{bottom:261.426267pt;}
.y1ed{bottom:263.927200pt;}
.ye7{bottom:264.553200pt;}
.yb5{bottom:264.840933pt;}
.y21e{bottom:264.991067pt;}
.y117{bottom:265.402400pt;}
.y19a{bottom:267.325600pt;}
.y1c7{bottom:276.028133pt;}
.y88{bottom:276.077200pt;}
.y64{bottom:276.777067pt;}
.y170{bottom:278.033733pt;}
.y145{bottom:278.337867pt;}
.y1ec{bottom:280.618933pt;}
.ye6{bottom:281.226267pt;}
.yb4{bottom:281.669333pt;}
.y21d{bottom:281.815867pt;}
.y116{bottom:282.217067pt;}
.y199{bottom:284.093333pt;}
.y1c6{bottom:292.997467pt;}
.y87{bottom:293.056400pt;}
.y63{bottom:293.896133pt;}
.y16f{bottom:294.793200pt;}
.y144{bottom:295.249600pt;}
.y1eb{bottom:297.310667pt;}
.ye5{bottom:297.899333pt;}
.y27{bottom:298.200267pt;}
.yc0{bottom:298.497600pt;}
.y21c{bottom:298.640533pt;}
.y115{bottom:299.031733pt;}
.y198{bottom:300.861067pt;}
.ya{bottom:306.382667pt;}
.y1c5{bottom:309.966800pt;}
.y86{bottom:310.035467pt;}
.y62{bottom:311.015333pt;}
.y16e{bottom:311.552800pt;}
.y143{bottom:312.161200pt;}
.y1ea{bottom:314.002400pt;}
.ye4{bottom:314.572533pt;}
.y26{bottom:314.866933pt;}
.yb3{bottom:315.326000pt;}
.y21b{bottom:315.465200pt;}
.y114{bottom:315.846400pt;}
.y197{bottom:317.628800pt;}
.y1c4{bottom:326.936267pt;}
.y85{bottom:327.014667pt;}
.y61{bottom:328.134533pt;}
.y16d{bottom:328.312400pt;}
.y142{bottom:329.072800pt;}
.y1e9{bottom:330.694000pt;}
.ye3{bottom:331.245467pt;}
.yb2{bottom:332.154400pt;}
.y21a{bottom:332.289867pt;}
.y113{bottom:332.661067pt;}
.y196{bottom:334.396667pt;}
.y25{bottom:338.646533pt;}
.yd{bottom:343.546667pt;}
.y1c3{bottom:343.905600pt;}
.y84{bottom:343.993867pt;}
.y16c{bottom:345.071867pt;}
.y60{bottom:345.253733pt;}
.y141{bottom:345.984400pt;}
.y1e8{bottom:347.385733pt;}
.ye2{bottom:347.918667pt;}
.yb1{bottom:348.982667pt;}
.y219{bottom:349.114667pt;}
.y112{bottom:349.475733pt;}
.y195{bottom:351.164400pt;}
.y9{bottom:351.724000pt;}
.y24{bottom:355.313200pt;}
.y1c2{bottom:360.874933pt;}
.y83{bottom:360.973067pt;}
.y16b{bottom:361.831467pt;}
.y5f{bottom:362.372800pt;}
.y140{bottom:362.896133pt;}
.y1e7{bottom:364.077467pt;}
.ye1{bottom:364.591733pt;}
.yb0{bottom:365.811067pt;}
.y218{bottom:365.939333pt;}
.y111{bottom:366.290400pt;}
.y194{bottom:367.932133pt;}
.y23{bottom:371.979867pt;}
.y1c1{bottom:377.844400pt;}
.y82{bottom:377.952267pt;}
.y16a{bottom:378.590933pt;}
.y5e{bottom:379.492000pt;}
.y13f{bottom:379.807733pt;}
.y1e6{bottom:380.769200pt;}
.ye0{bottom:381.264800pt;}
.yaf{bottom:382.639467pt;}
.y217{bottom:382.764000pt;}
.y110{bottom:383.105067pt;}
.y193{bottom:384.699867pt;}
.yb{bottom:386.533333pt;}
.y22{bottom:388.646533pt;}
.y1c0{bottom:394.813733pt;}
.y169{bottom:395.350533pt;}
.y5d{bottom:396.611200pt;}
.y13e{bottom:396.719333pt;}
.y8{bottom:397.065333pt;}
.ydf{bottom:397.937867pt;}
.yae{bottom:399.467733pt;}
.y216{bottom:399.588667pt;}
.y10f{bottom:399.919733pt;}
.y192{bottom:401.467600pt;}
.y21{bottom:405.313200pt;}
.y81{bottom:411.598000pt;}
.y1bf{bottom:411.783200pt;}
.y168{bottom:412.110133pt;}
.y13d{bottom:413.631067pt;}
.y5c{bottom:413.730400pt;}
.y1e5{bottom:414.127467pt;}
.yde{bottom:414.610933pt;}
.yad{bottom:416.296133pt;}
.y215{bottom:416.413333pt;}
.y10e{bottom:416.734400pt;}
.y191{bottom:418.235333pt;}
.y20{bottom:421.979867pt;}
.y1be{bottom:428.752533pt;}
.y167{bottom:428.869600pt;}
.y13c{bottom:430.542667pt;}
.y5b{bottom:430.849467pt;}
.ydd{bottom:431.284000pt;}
.y80{bottom:431.910533pt;}
.yac{bottom:433.124533pt;}
.y214{bottom:433.238000pt;}
.y10d{bottom:433.549067pt;}
.y10{bottom:433.826667pt;}
.y190{bottom:435.003067pt;}
.y1f{bottom:438.646533pt;}
.y7{bottom:442.406667pt;}
.y166{bottom:445.629200pt;}
.y1bd{bottom:445.721867pt;}
.y13b{bottom:447.454267pt;}
.ydc{bottom:447.957200pt;}
.y5a{bottom:447.968667pt;}
.ybf{bottom:449.952800pt;}
.y213{bottom:450.062800pt;}
.y10c{bottom:450.363733pt;}
.y18f{bottom:451.770933pt;}
.y165{bottom:462.388667pt;}
.y1bc{bottom:462.691333pt;}
.y13a{bottom:464.365867pt;}
.ydb{bottom:464.630267pt;}
.y59{bottom:465.087867pt;}
.yab{bottom:466.781200pt;}
.y212{bottom:466.887467pt;}
.y10b{bottom:467.178400pt;}
.y1e4{bottom:467.485867pt;}
.y18e{bottom:468.538667pt;}
.y7f{bottom:468.889733pt;}
.y11{bottom:478.426667pt;}
.y164{bottom:479.148267pt;}
.y1bb{bottom:479.660667pt;}
.y139{bottom:481.277600pt;}
.y58{bottom:482.207067pt;}
.yaa{bottom:483.609600pt;}
.y211{bottom:483.712133pt;}
.y10a{bottom:483.993067pt;}
.y1e3{bottom:484.177600pt;}
.y18d{bottom:485.306400pt;}
.y6{bottom:487.748000pt;}
.y163{bottom:495.907733pt;}
.y1ba{bottom:496.630133pt;}
.yda{bottom:497.970000pt;}
.y138{bottom:498.189200pt;}
.y57{bottom:499.326267pt;}
.ya9{bottom:500.437867pt;}
.y210{bottom:500.536800pt;}
.y109{bottom:500.807600pt;}
.y1e2{bottom:500.869333pt;}
.y18c{bottom:502.074133pt;}
.y162{bottom:512.667333pt;}
.y1b9{bottom:513.599467pt;}
.y137{bottom:515.100800pt;}
.y56{bottom:516.445333pt;}
.ya8{bottom:517.266267pt;}
.y20f{bottom:517.361467pt;}
.y1e1{bottom:517.560933pt;}
.y108{bottom:517.622267pt;}
.yd9{bottom:517.976400pt;}
.y18b{bottom:518.841867pt;}
.y7e{bottom:522.535600pt;}
.y17{bottom:524.093333pt;}
.y161{bottom:529.426800pt;}
.y1b8{bottom:530.568800pt;}
.y136{bottom:532.012533pt;}
.y5{bottom:533.089333pt;}
.y55{bottom:533.564533pt;}
.ya7{bottom:534.094667pt;}
.y20e{bottom:534.186133pt;}
.y1e0{bottom:534.252667pt;}
.y107{bottom:534.436933pt;}
.y18a{bottom:535.609600pt;}
.y3d{bottom:536.337733pt;}
.y7d{bottom:539.514667pt;}
.y160{bottom:546.186400pt;}
.y1b7{bottom:547.538267pt;}
.y135{bottom:548.924133pt;}
.y54{bottom:550.683733pt;}
.ya6{bottom:550.922933pt;}
.y1df{bottom:550.944400pt;}
.y20d{bottom:551.010933pt;}
.y106{bottom:551.251600pt;}
.y3c{bottom:551.671067pt;}
.y189{bottom:552.377467pt;}
.yd8{bottom:554.649467pt;}
.y7c{bottom:556.494000pt;}
.ye{bottom:561.706667pt;}
.y15f{bottom:562.945867pt;}
.y1b6{bottom:564.507600pt;}
.y134{bottom:565.835733pt;}
.y3b{bottom:567.004400pt;}
.y1de{bottom:567.636133pt;}
.ya5{bottom:567.751333pt;}
.y53{bottom:567.802933pt;}
.y20c{bottom:567.835600pt;}
.y105{bottom:568.066267pt;}
.y188{bottom:569.145200pt;}
.yd7{bottom:571.322533pt;}
.y7b{bottom:573.473067pt;}
.y15e{bottom:579.705467pt;}
.y1b5{bottom:581.477067pt;}
.y133{bottom:582.747333pt;}
.y1dd{bottom:584.327733pt;}
.ya4{bottom:584.579733pt;}
.y20b{bottom:584.660267pt;}
.y104{bottom:584.880933pt;}
.y187{bottom:585.912933pt;}
.yd6{bottom:587.995733pt;}
.y7a{bottom:590.452267pt;}
.y15d{bottom:596.465067pt;}
.y1b4{bottom:598.446400pt;}
.y3a{bottom:599.261867pt;}
.y132{bottom:599.659067pt;}
.y1dc{bottom:601.019467pt;}
.ya3{bottom:601.408000pt;}
.y20a{bottom:601.484933pt;}
.y103{bottom:601.695600pt;}
.y52{bottom:602.041200pt;}
.y186{bottom:602.680667pt;}
.yd5{bottom:604.668800pt;}
.y79{bottom:607.431467pt;}
.y15c{bottom:613.224533pt;}
.y39{bottom:613.928533pt;}
.y1b3{bottom:615.415733pt;}
.y131{bottom:616.570667pt;}
.y1db{bottom:617.711200pt;}
.ya2{bottom:618.236400pt;}
.y209{bottom:618.309600pt;}
.y102{bottom:618.510267pt;}
.y51{bottom:619.160400pt;}
.y185{bottom:619.448400pt;}
.yd4{bottom:621.341867pt;}
.y78{bottom:624.410667pt;}
.y38{bottom:628.595200pt;}
.y15b{bottom:629.984133pt;}
.y1b2{bottom:632.385200pt;}
.y130{bottom:633.482400pt;}
.y1da{bottom:634.402933pt;}
.ya1{bottom:635.064667pt;}
.y208{bottom:635.134400pt;}
.y101{bottom:635.324933pt;}
.y184{bottom:636.216133pt;}
.y50{bottom:636.279600pt;}
.yd3{bottom:638.014933pt;}
.y77{bottom:641.389867pt;}
.y37{bottom:643.261867pt;}
.y1b1{bottom:649.354533pt;}
.y12f{bottom:650.394000pt;}
.y1d9{bottom:651.094667pt;}
.ya0{bottom:651.893067pt;}
.y207{bottom:651.959067pt;}
.y100{bottom:652.139600pt;}
.y183{bottom:652.983867pt;}
.y4f{bottom:653.398800pt;}
.yd2{bottom:654.688000pt;}
.y76{bottom:658.368933pt;}
.y15a{bottom:663.410267pt;}
.y1b0{bottom:666.323867pt;}
.y12e{bottom:667.305600pt;}
.y1d8{bottom:667.786267pt;}
.y9f{bottom:668.721467pt;}
.y206{bottom:668.783733pt;}
.yff{bottom:668.954267pt;}
.y182{bottom:669.751733pt;}
.y4e{bottom:670.518000pt;}
.yd1{bottom:671.361067pt;}
.y75{bottom:675.348133pt;}
.y1af{bottom:683.293333pt;}
.y159{bottom:683.503200pt;}
.y12d{bottom:684.217200pt;}
.y1d7{bottom:684.478000pt;}
.y9e{bottom:685.549867pt;}
.y205{bottom:685.608400pt;}
.yfe{bottom:685.768933pt;}
.y181{bottom:686.519333pt;}
.y4d{bottom:687.637067pt;}
.yd0{bottom:688.034133pt;}
.y4{bottom:691.756000pt;}
.y74{bottom:692.327333pt;}
.y1ae{bottom:700.262667pt;}
.y12c{bottom:701.128933pt;}
.y1d6{bottom:701.169733pt;}
.y9d{bottom:702.378133pt;}
.y204{bottom:702.433067pt;}
.yfd{bottom:702.583600pt;}
.y180{bottom:703.287200pt;}
.ycf{bottom:704.707333pt;}
.y4c{bottom:704.756267pt;}
.y73{bottom:709.306533pt;}
.y1ad{bottom:717.232133pt;}
.y1d5{bottom:717.861467pt;}
.y12b{bottom:718.040533pt;}
.y9c{bottom:719.206533pt;}
.y203{bottom:719.257867pt;}
.yfc{bottom:719.398267pt;}
.y17f{bottom:720.054933pt;}
.y33{bottom:720.868267pt;}
.yce{bottom:721.380400pt;}
.y4b{bottom:721.875467pt;}
.y12{bottom:725.040000pt;}
.y72{bottom:726.285600pt;}
.y1ac{bottom:734.201467pt;}
.y12a{bottom:734.952133pt;}
.y9b{bottom:736.034800pt;}
.y202{bottom:736.082533pt;}
.yfb{bottom:736.212933pt;}
.y17e{bottom:736.822667pt;}
.y32{bottom:736.868133pt;}
.y158{bottom:736.929333pt;}
.ycd{bottom:738.053467pt;}
.y4a{bottom:738.994667pt;}
.y71{bottom:743.264800pt;}
.y230{bottom:749.436267pt;}
.y1ab{bottom:751.170933pt;}
.y1d4{bottom:751.219733pt;}
.y129{bottom:751.863733pt;}
.y9a{bottom:752.863200pt;}
.y31{bottom:752.868133pt;}
.y201{bottom:752.907200pt;}
.yfa{bottom:753.027467pt;}
.y17d{bottom:753.590400pt;}
.y157{bottom:753.688933pt;}
.ycc{bottom:754.726533pt;}
.y49{bottom:756.113867pt;}
.y70{bottom:760.244000pt;}
.y22f{bottom:764.769600pt;}
.y1aa{bottom:768.140267pt;}
.y128{bottom:768.775333pt;}
.y99{bottom:769.691600pt;}
.y200{bottom:769.732000pt;}
.yf9{bottom:769.842267pt;}
.y17c{bottom:770.358133pt;}
.y156{bottom:770.448533pt;}
.ycb{bottom:771.399600pt;}
.y48{bottom:773.233067pt;}
.y6f{bottom:777.223200pt;}
.y22e{bottom:780.102933pt;}
.y35{bottom:780.534400pt;}
.y1a9{bottom:785.109733pt;}
.y127{bottom:785.687067pt;}
.y98{bottom:786.520000pt;}
.y1ff{bottom:786.556667pt;}
.yf8{bottom:786.656933pt;}
.y17b{bottom:787.125867pt;}
.y155{bottom:787.208000pt;}
.yca{bottom:788.072800pt;}
.y6e{bottom:794.202267pt;}
.y34{bottom:796.534400pt;}
.y1a8{bottom:802.079067pt;}
.y126{bottom:802.598667pt;}
.y97{bottom:803.348267pt;}
.y1fe{bottom:803.381333pt;}
.yf7{bottom:803.471600pt;}
.y17a{bottom:803.893733pt;}
.y154{bottom:803.967600pt;}
.y1d3{bottom:804.578133pt;}
.yc9{bottom:804.745867pt;}
.y3{bottom:805.081333pt;}
.y47{bottom:807.018933pt;}
.y22d{bottom:810.769600pt;}
.y6d{bottom:811.181467pt;}
.y1a7{bottom:819.048400pt;}
.y125{bottom:819.510400pt;}
.y96{bottom:820.176533pt;}
.y1fd{bottom:820.206000pt;}
.yf6{bottom:820.286267pt;}
.y179{bottom:820.661600pt;}
.y153{bottom:820.727067pt;}
.y1d2{bottom:821.269867pt;}
.yc8{bottom:821.418933pt;}
.y22c{bottom:826.102933pt;}
.y1a6{bottom:836.017867pt;}
.y124{bottom:836.422000pt;}
.y95{bottom:837.004933pt;}
.y1fc{bottom:837.030667pt;}
.yf5{bottom:837.100933pt;}
.y178{bottom:837.429333pt;}
.y152{bottom:837.486667pt;}
.y1d1{bottom:837.961467pt;}
.yc7{bottom:838.092000pt;}
.y30{bottom:838.159333pt;}
.y22b{bottom:841.436267pt;}
.y1a5{bottom:852.987200pt;}
.y123{bottom:853.333600pt;}
.y94{bottom:853.833333pt;}
.y1fb{bottom:853.855333pt;}
.yf4{bottom:853.915600pt;}
.y177{bottom:854.197067pt;}
.y151{bottom:854.246133pt;}
.y1d0{bottom:854.653200pt;}
.yc6{bottom:854.764933pt;}
.y22a{bottom:856.769600pt;}
.y2{bottom:857.092000pt;}
.y2f{bottom:867.492667pt;}
.y1a4{bottom:869.956667pt;}
.y122{bottom:870.245333pt;}
.y93{bottom:870.661733pt;}
.y1fa{bottom:870.680133pt;}
.yf3{bottom:870.730267pt;}
.y176{bottom:870.964800pt;}
.y150{bottom:871.005733pt;}
.y1cf{bottom:871.344933pt;}
.yc5{bottom:871.438133pt;}
.y1{bottom:879.748000pt;}
.y46{bottom:880.832000pt;}
.y1a3{bottom:886.926000pt;}
.y121{bottom:887.156933pt;}
.y229{bottom:887.436267pt;}
.y92{bottom:887.490133pt;}
.y1f9{bottom:887.504800pt;}
.yf2{bottom:887.544933pt;}
.y175{bottom:887.732533pt;}
.y14f{bottom:887.765333pt;}
.yc4{bottom:888.111200pt;}
.y45{bottom:897.498667pt;}
.y228{bottom:902.769600pt;}
.y1a2{bottom:903.895333pt;}
.y120{bottom:904.068667pt;}
.y91{bottom:904.318400pt;}
.y1f8{bottom:904.329467pt;}
.yf1{bottom:904.359600pt;}
.y174{bottom:904.500267pt;}
.y14e{bottom:904.524800pt;}
.y1ce{bottom:904.728400pt;}
.yc3{bottom:904.784267pt;}
.y36{bottom:910.348533pt;}
.y227{bottom:918.102933pt;}
.y1a1{bottom:920.864800pt;}
.y11f{bottom:920.980267pt;}
.y90{bottom:921.146800pt;}
.y1f7{bottom:921.154133pt;}
.yf0{bottom:921.174267pt;}
.y173{bottom:921.268000pt;}
.y44{bottom:921.278133pt;}
.y14d{bottom:921.284400pt;}
.y1cd{bottom:921.420133pt;}
.yc2{bottom:921.457333pt;}
.y226{bottom:933.436267pt;}
.y1a0{bottom:937.834133pt;}
.y11e{bottom:937.891867pt;}
.y43{bottom:937.944800pt;}
.y8f{bottom:937.975200pt;}
.y1f6{bottom:937.978800pt;}
.yef{bottom:937.988800pt;}
.y172{bottom:938.035867pt;}
.y14c{bottom:938.044000pt;}
.y1cc{bottom:938.111867pt;}
.yc1{bottom:938.130400pt;}
.y42{bottom:954.611467pt;}
.y8e{bottom:954.803600pt;}
.y19{bottom:963.852667pt;}
.y3e{bottom:1000.055600pt;}
.y3f{bottom:1001.185867pt;}
.y1e{bottom:1003.976667pt;}
.y41{bottom:1039.413333pt;}
.y40{bottom:1050.080000pt;}
.y1a{bottom:1084.304800pt;}
.h17{height:28.000000pt;}
.h4{height:29.333333pt;}
.hd{height:30.333333pt;}
.h9{height:32.000000pt;}
.h19{height:33.840000pt;}
.h11{height:35.616000pt;}
.hb{height:36.096000pt;}
.h16{height:36.384000pt;}
.h14{height:40.426667pt;}
.ha{height:40.608000pt;}
.he{height:44.469333pt;}
.h10{height:44.803275pt;}
.h13{height:45.120000pt;}
.h15{height:48.000000pt;}
.hc{height:48.512000pt;}
.h3{height:51.916667pt;}
.h18{height:52.554667pt;}
.h2{height:59.333333pt;}
.h5{height:60.213542pt;}
.hf{height:64.000000pt;}
.h12{height:80.000000pt;}
.h7{height:102.413333pt;}
.h6{height:152.386667pt;}
.h8{height:154.000000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w8{width:267.706667pt;}
.w6{width:325.746667pt;}
.w2{width:439.666667pt;}
.w5{width:491.253333pt;}
.w3{width:491.800000pt;}
.w4{width:531.026667pt;}
.w7{width:579.386667pt;}
.w9{width:793.701333pt;}
.w0{width:793.706667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:2.666667pt;}
.xd{left:56.692933pt;}
.xb{left:58.026267pt;}
.x16{left:75.590533pt;}
.x1a{left:79.370133pt;}
.xe{left:80.545867pt;}
.x17{left:82.150133pt;}
.x12{left:85.976267pt;}
.x10{left:88.822400pt;}
.x11{left:89.731200pt;}
.x9{left:112.306667pt;}
.x1{left:113.385867pt;}
.x5{left:154.760000pt;}
.x2{left:169.813333pt;}
.x7{left:178.413333pt;}
.x8{left:193.173333pt;}
.x4{left:195.600000pt;}
.x6{left:197.760000pt;}
.x13{left:202.309733pt;}
.xf{left:236.658400pt;}
.x1b{left:389.744800pt;}
.xa{left:392.252267pt;}
.x18{left:408.188933pt;}
.x19{left:427.086533pt;}
.x15{left:433.385867pt;}
.xc{left:467.335733pt;}
.x14{left:592.456933pt;}
}




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