
    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_429b4836c9c40fa800d1773f.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.893555;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_2bafb308378d64d0ac50738c.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.080566;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_5341b2a1ba21beacfb24e429.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.809082;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_3e7131ff9bcec373ea1ce8f7.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.895996;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_55ebd5f687cf6d92cebd4f9d.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.986816;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_698d0943b879f44492263dce.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.855469;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_4daa7315b7f586bd14867166.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.861328;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_a80e79fb4de86fdf89a278de.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.859863;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_65fe74630581fd3142ef1f37.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.871094;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_754c6c6300062d5f11d60e60.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_9ca87c10c707923210879cd6.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.893555;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_55c31ae66d140bf4c3017be7.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.986816;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_bde265150acf2374ec08fa7d.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.855469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_f538bb8db1439ab029519275.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.091309;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_9b9d95aec35be7806c760fab.woff2')format("woff");}.fff{font-family:fff;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_543edab52b2967074bfa43fb.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_7947e813934f8f42f8990a02.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.080566;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_4c7dc101c80def66e4f347ac.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.079102;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;}
.m7b{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m5b{transform:matrix(0.242643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242643,0.000000,0.000000,0.250000,0,0);}
.m70{transform:matrix(0.242810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242810,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.242898,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242898,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242898,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.243007,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243007,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243007,0.000000,0.000000,0.250000,0,0);}
.m86{transform:matrix(0.243131,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243131,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243131,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.243160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243160,0.000000,0.000000,0.250000,0,0);}
.m4c{transform:matrix(0.243174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243174,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.243317,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243317,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243317,0.000000,0.000000,0.250000,0,0);}
.m35{transform:matrix(0.243581,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243581,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243581,0.000000,0.000000,0.250000,0,0);}
.m72{transform:matrix(0.243607,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243607,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243607,0.000000,0.000000,0.250000,0,0);}
.m34{transform:matrix(0.243655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243655,0.000000,0.000000,0.250000,0,0);}
.m3e{transform:matrix(0.243767,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243767,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243767,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.243902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243902,0.000000,0.000000,0.250000,0,0);}
.m58{transform:matrix(0.243952,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243952,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243952,0.000000,0.000000,0.250000,0,0);}
.m8c{transform:matrix(0.243983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243983,0.000000,0.000000,0.250000,0,0);}
.m4e{transform:matrix(0.244045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244045,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.244164,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244164,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244164,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.244300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244300,0.000000,0.000000,0.250000,0,0);}
.m36{transform:matrix(0.244343,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244343,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244343,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.244345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244345,0.000000,0.000000,0.250000,0,0);}
.m3a{transform:matrix(0.244355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244355,0.000000,0.000000,0.250000,0,0);}
.m3f{transform:matrix(0.244426,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244426,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244426,0.000000,0.000000,0.250000,0,0);}
.m30{transform:matrix(0.244455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244455,0.000000,0.000000,0.250000,0,0);}
.m52{transform:matrix(0.244648,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244648,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244648,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.244826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244826,0.000000,0.000000,0.250000,0,0);}
.m62{transform:matrix(0.244910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244910,0.000000,0.000000,0.250000,0,0);}
.m48{transform:matrix(0.244948,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244948,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244948,0.000000,0.000000,0.250000,0,0);}
.m49{transform:matrix(0.244950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244950,0.000000,0.000000,0.250000,0,0);}
.m5f{transform:matrix(0.244957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244957,0.000000,0.000000,0.250000,0,0);}
.m60{transform:matrix(0.244960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244960,0.000000,0.000000,0.250000,0,0);}
.m51{transform:matrix(0.244993,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244993,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244993,0.000000,0.000000,0.250000,0,0);}
.m83{transform:matrix(0.245107,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245107,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245107,0.000000,0.000000,0.250000,0,0);}
.m47{transform:matrix(0.245202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245202,0.000000,0.000000,0.250000,0,0);}
.m7f{transform:matrix(0.245260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245260,0.000000,0.000000,0.250000,0,0);}
.m44{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);}
.m88{transform:matrix(0.245524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245524,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.245683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245683,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.245974,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245974,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245974,0.000000,0.000000,0.250000,0,0);}
.m84{transform:matrix(0.246152,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246152,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246152,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.246160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246160,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.246210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246210,0.000000,0.000000,0.250000,0,0);}
.m87{transform:matrix(0.246424,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246424,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246424,0.000000,0.000000,0.250000,0,0);}
.m6e{transform:matrix(0.246457,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246457,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246457,0.000000,0.000000,0.250000,0,0);}
.m56{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);}
.m21{transform:matrix(0.246712,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246712,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246712,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.246717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246717,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.246738,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246738,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246738,0.000000,0.000000,0.250000,0,0);}
.m42{transform:matrix(0.246836,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246836,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246836,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.246924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246924,0.000000,0.000000,0.250000,0,0);}
.m8b{transform:matrix(0.247190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247190,0.000000,0.000000,0.250000,0,0);}
.m66{transform:matrix(0.247238,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247238,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247238,0.000000,0.000000,0.250000,0,0);}
.m5c{transform:matrix(0.247769,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247769,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247769,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.247819,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247819,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247819,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.248081,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248081,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248081,0.000000,0.000000,0.250000,0,0);}
.m8d{transform:matrix(0.248305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248305,0.000000,0.000000,0.250000,0,0);}
.m57{transform:matrix(0.248340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248340,0.000000,0.000000,0.250000,0,0);}
.m4a{transform:matrix(0.248700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248700,0.000000,0.000000,0.250000,0,0);}
.m65{transform:matrix(0.248814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248814,0.000000,0.000000,0.250000,0,0);}
.m5a{transform:matrix(0.249112,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249112,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249112,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.249183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249183,0.000000,0.000000,0.250000,0,0);}
.m80{transform:matrix(0.249190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249190,0.000000,0.000000,0.250000,0,0);}
.m7a{transform:matrix(0.249302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249302,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.249305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249305,0.000000,0.000000,0.250000,0,0);}
.m6a{transform:matrix(0.249321,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249321,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249321,0.000000,0.000000,0.250000,0,0);}
.m50{transform:matrix(0.249386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249386,0.000000,0.000000,0.250000,0,0);}
.m45{transform:matrix(0.249571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249571,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.249619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249619,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.249695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249695,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.249714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249714,0.000000,0.000000,0.250000,0,0);}
.m63{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);}
.m64{transform:matrix(0.249733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249733,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.249740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249740,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.249890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249890,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);}
.m78{transform:matrix(0.250452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250452,0.000000,0.000000,0.250000,0,0);}
.m5d{transform:matrix(0.250536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250536,0.000000,0.000000,0.250000,0,0);}
.m40{transform:matrix(0.250714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250714,0.000000,0.000000,0.250000,0,0);}
.m7e{transform:matrix(0.250817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250817,0.000000,0.000000,0.250000,0,0);}
.m6d{transform:matrix(0.250819,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250819,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250819,0.000000,0.000000,0.250000,0,0);}
.m39{transform:matrix(0.250845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250845,0.000000,0.000000,0.250000,0,0);}
.m6b{transform:matrix(0.250914,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250914,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250914,0.000000,0.000000,0.250000,0,0);}
.m7c{transform:matrix(0.251457,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251457,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251457,0.000000,0.000000,0.250000,0,0);}
.m69{transform:matrix(0.251667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251667,0.000000,0.000000,0.250000,0,0);}
.m76{transform:matrix(0.251729,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251729,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251729,0.000000,0.000000,0.250000,0,0);}
.m3d{transform:matrix(0.251786,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251786,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251786,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.251793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251793,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.251821,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251821,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251821,0.000000,0.000000,0.250000,0,0);}
.m43{transform:matrix(0.251838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251838,0.000000,0.000000,0.250000,0,0);}
.m89{transform:matrix(0.251857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251857,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.251867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251867,0.000000,0.000000,0.250000,0,0);}
.m8a{transform:matrix(0.251900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251900,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.252262,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252262,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252262,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.252412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252412,0.000000,0.000000,0.250000,0,0);}
.m4f{transform:matrix(0.252419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252419,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.252702,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252702,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252702,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.252729,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252729,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252729,0.000000,0.000000,0.250000,0,0);}
.m55{transform:matrix(0.252745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252745,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.252783,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252783,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252783,0.000000,0.000000,0.250000,0,0);}
.m85{transform:matrix(0.252890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252890,0.000000,0.000000,0.250000,0,0);}
.m46{transform:matrix(0.252907,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252907,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252907,0.000000,0.000000,0.250000,0,0);}
.m68{transform:matrix(0.252924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252924,0.000000,0.000000,0.250000,0,0);}
.m59{transform:matrix(0.253079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253079,0.000000,0.000000,0.250000,0,0);}
.m3b{transform:matrix(0.253090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253090,0.000000,0.000000,0.250000,0,0);}
.m82{transform:matrix(0.253102,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253102,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253102,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.253186,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253186,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253186,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.253229,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253229,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253229,0.000000,0.000000,0.250000,0,0);}
.m5e{transform:matrix(0.253264,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253264,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253264,0.000000,0.000000,0.250000,0,0);}
.m53{transform:matrix(0.253429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253429,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.253479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253479,0.000000,0.000000,0.250000,0,0);}
.m37{transform:matrix(0.253567,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253567,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253567,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.253579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253579,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.253638,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253638,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253638,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.253660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253660,0.000000,0.000000,0.250000,0,0);}
.m73{transform:matrix(0.253671,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253671,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253671,0.000000,0.000000,0.250000,0,0);}
.m4b{transform:matrix(0.253895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253895,0.000000,0.000000,0.250000,0,0);}
.m7d{transform:matrix(0.253998,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253998,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253998,0.000000,0.000000,0.250000,0,0);}
.m32{transform:matrix(0.254069,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254069,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254069,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.254417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254417,0.000000,0.000000,0.250000,0,0);}
.m74{transform:matrix(0.254514,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254514,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254514,0.000000,0.000000,0.250000,0,0);}
.m81{transform:matrix(0.254667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254667,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.254819,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254819,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254819,0.000000,0.000000,0.250000,0,0);}
.m71{transform:matrix(0.255114,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255114,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255114,0.000000,0.000000,0.250000,0,0);}
.m38{transform:matrix(0.255310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255310,0.000000,0.000000,0.250000,0,0);}
.m79{transform:matrix(0.255510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255510,0.000000,0.000000,0.250000,0,0);}
.m54{transform:matrix(0.255664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255664,0.000000,0.000000,0.250000,0,0);}
.m31{transform:matrix(0.255931,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255931,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255931,0.000000,0.000000,0.250000,0,0);}
.m61{transform:matrix(0.256014,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256014,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256014,0.000000,0.000000,0.250000,0,0);}
.m75{transform:matrix(0.256117,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256117,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256117,0.000000,0.000000,0.250000,0,0);}
.m67{transform:matrix(0.256183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256183,0.000000,0.000000,0.250000,0,0);}
.m33{transform:matrix(0.256469,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256469,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256469,0.000000,0.000000,0.250000,0,0);}
.m6f{transform:matrix(0.256505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256505,0.000000,0.000000,0.250000,0,0);}
.m41{transform:matrix(0.256526,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256526,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256526,0.000000,0.000000,0.250000,0,0);}
.m3c{transform:matrix(0.256531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256531,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.256564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256564,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.256660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256660,0.000000,0.000000,0.250000,0,0);}
.m4d{transform:matrix(0.257005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257005,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.257074,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257074,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257074,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.257093,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257093,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257093,0.000000,0.000000,0.250000,0,0);}
.m6c{transform:matrix(0.257100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257100,0.000000,0.000000,0.250000,0,0);}
.m77{transform:matrix(0.257479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257479,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.979000px;}
.v2{vertical-align:32.400000px;}
.v3{vertical-align:64.800000px;}
.ls5{letter-spacing:-2.520000px;}
.lse{letter-spacing:-1.260000px;}
.ls4{letter-spacing:-1.224000px;}
.lsd{letter-spacing:-0.630000px;}
.ls3{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.000150px;}
.lsb{letter-spacing:0.000300px;}
.ls9{letter-spacing:0.000600px;}
.ls8{letter-spacing:1.134000px;}
.ls2{letter-spacing:1.371600px;}
.ls10{letter-spacing:1.658400px;}
.ls6{letter-spacing:1.680000px;}
.ls0{letter-spacing:1.872000px;}
.ls7{letter-spacing:2.205000px;}
.ls1{letter-spacing:2.808000px;}
.lsf{letter-spacing:5.167680px;}
.lsa{letter-spacing:22.068000px;}
.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;}
}
.ws7{word-spacing:-17.955000px;}
.ws8{word-spacing:-15.750000px;}
.ws45{word-spacing:-15.120000px;}
.ws0{word-spacing:-14.238000px;}
.ws1{word-spacing:-12.204000px;}
.ws1e{word-spacing:-9.182250px;}
.ws3b{word-spacing:-3.213000px;}
.ws38{word-spacing:-3.150000px;}
.ws43{word-spacing:-3.087000px;}
.ws3f{word-spacing:-2.898000px;}
.ws4{word-spacing:-2.808000px;}
.ws4d{word-spacing:-2.772000px;}
.ws4f{word-spacing:-2.646000px;}
.ws39{word-spacing:-2.520000px;}
.wsb{word-spacing:-2.205000px;}
.ws19{word-spacing:-2.016000px;}
.wsa{word-spacing:-1.872000px;}
.ws36{word-spacing:-1.827000px;}
.ws9{word-spacing:-1.680000px;}
.ws2e{word-spacing:-1.449000px;}
.ws47{word-spacing:-1.323000px;}
.wsd{word-spacing:-1.134000px;}
.ws32{word-spacing:-0.945000px;}
.ws3{word-spacing:-0.912000px;}
.ws54{word-spacing:-0.567000px;}
.ws49{word-spacing:-0.504000px;}
.ws56{word-spacing:-0.315000px;}
.ws2{word-spacing:0.000000px;}
.ws53{word-spacing:0.315000px;}
.ws1f{word-spacing:0.630000px;}
.ws55{word-spacing:0.882000px;}
.ws46{word-spacing:1.197000px;}
.ws5{word-spacing:1.224000px;}
.ws28{word-spacing:1.260000px;}
.ws4b{word-spacing:1.386000px;}
.ws50{word-spacing:1.575000px;}
.ws51{word-spacing:1.827000px;}
.ws1d{word-spacing:2.205000px;}
.ws6{word-spacing:2.520000px;}
.ws16{word-spacing:2.583000px;}
.ws17{word-spacing:3.024000px;}
.ws13{word-spacing:3.339000px;}
.ws4e{word-spacing:3.402000px;}
.ws35{word-spacing:3.465000px;}
.ws52{word-spacing:3.528000px;}
.ws3e{word-spacing:4.158000px;}
.wsc{word-spacing:4.284000px;}
.ws37{word-spacing:4.725000px;}
.ws4a{word-spacing:5.040000px;}
.ws48{word-spacing:5.103000px;}
.ws34{word-spacing:5.166000px;}
.ws2b{word-spacing:5.418000px;}
.wsf{word-spacing:8.064000px;}
.ws42{word-spacing:8.379000px;}
.ws29{word-spacing:9.324000px;}
.ws18{word-spacing:10.206000px;}
.ws44{word-spacing:10.647000px;}
.ws2d{word-spacing:11.466000px;}
.ws10{word-spacing:11.718000px;}
.ws4c{word-spacing:11.844000px;}
.ws15{word-spacing:11.907000px;}
.ws31{word-spacing:12.663000px;}
.ws2a{word-spacing:13.041000px;}
.ws3c{word-spacing:13.482000px;}
.wse{word-spacing:13.797000px;}
.ws3a{word-spacing:13.860000px;}
.ws41{word-spacing:14.112000px;}
.ws1c{word-spacing:14.742000px;}
.ws2f{word-spacing:16.065000px;}
.ws1b{word-spacing:16.128000px;}
.ws1a{word-spacing:17.640000px;}
.ws11{word-spacing:18.081000px;}
.ws30{word-spacing:19.089000px;}
.ws3d{word-spacing:19.467000px;}
.ws33{word-spacing:23.499000px;}
.ws2c{word-spacing:23.625000px;}
.ws40{word-spacing:27.027000px;}
.ws12{word-spacing:27.531000px;}
.ws14{word-spacing:30.996000px;}
.ws26{word-spacing:53.602800px;}
.ws23{word-spacing:94.683000px;}
.ws24{word-spacing:135.745200px;}
.ws22{word-spacing:182.138400px;}
.ws21{word-spacing:185.447400px;}
.ws20{word-spacing:210.650400px;}
.ws27{word-spacing:346.481400px;}
.ws25{word-spacing:359.928600px;}
._3f{margin-left:-16.632000px;}
._41{margin-left:-14.851200px;}
._f{margin-left:-13.069800px;}
._11{margin-left:-11.576400px;}
._6{margin-left:-10.542000px;}
._2e{margin-left:-9.097200px;}
._2b{margin-left:-8.057700px;}
._3{margin-left:-6.998400px;}
._25{margin-left:-5.825700px;}
._4{margin-left:-4.798800px;}
._2{margin-left:-2.803200px;}
._1{margin-left:-1.800000px;}
._0{width:1.694400px;}
._5{width:2.913600px;}
._c{width:4.335600px;}
._d{width:5.550000px;}
._9{width:6.717600px;}
._a{width:8.461200px;}
._b{width:9.709800px;}
._10{width:11.150400px;}
._1f{width:12.856500px;}
._19{width:14.488200px;}
._17{width:15.795000px;}
._20{width:16.851300px;}
._1b{width:17.961000px;}
._8{width:19.126800px;}
._18{width:20.277600px;}
._14{width:21.327000px;}
._1e{width:23.259600px;}
._1d{width:24.421500px;}
._e{width:25.693200px;}
._23{width:27.424500px;}
._15{width:28.690200px;}
._16{width:29.980800px;}
._28{width:31.834800px;}
._24{width:33.018300px;}
._2c{width:34.580100px;}
._2a{width:36.966600px;}
._1a{width:38.286000px;}
._26{width:39.402900px;}
._1c{width:41.149800px;}
._45{width:42.354900px;}
._27{width:44.717400px;}
._7{width:45.984600px;}
._2d{width:48.554100px;}
._29{width:61.197300px;}
._42{width:62.527500px;}
._43{width:64.050000px;}
._21{width:67.032000px;}
._22{width:68.071200px;}
._40{width:71.578500px;}
._44{width:77.786100px;}
._13{width:88.160400px;}
._12{width:89.580000px;}
._3c{width:94.318200px;}
._3b{width:104.067600px;}
._3e{width:108.251400px;}
._3d{width:116.521800px;}
._33{width:130.206000px;}
._32{width:135.398400px;}
._38{width:155.986200px;}
._31{width:158.596800px;}
._3a{width:176.461800px;}
._37{width:184.971000px;}
._35{width:185.974800px;}
._36{width:190.146000px;}
._39{width:199.668000px;}
._30{width:263.329200px;}
._34{width:327.611400px;}
._2f{width:508.420200px;}
.fc1{color:rgb(29,29,29);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:36.729000px;}
.fs0{font-size:48.000000px;}
.fs1{font-size:54.000000px;}
.fs3{font-size:63.000000px;}
.fs2{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:65.238000px;}
.y57{bottom:66.219900px;}
.y56{bottom:79.038450px;}
.y1{bottom:80.087550px;}
.y55{bottom:106.724400px;}
.y32{bottom:107.468550px;}
.y1c3{bottom:111.956850px;}
.y139{bottom:112.182900px;}
.y12a{bottom:112.280400px;}
.y158{bottom:112.599300px;}
.y19f{bottom:113.756700px;}
.y176{bottom:114.980400px;}
.y11c{bottom:115.772850px;}
.yc7{bottom:118.876800px;}
.yf6{bottom:118.892250px;}
.y98{bottom:121.919850px;}
.y54{bottom:122.924400px;}
.y31{bottom:123.668550px;}
.y80{bottom:123.748200px;}
.y119{bottom:124.568550px;}
.y1c2{bottom:130.857000px;}
.y129{bottom:131.180400px;}
.y157{bottom:131.499300px;}
.y19e{bottom:132.656700px;}
.y175{bottom:134.480400px;}
.y138{bottom:136.638900px;}
.yc6{bottom:137.776800px;}
.yf5{bottom:137.792250px;}
.y53{bottom:139.124400px;}
.y30{bottom:139.868550px;}
.y97{bottom:140.819850px;}
.y7f{bottom:142.648200px;}
.y118{bottom:143.468550px;}
.y1c1{bottom:149.757000px;}
.y128{bottom:150.080400px;}
.y156{bottom:150.399300px;}
.y19d{bottom:151.556700px;}
.y137{bottom:152.838900px;}
.y174{bottom:153.980400px;}
.y52{bottom:155.324400px;}
.y2f{bottom:156.068550px;}
.yc5{bottom:156.676800px;}
.yf4{bottom:156.692100px;}
.y96{bottom:159.719850px;}
.y7e{bottom:161.548200px;}
.y117{bottom:162.368550px;}
.y1c0{bottom:168.656850px;}
.y127{bottom:168.980400px;}
.y155{bottom:169.299300px;}
.y19c{bottom:170.456700px;}
.y136{bottom:171.467700px;}
.y51{bottom:171.524400px;}
.y2e{bottom:172.268550px;}
.y173{bottom:173.480400px;}
.yc4{bottom:175.576800px;}
.yf3{bottom:175.592250px;}
.y95{bottom:178.619850px;}
.y7d{bottom:180.448200px;}
.y116{bottom:181.268550px;}
.y1bf{bottom:187.557000px;}
.y135{bottom:187.667700px;}
.y50{bottom:187.724400px;}
.y126{bottom:187.880400px;}
.y154{bottom:188.199300px;}
.y2d{bottom:188.468550px;}
.y19b{bottom:189.356850px;}
.y172{bottom:192.980400px;}
.yc3{bottom:194.476800px;}
.yf2{bottom:194.492100px;}
.y94{bottom:197.519850px;}
.y7c{bottom:199.348200px;}
.y115{bottom:200.168550px;}
.y4f{bottom:203.924400px;}
.y2c{bottom:204.668550px;}
.y134{bottom:206.296650px;}
.y1be{bottom:206.456850px;}
.y125{bottom:206.780400px;}
.y153{bottom:207.099300px;}
.y19a{bottom:208.256700px;}
.y171{bottom:212.480400px;}
.yc2{bottom:213.376800px;}
.yf1{bottom:213.392250px;}
.y93{bottom:216.419850px;}
.y7b{bottom:218.248200px;}
.y114{bottom:219.068550px;}
.y4e{bottom:220.124400px;}
.y2b{bottom:220.868550px;}
.y133{bottom:222.496650px;}
.y1bd{bottom:225.357000px;}
.y124{bottom:225.680400px;}
.y152{bottom:225.999300px;}
.y199{bottom:227.156700px;}
.y170{bottom:231.980400px;}
.yc1{bottom:232.276800px;}
.yf0{bottom:232.292250px;}
.y92{bottom:235.319850px;}
.y4d{bottom:236.324400px;}
.y2a{bottom:237.068550px;}
.y7a{bottom:237.148200px;}
.y113{bottom:237.968550px;}
.y132{bottom:241.125600px;}
.y1bc{bottom:244.257000px;}
.y123{bottom:244.580400px;}
.y151{bottom:244.899300px;}
.y198{bottom:246.056700px;}
.yc0{bottom:251.176800px;}
.yef{bottom:251.192250px;}
.y16f{bottom:251.480400px;}
.y4c{bottom:252.524400px;}
.y29{bottom:253.268550px;}
.y91{bottom:254.219850px;}
.y79{bottom:256.048200px;}
.y112{bottom:256.868550px;}
.y131{bottom:257.325600px;}
.y1bb{bottom:263.157000px;}
.y122{bottom:263.480400px;}
.y150{bottom:263.799300px;}
.y197{bottom:264.956700px;}
.y4b{bottom:268.724400px;}
.y28{bottom:269.468550px;}
.ybf{bottom:270.076800px;}
.yee{bottom:270.092250px;}
.y16e{bottom:270.980400px;}
.y90{bottom:273.119850px;}
.y78{bottom:274.948200px;}
.y111{bottom:275.768550px;}
.y130{bottom:275.954550px;}
.y1ba{bottom:282.057000px;}
.y121{bottom:282.380400px;}
.y14f{bottom:282.699300px;}
.y196{bottom:283.856700px;}
.y4a{bottom:284.924400px;}
.y27{bottom:285.668550px;}
.ybe{bottom:288.976800px;}
.yed{bottom:288.992100px;}
.y16d{bottom:290.480400px;}
.y8f{bottom:292.019850px;}
.y12f{bottom:292.154550px;}
.y110{bottom:294.668550px;}
.y1b9{bottom:300.956850px;}
.y49{bottom:301.124400px;}
.y120{bottom:301.280400px;}
.y14e{bottom:301.599300px;}
.y26{bottom:301.868550px;}
.y77{bottom:302.352150px;}
.y195{bottom:302.756700px;}
.y11b{bottom:303.172500px;}
.ybd{bottom:307.876800px;}
.yec{bottom:307.892100px;}
.y16c{bottom:309.980400px;}
.y12e{bottom:310.783500px;}
.y48{bottom:317.324400px;}
.y25{bottom:318.068550px;}
.y8e{bottom:319.423800px;}
.y1b8{bottom:319.856850px;}
.y11f{bottom:320.180400px;}
.y14d{bottom:320.499300px;}
.y76{bottom:321.252150px;}
.y194{bottom:321.656700px;}
.y10f{bottom:322.072500px;}
.ybc{bottom:326.776800px;}
.yeb{bottom:326.792250px;}
.y12d{bottom:326.983500px;}
.y16b{bottom:329.480400px;}
.y47{bottom:333.524400px;}
.y24{bottom:334.268550px;}
.y8d{bottom:338.323800px;}
.y1b7{bottom:338.757000px;}
.y14c{bottom:339.399300px;}
.y75{bottom:340.152150px;}
.y193{bottom:340.556700px;}
.y12c{bottom:345.612450px;}
.ybb{bottom:345.676800px;}
.yea{bottom:345.692250px;}
.y11e{bottom:347.584350px;}
.y16a{bottom:348.980400px;}
.y46{bottom:349.724400px;}
.y23{bottom:350.468550px;}
.y8c{bottom:357.223800px;}
.y1b6{bottom:357.657000px;}
.y10e{bottom:357.980400px;}
.y14b{bottom:358.299300px;}
.y74{bottom:359.052150px;}
.y192{bottom:359.456700px;}
.yba{bottom:364.576800px;}
.ye9{bottom:364.592250px;}
.y45{bottom:365.924400px;}
.y11d{bottom:366.484350px;}
.y22{bottom:366.668550px;}
.y12b{bottom:367.489350px;}
.y169{bottom:368.480400px;}
.y1b5{bottom:376.557000px;}
.y10d{bottom:376.880400px;}
.y14a{bottom:377.199300px;}
.y191{bottom:378.356700px;}
.y44{bottom:382.124400px;}
.y21{bottom:382.868550px;}
.yb9{bottom:383.476800px;}
.ye8{bottom:383.492100px;}
.y168{bottom:387.980400px;}
.y8b{bottom:393.131700px;}
.y1b4{bottom:395.456850px;}
.y10c{bottom:395.780400px;}
.y149{bottom:396.099300px;}
.y190{bottom:397.256700px;}
.y43{bottom:398.324400px;}
.y20{bottom:399.068550px;}
.yb8{bottom:402.376800px;}
.ye7{bottom:402.392100px;}
.y167{bottom:407.480400px;}
.y8a{bottom:409.331700px;}
.y1b3{bottom:414.356850px;}
.y10b{bottom:414.680400px;}
.y148{bottom:414.999300px;}
.y18f{bottom:416.156700px;}
.yb7{bottom:421.276800px;}
.ye6{bottom:421.292250px;}
.y89{bottom:425.531700px;}
.y166{bottom:426.980400px;}
.y42{bottom:427.280400px;}
.y1f{bottom:428.024400px;}
.y1b2{bottom:433.257000px;}
.y10a{bottom:433.580400px;}
.y147{bottom:433.899300px;}
.y18e{bottom:435.056700px;}
.yb6{bottom:440.176800px;}
.ye5{bottom:440.192250px;}
.y41{bottom:446.180400px;}
.y165{bottom:446.480400px;}
.y1e{bottom:446.924400px;}
.y1b1{bottom:452.157000px;}
.y109{bottom:452.480400px;}
.y146{bottom:452.799300px;}
.y18d{bottom:453.956700px;}
.y88{bottom:454.487550px;}
.yb5{bottom:459.076800px;}
.ye4{bottom:459.092250px;}
.y40{bottom:465.080400px;}
.y1d{bottom:465.824400px;}
.y164{bottom:465.980400px;}
.y87{bottom:470.687550px;}
.y1b0{bottom:471.057000px;}
.y108{bottom:471.380400px;}
.y145{bottom:471.699300px;}
.y18c{bottom:472.856700px;}
.yb4{bottom:477.976800px;}
.ye3{bottom:477.992100px;}
.y3f{bottom:483.980400px;}
.y1c{bottom:484.724400px;}
.y163{bottom:485.480400px;}
.y86{bottom:486.887550px;}
.y1af{bottom:489.956850px;}
.y107{bottom:490.280400px;}
.y144{bottom:490.599300px;}
.y18b{bottom:491.756700px;}
.yb3{bottom:496.876800px;}
.ye2{bottom:496.892100px;}
.y3e{bottom:502.880400px;}
.y85{bottom:503.087550px;}
.y1b{bottom:503.624400px;}
.y162{bottom:504.980400px;}
.y106{bottom:509.180400px;}
.y143{bottom:509.499300px;}
.yb2{bottom:515.776800px;}
.ye1{bottom:515.792250px;}
.y1ae{bottom:517.360800px;}
.y18a{bottom:519.160650px;}
.y84{bottom:519.287550px;}
.y3d{bottom:521.780400px;}
.y1a{bottom:522.524400px;}
.y73{bottom:522.731700px;}
.y161{bottom:524.480400px;}
.y105{bottom:528.080400px;}
.y142{bottom:528.399300px;}
.yb1{bottom:534.676800px;}
.ye0{bottom:534.692250px;}
.y83{bottom:535.487550px;}
.y72{bottom:538.931700px;}
.y3c{bottom:540.680400px;}
.y19{bottom:541.424400px;}
.y160{bottom:543.980400px;}
.y104{bottom:546.980400px;}
.y141{bottom:547.299300px;}
.y82{bottom:551.687550px;}
.y1ad{bottom:553.268700px;}
.yb0{bottom:553.576800px;}
.ydf{bottom:553.592250px;}
.y189{bottom:555.068550px;}
.y71{bottom:555.131700px;}
.y3b{bottom:559.580400px;}
.y18{bottom:560.324400px;}
.y15f{bottom:563.480400px;}
.y103{bottom:565.880400px;}
.y140{bottom:566.199300px;}
.y81{bottom:567.887550px;}
.y1ac{bottom:572.168700px;}
.yaf{bottom:572.476800px;}
.yde{bottom:572.492100px;}
.y188{bottom:573.968550px;}
.y3a{bottom:578.480400px;}
.y17{bottom:579.224400px;}
.y15e{bottom:582.980400px;}
.y70{bottom:584.087550px;}
.y102{bottom:584.780400px;}
.y13f{bottom:585.099300px;}
.y1ab{bottom:591.068700px;}
.yae{bottom:591.376800px;}
.ydd{bottom:591.392100px;}
.y187{bottom:592.868550px;}
.y39{bottom:597.380400px;}
.y16{bottom:598.124400px;}
.y6f{bottom:600.287550px;}
.y15d{bottom:602.480400px;}
.y101{bottom:603.680400px;}
.y13e{bottom:603.999300px;}
.y1aa{bottom:609.968700px;}
.yad{bottom:610.276800px;}
.ydc{bottom:610.292250px;}
.y186{bottom:611.768550px;}
.y38{bottom:616.280400px;}
.y6e{bottom:616.487550px;}
.y15{bottom:617.024400px;}
.y15c{bottom:621.980400px;}
.y100{bottom:622.580400px;}
.y13d{bottom:622.899300px;}
.y1a9{bottom:628.868700px;}
.yac{bottom:629.176800px;}
.ydb{bottom:629.192250px;}
.y185{bottom:630.668550px;}
.y6d{bottom:632.687550px;}
.y37{bottom:635.180400px;}
.y14{bottom:635.924400px;}
.yff{bottom:641.480400px;}
.y13c{bottom:641.799300px;}
.y1a8{bottom:647.768700px;}
.yab{bottom:648.076800px;}
.yda{bottom:648.092250px;}
.y6c{bottom:648.887550px;}
.y184{bottom:649.568550px;}
.y36{bottom:654.080400px;}
.y13{bottom:654.824400px;}
.y11a{bottom:660.380400px;}
.y13b{bottom:660.699300px;}
.y6b{bottom:665.087550px;}
.y1a7{bottom:666.668700px;}
.yaa{bottom:666.976800px;}
.yd9{bottom:666.992100px;}
.y183{bottom:668.468550px;}
.yfe{bottom:668.884350px;}
.y35{bottom:672.980400px;}
.y12{bottom:673.724400px;}
.y177{bottom:679.280400px;}
.y13a{bottom:679.599300px;}
.y6a{bottom:681.287550px;}
.y1a6{bottom:685.568700px;}
.ya9{bottom:685.876800px;}
.yd8{bottom:685.892100px;}
.y182{bottom:687.368550px;}
.yfd{bottom:687.784350px;}
.y34{bottom:691.880400px;}
.y11{bottom:692.624400px;}
.y69{bottom:697.487550px;}
.ya8{bottom:704.776800px;}
.yd7{bottom:704.792250px;}
.yfc{bottom:706.684350px;}
.y33{bottom:710.780400px;}
.y10{bottom:711.524400px;}
.y1a5{bottom:712.972650px;}
.y68{bottom:713.687550px;}
.y181{bottom:714.772500px;}
.ya7{bottom:723.676800px;}
.yd6{bottom:723.692250px;}
.y15b{bottom:724.163850px;}
.yfb{bottom:725.584350px;}
.y67{bottom:729.887550px;}
.ya6{bottom:742.576800px;}
.yd5{bottom:742.592250px;}
.y15a{bottom:743.063850px;}
.yf{bottom:743.180400px;}
.y66{bottom:746.087550px;}
.y1a4{bottom:748.880550px;}
.y180{bottom:750.680400px;}
.ya5{bottom:761.476800px;}
.yd4{bottom:761.492100px;}
.y159{bottom:761.963850px;}
.y65{bottom:762.287550px;}
.ye{bottom:764.780400px;}
.y1a3{bottom:768.380550px;}
.y17f{bottom:769.580400px;}
.y64{bottom:778.487550px;}
.ya4{bottom:780.376800px;}
.yd3{bottom:780.392250px;}
.yd{bottom:786.380250px;}
.y63{bottom:794.687550px;}
.y1a2{bottom:796.384350px;}
.y17e{bottom:796.984350px;}
.ya3{bottom:799.276800px;}
.yd2{bottom:799.292250px;}
.yc{bottom:807.980400px;}
.y62{bottom:810.887550px;}
.ya2{bottom:818.176800px;}
.yfa{bottom:818.192100px;}
.yd1{bottom:818.192250px;}
.y61{bottom:827.087550px;}
.yb{bottom:829.580400px;}
.y1a1{bottom:832.292250px;}
.ya1{bottom:837.076800px;}
.yd0{bottom:837.092250px;}
.y60{bottom:843.287550px;}
.ya{bottom:851.180400px;}
.y1a0{bottom:851.792250px;}
.ya0{bottom:855.976800px;}
.yf9{bottom:855.992100px;}
.ycf{bottom:855.992250px;}
.y5f{bottom:859.487550px;}
.y17d{bottom:871.292250px;}
.y9{bottom:872.780400px;}
.y9f{bottom:874.876800px;}
.yce{bottom:874.892250px;}
.y5e{bottom:875.687550px;}
.y17c{bottom:890.792250px;}
.y5d{bottom:891.887550px;}
.y9e{bottom:893.776800px;}
.ycd{bottom:893.792250px;}
.y8{bottom:894.380250px;}
.y5c{bottom:908.087550px;}
.y17b{bottom:910.292250px;}
.y9d{bottom:912.676800px;}
.yf8{bottom:912.692100px;}
.ycc{bottom:912.692250px;}
.y7{bottom:915.980400px;}
.y5b{bottom:924.287550px;}
.y17a{bottom:929.792250px;}
.y9c{bottom:931.576800px;}
.ycb{bottom:931.592250px;}
.y5a{bottom:940.487550px;}
.y179{bottom:949.292250px;}
.y9b{bottom:950.476800px;}
.yf7{bottom:950.492100px;}
.yca{bottom:950.492250px;}
.y6{bottom:956.687550px;}
.y178{bottom:968.792250px;}
.y9a{bottom:969.376800px;}
.yc9{bottom:969.392250px;}
.y5{bottom:972.887550px;}
.y99{bottom:988.276800px;}
.yc8{bottom:988.292250px;}
.y4{bottom:989.087550px;}
.y3{bottom:1016.944500px;}
.y59{bottom:1018.069500px;}
.y58{bottom:1032.469350px;}
.h4{height:31.992188px;}
.h2{height:32.531250px;}
.h15{height:36.914062px;}
.ha{height:37.415039px;}
.h5{height:38.759766px;}
.hb{height:38.812500px;}
.h3{height:41.507812px;}
.hc{height:42.697266px;}
.h8{height:43.066406px;}
.h10{height:43.664062px;}
.hf{height:43.743164px;}
.h9{height:45.219727px;}
.h7{height:50.941406px;}
.h16{height:54.386719px;}
.he{height:54.479004px;}
.hd{height:55.155762px;}
.h6{height:58.218750px;}
.h13{height:71.159766px;}
.h14{height:71.160366px;}
.h12{height:76.064063px;}
.h11{height:108.464062px;}
.h1{height:1105.500000px;}
.h0{height:1105.512000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x19{left:72.283500px;}
.x17{left:83.716500px;}
.x26{left:85.711500px;}
.x4{left:93.118200px;}
.x14{left:95.200500px;}
.x20{left:99.996000px;}
.x1b{left:103.176450px;}
.x21{left:104.344950px;}
.x11{left:106.327500px;}
.x1a{left:110.178600px;}
.x13{left:111.425100px;}
.x15{left:114.562800px;}
.x2{left:115.780050px;}
.x12{left:117.472050px;}
.x35{left:123.144300px;}
.x32{left:128.950950px;}
.x36{left:130.861650px;}
.x22{left:139.651800px;}
.x23{left:142.627950px;}
.x1c{left:143.808900px;}
.x27{left:155.586750px;}
.x37{left:172.039950px;}
.x16{left:191.335350px;}
.x3{left:219.451350px;}
.x2b{left:220.821900px;}
.x2c{left:228.280500px;}
.x18{left:249.388950px;}
.x2a{left:273.046950px;}
.x2d{left:285.081300px;}
.x2e{left:296.251050px;}
.x1d{left:361.417350px;}
.x33{left:363.175050px;}
.x1f{left:371.572950px;}
.x3b{left:375.198600px;}
.x28{left:380.005500px;}
.xf{left:382.677150px;}
.x34{left:383.950650px;}
.xb{left:385.582500px;}
.xa{left:390.007800px;}
.x24{left:396.582000px;}
.x1e{left:399.285450px;}
.x39{left:400.488750px;}
.x10{left:403.936950px;}
.xd{left:405.603900px;}
.x9{left:411.224550px;}
.x29{left:415.896750px;}
.x8{left:418.532700px;}
.x38{left:421.483500px;}
.x5{left:426.685050px;}
.x6{left:428.020500px;}
.xe{left:440.092200px;}
.x7{left:450.102900px;}
.xc{left:451.460850px;}
.x2f{left:454.737450px;}
.x25{left:458.547600px;}
.x3a{left:465.642000px;}
.x30{left:511.711200px;}
.x31{left:522.880950px;}
.x3d{left:624.152250px;}
.x1{left:626.267700px;}
.x3c{left:645.412050px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.648000pt;}
.v2{vertical-align:28.800000pt;}
.v3{vertical-align:57.600000pt;}
.ls5{letter-spacing:-2.240000pt;}
.lse{letter-spacing:-1.120000pt;}
.ls4{letter-spacing:-1.088000pt;}
.lsd{letter-spacing:-0.560000pt;}
.ls3{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.000133pt;}
.lsb{letter-spacing:0.000267pt;}
.ls9{letter-spacing:0.000533pt;}
.ls8{letter-spacing:1.008000pt;}
.ls2{letter-spacing:1.219200pt;}
.ls10{letter-spacing:1.474133pt;}
.ls6{letter-spacing:1.493333pt;}
.ls0{letter-spacing:1.664000pt;}
.ls7{letter-spacing:1.960000pt;}
.ls1{letter-spacing:2.496000pt;}
.lsf{letter-spacing:4.593493pt;}
.lsa{letter-spacing:19.616000pt;}
.ws7{word-spacing:-15.960000pt;}
.ws8{word-spacing:-14.000000pt;}
.ws45{word-spacing:-13.440000pt;}
.ws0{word-spacing:-12.656000pt;}
.ws1{word-spacing:-10.848000pt;}
.ws1e{word-spacing:-8.162000pt;}
.ws3b{word-spacing:-2.856000pt;}
.ws38{word-spacing:-2.800000pt;}
.ws43{word-spacing:-2.744000pt;}
.ws3f{word-spacing:-2.576000pt;}
.ws4{word-spacing:-2.496000pt;}
.ws4d{word-spacing:-2.464000pt;}
.ws4f{word-spacing:-2.352000pt;}
.ws39{word-spacing:-2.240000pt;}
.wsb{word-spacing:-1.960000pt;}
.ws19{word-spacing:-1.792000pt;}
.wsa{word-spacing:-1.664000pt;}
.ws36{word-spacing:-1.624000pt;}
.ws9{word-spacing:-1.493333pt;}
.ws2e{word-spacing:-1.288000pt;}
.ws47{word-spacing:-1.176000pt;}
.wsd{word-spacing:-1.008000pt;}
.ws32{word-spacing:-0.840000pt;}
.ws3{word-spacing:-0.810667pt;}
.ws54{word-spacing:-0.504000pt;}
.ws49{word-spacing:-0.448000pt;}
.ws56{word-spacing:-0.280000pt;}
.ws2{word-spacing:0.000000pt;}
.ws53{word-spacing:0.280000pt;}
.ws1f{word-spacing:0.560000pt;}
.ws55{word-spacing:0.784000pt;}
.ws46{word-spacing:1.064000pt;}
.ws5{word-spacing:1.088000pt;}
.ws28{word-spacing:1.120000pt;}
.ws4b{word-spacing:1.232000pt;}
.ws50{word-spacing:1.400000pt;}
.ws51{word-spacing:1.624000pt;}
.ws1d{word-spacing:1.960000pt;}
.ws6{word-spacing:2.240000pt;}
.ws16{word-spacing:2.296000pt;}
.ws17{word-spacing:2.688000pt;}
.ws13{word-spacing:2.968000pt;}
.ws4e{word-spacing:3.024000pt;}
.ws35{word-spacing:3.080000pt;}
.ws52{word-spacing:3.136000pt;}
.ws3e{word-spacing:3.696000pt;}
.wsc{word-spacing:3.808000pt;}
.ws37{word-spacing:4.200000pt;}
.ws4a{word-spacing:4.480000pt;}
.ws48{word-spacing:4.536000pt;}
.ws34{word-spacing:4.592000pt;}
.ws2b{word-spacing:4.816000pt;}
.wsf{word-spacing:7.168000pt;}
.ws42{word-spacing:7.448000pt;}
.ws29{word-spacing:8.288000pt;}
.ws18{word-spacing:9.072000pt;}
.ws44{word-spacing:9.464000pt;}
.ws2d{word-spacing:10.192000pt;}
.ws10{word-spacing:10.416000pt;}
.ws4c{word-spacing:10.528000pt;}
.ws15{word-spacing:10.584000pt;}
.ws31{word-spacing:11.256000pt;}
.ws2a{word-spacing:11.592000pt;}
.ws3c{word-spacing:11.984000pt;}
.wse{word-spacing:12.264000pt;}
.ws3a{word-spacing:12.320000pt;}
.ws41{word-spacing:12.544000pt;}
.ws1c{word-spacing:13.104000pt;}
.ws2f{word-spacing:14.280000pt;}
.ws1b{word-spacing:14.336000pt;}
.ws1a{word-spacing:15.680000pt;}
.ws11{word-spacing:16.072000pt;}
.ws30{word-spacing:16.968000pt;}
.ws3d{word-spacing:17.304000pt;}
.ws33{word-spacing:20.888000pt;}
.ws2c{word-spacing:21.000000pt;}
.ws40{word-spacing:24.024000pt;}
.ws12{word-spacing:24.472000pt;}
.ws14{word-spacing:27.552000pt;}
.ws26{word-spacing:47.646933pt;}
.ws23{word-spacing:84.162667pt;}
.ws24{word-spacing:120.662400pt;}
.ws22{word-spacing:161.900800pt;}
.ws21{word-spacing:164.842133pt;}
.ws20{word-spacing:187.244800pt;}
.ws27{word-spacing:307.983467pt;}
.ws25{word-spacing:319.936533pt;}
._3f{margin-left:-14.784000pt;}
._41{margin-left:-13.201067pt;}
._f{margin-left:-11.617600pt;}
._11{margin-left:-10.290133pt;}
._6{margin-left:-9.370667pt;}
._2e{margin-left:-8.086400pt;}
._2b{margin-left:-7.162400pt;}
._3{margin-left:-6.220800pt;}
._25{margin-left:-5.178400pt;}
._4{margin-left:-4.265600pt;}
._2{margin-left:-2.491733pt;}
._1{margin-left:-1.600000pt;}
._0{width:1.506133pt;}
._5{width:2.589867pt;}
._c{width:3.853867pt;}
._d{width:4.933333pt;}
._9{width:5.971200pt;}
._a{width:7.521067pt;}
._b{width:8.630933pt;}
._10{width:9.911467pt;}
._1f{width:11.428000pt;}
._19{width:12.878400pt;}
._17{width:14.040000pt;}
._20{width:14.978933pt;}
._1b{width:15.965333pt;}
._8{width:17.001600pt;}
._18{width:18.024533pt;}
._14{width:18.957333pt;}
._1e{width:20.675200pt;}
._1d{width:21.708000pt;}
._e{width:22.838400pt;}
._23{width:24.377333pt;}
._15{width:25.502400pt;}
._16{width:26.649600pt;}
._28{width:28.297600pt;}
._24{width:29.349600pt;}
._2c{width:30.737867pt;}
._2a{width:32.859200pt;}
._1a{width:34.032000pt;}
._26{width:35.024800pt;}
._1c{width:36.577600pt;}
._45{width:37.648800pt;}
._27{width:39.748800pt;}
._7{width:40.875200pt;}
._2d{width:43.159200pt;}
._29{width:54.397600pt;}
._42{width:55.580000pt;}
._43{width:56.933333pt;}
._21{width:59.584000pt;}
._22{width:60.507733pt;}
._40{width:63.625333pt;}
._44{width:69.143200pt;}
._13{width:78.364800pt;}
._12{width:79.626667pt;}
._3c{width:83.838400pt;}
._3b{width:92.504533pt;}
._3e{width:96.223467pt;}
._3d{width:103.574933pt;}
._33{width:115.738667pt;}
._32{width:120.354133pt;}
._38{width:138.654400pt;}
._31{width:140.974933pt;}
._3a{width:156.854933pt;}
._37{width:164.418667pt;}
._35{width:165.310933pt;}
._36{width:169.018667pt;}
._39{width:177.482667pt;}
._30{width:234.070400pt;}
._34{width:291.210133pt;}
._2f{width:451.929067pt;}
.fs4{font-size:32.648000pt;}
.fs0{font-size:42.666667pt;}
.fs1{font-size:48.000000pt;}
.fs3{font-size:56.000000pt;}
.fs2{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:57.989333pt;}
.y57{bottom:58.862133pt;}
.y56{bottom:70.256400pt;}
.y1{bottom:71.188933pt;}
.y55{bottom:94.866133pt;}
.y32{bottom:95.527600pt;}
.y1c3{bottom:99.517200pt;}
.y139{bottom:99.718133pt;}
.y12a{bottom:99.804800pt;}
.y158{bottom:100.088267pt;}
.y19f{bottom:101.117067pt;}
.y176{bottom:102.204800pt;}
.y11c{bottom:102.909200pt;}
.yc7{bottom:105.668267pt;}
.yf6{bottom:105.682000pt;}
.y98{bottom:108.373200pt;}
.y54{bottom:109.266133pt;}
.y31{bottom:109.927600pt;}
.y80{bottom:109.998400pt;}
.y119{bottom:110.727600pt;}
.y1c2{bottom:116.317333pt;}
.y129{bottom:116.604800pt;}
.y157{bottom:116.888267pt;}
.y19e{bottom:117.917067pt;}
.y175{bottom:119.538133pt;}
.y138{bottom:121.456800pt;}
.yc6{bottom:122.468267pt;}
.yf5{bottom:122.482000pt;}
.y53{bottom:123.666133pt;}
.y30{bottom:124.327600pt;}
.y97{bottom:125.173200pt;}
.y7f{bottom:126.798400pt;}
.y118{bottom:127.527600pt;}
.y1c1{bottom:133.117333pt;}
.y128{bottom:133.404800pt;}
.y156{bottom:133.688267pt;}
.y19d{bottom:134.717067pt;}
.y137{bottom:135.856800pt;}
.y174{bottom:136.871467pt;}
.y52{bottom:138.066133pt;}
.y2f{bottom:138.727600pt;}
.yc5{bottom:139.268267pt;}
.yf4{bottom:139.281867pt;}
.y96{bottom:141.973200pt;}
.y7e{bottom:143.598400pt;}
.y117{bottom:144.327600pt;}
.y1c0{bottom:149.917200pt;}
.y127{bottom:150.204800pt;}
.y155{bottom:150.488267pt;}
.y19c{bottom:151.517067pt;}
.y136{bottom:152.415733pt;}
.y51{bottom:152.466133pt;}
.y2e{bottom:153.127600pt;}
.y173{bottom:154.204800pt;}
.yc4{bottom:156.068267pt;}
.yf3{bottom:156.082000pt;}
.y95{bottom:158.773200pt;}
.y7d{bottom:160.398400pt;}
.y116{bottom:161.127600pt;}
.y1bf{bottom:166.717333pt;}
.y135{bottom:166.815733pt;}
.y50{bottom:166.866133pt;}
.y126{bottom:167.004800pt;}
.y154{bottom:167.288267pt;}
.y2d{bottom:167.527600pt;}
.y19b{bottom:168.317200pt;}
.y172{bottom:171.538133pt;}
.yc3{bottom:172.868267pt;}
.yf2{bottom:172.881867pt;}
.y94{bottom:175.573200pt;}
.y7c{bottom:177.198400pt;}
.y115{bottom:177.927600pt;}
.y4f{bottom:181.266133pt;}
.y2c{bottom:181.927600pt;}
.y134{bottom:183.374800pt;}
.y1be{bottom:183.517200pt;}
.y125{bottom:183.804800pt;}
.y153{bottom:184.088267pt;}
.y19a{bottom:185.117067pt;}
.y171{bottom:188.871467pt;}
.yc2{bottom:189.668267pt;}
.yf1{bottom:189.682000pt;}
.y93{bottom:192.373200pt;}
.y7b{bottom:193.998400pt;}
.y114{bottom:194.727600pt;}
.y4e{bottom:195.666133pt;}
.y2b{bottom:196.327600pt;}
.y133{bottom:197.774800pt;}
.y1bd{bottom:200.317333pt;}
.y124{bottom:200.604800pt;}
.y152{bottom:200.888267pt;}
.y199{bottom:201.917067pt;}
.y170{bottom:206.204800pt;}
.yc1{bottom:206.468267pt;}
.yf0{bottom:206.482000pt;}
.y92{bottom:209.173200pt;}
.y4d{bottom:210.066133pt;}
.y2a{bottom:210.727600pt;}
.y7a{bottom:210.798400pt;}
.y113{bottom:211.527600pt;}
.y132{bottom:214.333867pt;}
.y1bc{bottom:217.117333pt;}
.y123{bottom:217.404800pt;}
.y151{bottom:217.688267pt;}
.y198{bottom:218.717067pt;}
.yc0{bottom:223.268267pt;}
.yef{bottom:223.282000pt;}
.y16f{bottom:223.538133pt;}
.y4c{bottom:224.466133pt;}
.y29{bottom:225.127600pt;}
.y91{bottom:225.973200pt;}
.y79{bottom:227.598400pt;}
.y112{bottom:228.327600pt;}
.y131{bottom:228.733867pt;}
.y1bb{bottom:233.917333pt;}
.y122{bottom:234.204800pt;}
.y150{bottom:234.488267pt;}
.y197{bottom:235.517067pt;}
.y4b{bottom:238.866133pt;}
.y28{bottom:239.527600pt;}
.ybf{bottom:240.068267pt;}
.yee{bottom:240.082000pt;}
.y16e{bottom:240.871467pt;}
.y90{bottom:242.773200pt;}
.y78{bottom:244.398400pt;}
.y111{bottom:245.127600pt;}
.y130{bottom:245.292933pt;}
.y1ba{bottom:250.717333pt;}
.y121{bottom:251.004800pt;}
.y14f{bottom:251.288267pt;}
.y196{bottom:252.317067pt;}
.y4a{bottom:253.266133pt;}
.y27{bottom:253.927600pt;}
.ybe{bottom:256.868267pt;}
.yed{bottom:256.881867pt;}
.y16d{bottom:258.204800pt;}
.y8f{bottom:259.573200pt;}
.y12f{bottom:259.692933pt;}
.y110{bottom:261.927600pt;}
.y1b9{bottom:267.517200pt;}
.y49{bottom:267.666133pt;}
.y120{bottom:267.804800pt;}
.y14e{bottom:268.088267pt;}
.y26{bottom:268.327600pt;}
.y77{bottom:268.757467pt;}
.y195{bottom:269.117067pt;}
.y11b{bottom:269.486667pt;}
.ybd{bottom:273.668267pt;}
.yec{bottom:273.681867pt;}
.y16c{bottom:275.538133pt;}
.y12e{bottom:276.252000pt;}
.y48{bottom:282.066133pt;}
.y25{bottom:282.727600pt;}
.y8e{bottom:283.932267pt;}
.y1b8{bottom:284.317200pt;}
.y11f{bottom:284.604800pt;}
.y14d{bottom:284.888267pt;}
.y76{bottom:285.557467pt;}
.y194{bottom:285.917067pt;}
.y10f{bottom:286.286667pt;}
.ybc{bottom:290.468267pt;}
.yeb{bottom:290.482000pt;}
.y12d{bottom:290.652000pt;}
.y16b{bottom:292.871467pt;}
.y47{bottom:296.466133pt;}
.y24{bottom:297.127600pt;}
.y8d{bottom:300.732267pt;}
.y1b7{bottom:301.117333pt;}
.y14c{bottom:301.688267pt;}
.y75{bottom:302.357467pt;}
.y193{bottom:302.717067pt;}
.y12c{bottom:307.211067pt;}
.ybb{bottom:307.268267pt;}
.yea{bottom:307.282000pt;}
.y11e{bottom:308.963867pt;}
.y16a{bottom:310.204800pt;}
.y46{bottom:310.866133pt;}
.y23{bottom:311.527600pt;}
.y8c{bottom:317.532267pt;}
.y1b6{bottom:317.917333pt;}
.y10e{bottom:318.204800pt;}
.y14b{bottom:318.488267pt;}
.y74{bottom:319.157467pt;}
.y192{bottom:319.517067pt;}
.yba{bottom:324.068267pt;}
.ye9{bottom:324.082000pt;}
.y45{bottom:325.266133pt;}
.y11d{bottom:325.763867pt;}
.y22{bottom:325.927600pt;}
.y12b{bottom:326.657200pt;}
.y169{bottom:327.538133pt;}
.y1b5{bottom:334.717333pt;}
.y10d{bottom:335.004800pt;}
.y14a{bottom:335.288267pt;}
.y191{bottom:336.317067pt;}
.y44{bottom:339.666133pt;}
.y21{bottom:340.327600pt;}
.yb9{bottom:340.868267pt;}
.ye8{bottom:340.881867pt;}
.y168{bottom:344.871467pt;}
.y8b{bottom:349.450400pt;}
.y1b4{bottom:351.517200pt;}
.y10c{bottom:351.804800pt;}
.y149{bottom:352.088267pt;}
.y190{bottom:353.117067pt;}
.y43{bottom:354.066133pt;}
.y20{bottom:354.727600pt;}
.yb8{bottom:357.668267pt;}
.ye7{bottom:357.681867pt;}
.y167{bottom:362.204800pt;}
.y8a{bottom:363.850400pt;}
.y1b3{bottom:368.317200pt;}
.y10b{bottom:368.604800pt;}
.y148{bottom:368.888267pt;}
.y18f{bottom:369.917067pt;}
.yb7{bottom:374.468267pt;}
.ye6{bottom:374.482000pt;}
.y89{bottom:378.250400pt;}
.y166{bottom:379.538133pt;}
.y42{bottom:379.804800pt;}
.y1f{bottom:380.466133pt;}
.y1b2{bottom:385.117333pt;}
.y10a{bottom:385.404800pt;}
.y147{bottom:385.688267pt;}
.y18e{bottom:386.717067pt;}
.yb6{bottom:391.268267pt;}
.ye5{bottom:391.282000pt;}
.y41{bottom:396.604800pt;}
.y165{bottom:396.871467pt;}
.y1e{bottom:397.266133pt;}
.y1b1{bottom:401.917333pt;}
.y109{bottom:402.204800pt;}
.y146{bottom:402.488267pt;}
.y18d{bottom:403.517067pt;}
.y88{bottom:403.988933pt;}
.yb5{bottom:408.068267pt;}
.ye4{bottom:408.082000pt;}
.y40{bottom:413.404800pt;}
.y1d{bottom:414.066133pt;}
.y164{bottom:414.204800pt;}
.y87{bottom:418.388933pt;}
.y1b0{bottom:418.717333pt;}
.y108{bottom:419.004800pt;}
.y145{bottom:419.288267pt;}
.y18c{bottom:420.317067pt;}
.yb4{bottom:424.868267pt;}
.ye3{bottom:424.881867pt;}
.y3f{bottom:430.204800pt;}
.y1c{bottom:430.866133pt;}
.y163{bottom:431.538133pt;}
.y86{bottom:432.788933pt;}
.y1af{bottom:435.517200pt;}
.y107{bottom:435.804800pt;}
.y144{bottom:436.088267pt;}
.y18b{bottom:437.117067pt;}
.yb3{bottom:441.668267pt;}
.ye2{bottom:441.681867pt;}
.y3e{bottom:447.004800pt;}
.y85{bottom:447.188933pt;}
.y1b{bottom:447.666133pt;}
.y162{bottom:448.871467pt;}
.y106{bottom:452.604800pt;}
.y143{bottom:452.888267pt;}
.yb2{bottom:458.468267pt;}
.ye1{bottom:458.482000pt;}
.y1ae{bottom:459.876267pt;}
.y18a{bottom:461.476133pt;}
.y84{bottom:461.588933pt;}
.y3d{bottom:463.804800pt;}
.y1a{bottom:464.466133pt;}
.y73{bottom:464.650400pt;}
.y161{bottom:466.204800pt;}
.y105{bottom:469.404800pt;}
.y142{bottom:469.688267pt;}
.yb1{bottom:475.268267pt;}
.ye0{bottom:475.282000pt;}
.y83{bottom:475.988933pt;}
.y72{bottom:479.050400pt;}
.y3c{bottom:480.604800pt;}
.y19{bottom:481.266133pt;}
.y160{bottom:483.538133pt;}
.y104{bottom:486.204800pt;}
.y141{bottom:486.488267pt;}
.y82{bottom:490.388933pt;}
.y1ad{bottom:491.794400pt;}
.yb0{bottom:492.068267pt;}
.ydf{bottom:492.082000pt;}
.y189{bottom:493.394267pt;}
.y71{bottom:493.450400pt;}
.y3b{bottom:497.404800pt;}
.y18{bottom:498.066133pt;}
.y15f{bottom:500.871467pt;}
.y103{bottom:503.004800pt;}
.y140{bottom:503.288267pt;}
.y81{bottom:504.788933pt;}
.y1ac{bottom:508.594400pt;}
.yaf{bottom:508.868267pt;}
.yde{bottom:508.881867pt;}
.y188{bottom:510.194267pt;}
.y3a{bottom:514.204800pt;}
.y17{bottom:514.866133pt;}
.y15e{bottom:518.204800pt;}
.y70{bottom:519.188933pt;}
.y102{bottom:519.804800pt;}
.y13f{bottom:520.088267pt;}
.y1ab{bottom:525.394400pt;}
.yae{bottom:525.668267pt;}
.ydd{bottom:525.681867pt;}
.y187{bottom:526.994267pt;}
.y39{bottom:531.004800pt;}
.y16{bottom:531.666133pt;}
.y6f{bottom:533.588933pt;}
.y15d{bottom:535.538133pt;}
.y101{bottom:536.604800pt;}
.y13e{bottom:536.888267pt;}
.y1aa{bottom:542.194400pt;}
.yad{bottom:542.468267pt;}
.ydc{bottom:542.482000pt;}
.y186{bottom:543.794267pt;}
.y38{bottom:547.804800pt;}
.y6e{bottom:547.988933pt;}
.y15{bottom:548.466133pt;}
.y15c{bottom:552.871467pt;}
.y100{bottom:553.404800pt;}
.y13d{bottom:553.688267pt;}
.y1a9{bottom:558.994400pt;}
.yac{bottom:559.268267pt;}
.ydb{bottom:559.282000pt;}
.y185{bottom:560.594267pt;}
.y6d{bottom:562.388933pt;}
.y37{bottom:564.604800pt;}
.y14{bottom:565.266133pt;}
.yff{bottom:570.204800pt;}
.y13c{bottom:570.488267pt;}
.y1a8{bottom:575.794400pt;}
.yab{bottom:576.068267pt;}
.yda{bottom:576.082000pt;}
.y6c{bottom:576.788933pt;}
.y184{bottom:577.394267pt;}
.y36{bottom:581.404800pt;}
.y13{bottom:582.066133pt;}
.y11a{bottom:587.004800pt;}
.y13b{bottom:587.288267pt;}
.y6b{bottom:591.188933pt;}
.y1a7{bottom:592.594400pt;}
.yaa{bottom:592.868267pt;}
.yd9{bottom:592.881867pt;}
.y183{bottom:594.194267pt;}
.yfe{bottom:594.563867pt;}
.y35{bottom:598.204800pt;}
.y12{bottom:598.866133pt;}
.y177{bottom:603.804800pt;}
.y13a{bottom:604.088267pt;}
.y6a{bottom:605.588933pt;}
.y1a6{bottom:609.394400pt;}
.ya9{bottom:609.668267pt;}
.yd8{bottom:609.681867pt;}
.y182{bottom:610.994267pt;}
.yfd{bottom:611.363867pt;}
.y34{bottom:615.004800pt;}
.y11{bottom:615.666133pt;}
.y69{bottom:619.988933pt;}
.ya8{bottom:626.468267pt;}
.yd7{bottom:626.482000pt;}
.yfc{bottom:628.163867pt;}
.y33{bottom:631.804800pt;}
.y10{bottom:632.466133pt;}
.y1a5{bottom:633.753467pt;}
.y68{bottom:634.388933pt;}
.y181{bottom:635.353333pt;}
.ya7{bottom:643.268267pt;}
.yd6{bottom:643.282000pt;}
.y15b{bottom:643.701200pt;}
.yfb{bottom:644.963867pt;}
.y67{bottom:648.788933pt;}
.ya6{bottom:660.068267pt;}
.yd5{bottom:660.082000pt;}
.y15a{bottom:660.501200pt;}
.yf{bottom:660.604800pt;}
.y66{bottom:663.188933pt;}
.y1a4{bottom:665.671600pt;}
.y180{bottom:667.271467pt;}
.ya5{bottom:676.868267pt;}
.yd4{bottom:676.881867pt;}
.y159{bottom:677.301200pt;}
.y65{bottom:677.588933pt;}
.ye{bottom:679.804800pt;}
.y1a3{bottom:683.004933pt;}
.y17f{bottom:684.071467pt;}
.y64{bottom:691.988933pt;}
.ya4{bottom:693.668267pt;}
.yd3{bottom:693.682000pt;}
.yd{bottom:699.004667pt;}
.y63{bottom:706.388933pt;}
.y1a2{bottom:707.897200pt;}
.y17e{bottom:708.430533pt;}
.ya3{bottom:710.468267pt;}
.yd2{bottom:710.482000pt;}
.yc{bottom:718.204800pt;}
.y62{bottom:720.788933pt;}
.ya2{bottom:727.268267pt;}
.yfa{bottom:727.281867pt;}
.yd1{bottom:727.282000pt;}
.y61{bottom:735.188933pt;}
.yb{bottom:737.404800pt;}
.y1a1{bottom:739.815333pt;}
.ya1{bottom:744.068267pt;}
.yd0{bottom:744.082000pt;}
.y60{bottom:749.588933pt;}
.ya{bottom:756.604800pt;}
.y1a0{bottom:757.148667pt;}
.ya0{bottom:760.868267pt;}
.yf9{bottom:760.881867pt;}
.ycf{bottom:760.882000pt;}
.y5f{bottom:763.988933pt;}
.y17d{bottom:774.482000pt;}
.y9{bottom:775.804800pt;}
.y9f{bottom:777.668267pt;}
.yce{bottom:777.682000pt;}
.y5e{bottom:778.388933pt;}
.y17c{bottom:791.815333pt;}
.y5d{bottom:792.788933pt;}
.y9e{bottom:794.468267pt;}
.ycd{bottom:794.482000pt;}
.y8{bottom:795.004667pt;}
.y5c{bottom:807.188933pt;}
.y17b{bottom:809.148667pt;}
.y9d{bottom:811.268267pt;}
.yf8{bottom:811.281867pt;}
.ycc{bottom:811.282000pt;}
.y7{bottom:814.204800pt;}
.y5b{bottom:821.588933pt;}
.y17a{bottom:826.482000pt;}
.y9c{bottom:828.068267pt;}
.ycb{bottom:828.082000pt;}
.y5a{bottom:835.988933pt;}
.y179{bottom:843.815333pt;}
.y9b{bottom:844.868267pt;}
.yf7{bottom:844.881867pt;}
.yca{bottom:844.882000pt;}
.y6{bottom:850.388933pt;}
.y178{bottom:861.148667pt;}
.y9a{bottom:861.668267pt;}
.yc9{bottom:861.682000pt;}
.y5{bottom:864.788933pt;}
.y99{bottom:878.468267pt;}
.yc8{bottom:878.482000pt;}
.y4{bottom:879.188933pt;}
.y3{bottom:903.950667pt;}
.y59{bottom:904.950667pt;}
.y58{bottom:917.750533pt;}
.h4{height:28.437500pt;}
.h2{height:28.916667pt;}
.h15{height:32.812500pt;}
.ha{height:33.257812pt;}
.h5{height:34.453125pt;}
.hb{height:34.500000pt;}
.h3{height:36.895833pt;}
.hc{height:37.953125pt;}
.h8{height:38.281250pt;}
.h10{height:38.812500pt;}
.hf{height:38.882812pt;}
.h9{height:40.195312pt;}
.h7{height:45.281250pt;}
.h16{height:48.343750pt;}
.he{height:48.425781pt;}
.hd{height:49.027344pt;}
.h6{height:51.750000pt;}
.h13{height:63.253125pt;}
.h14{height:63.253658pt;}
.h12{height:67.612500pt;}
.h11{height:96.412500pt;}
.h1{height:982.666667pt;}
.h0{height:982.677333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x19{left:64.252000pt;}
.x17{left:74.414667pt;}
.x26{left:76.188000pt;}
.x4{left:82.771733pt;}
.x14{left:84.622667pt;}
.x20{left:88.885333pt;}
.x1b{left:91.712400pt;}
.x21{left:92.751067pt;}
.x11{left:94.513333pt;}
.x1a{left:97.936533pt;}
.x13{left:99.044533pt;}
.x15{left:101.833600pt;}
.x2{left:102.915600pt;}
.x12{left:104.419600pt;}
.x35{left:109.461600pt;}
.x32{left:114.623067pt;}
.x36{left:116.321467pt;}
.x22{left:124.134933pt;}
.x23{left:126.780400pt;}
.x1c{left:127.830133pt;}
.x27{left:138.299333pt;}
.x37{left:152.924400pt;}
.x16{left:170.075867pt;}
.x3{left:195.067867pt;}
.x2b{left:196.286133pt;}
.x2c{left:202.916000pt;}
.x18{left:221.679067pt;}
.x2a{left:242.708400pt;}
.x2d{left:253.405600pt;}
.x2e{left:263.334267pt;}
.x1d{left:321.259867pt;}
.x33{left:322.822267pt;}
.x1f{left:330.287067pt;}
.x3b{left:333.509867pt;}
.x28{left:337.782667pt;}
.xf{left:340.157467pt;}
.x34{left:341.289467pt;}
.xb{left:342.740000pt;}
.xa{left:346.673600pt;}
.x24{left:352.517333pt;}
.x1e{left:354.920400pt;}
.x39{left:355.990000pt;}
.x10{left:359.055067pt;}
.xd{left:360.536800pt;}
.x9{left:365.532933pt;}
.x29{left:369.686000pt;}
.x8{left:372.029067pt;}
.x38{left:374.652000pt;}
.x5{left:379.275600pt;}
.x6{left:380.462667pt;}
.xe{left:391.193067pt;}
.x7{left:400.091467pt;}
.xc{left:401.298533pt;}
.x2f{left:404.211067pt;}
.x25{left:407.597867pt;}
.x3a{left:413.904000pt;}
.x30{left:454.854400pt;}
.x31{left:464.783067pt;}
.x3d{left:554.802000pt;}
.x1{left:556.682400pt;}
.x3c{left:573.699600pt;}
}




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