
    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_382371068b6e6fde4e8c2301.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.988000;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_3bc0015ad4bf03c8556f5269.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.747000;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_226d134d4923e7f1a7f48d74.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.979000;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_87ecf8556eef4ae047f542dc.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.940000;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_26d83f325935cf9d079c8532.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.201000;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_e1ce229294b4fcc0587d3132.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.140000;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_55617858b762e33ec846e2c5.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.221000;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_c2d4a1b3298f9bd13dc236b0.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.979000;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_f0db297cd4635d5508715402.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.940000;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_b65623ea65a3ff77806c1f5f.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.271000;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_81f48ec17f62ff29cee0c510.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.140000;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_1c059a0ee850a6ecd084dd44.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.175000;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_bc8be5686f5972a67336aa5e.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.255000;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_f9af8fdf4ec1b56f1354d9cb.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.936000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_d25c4d383cc5213bf5ff7072.woff2')format("woff");}.fff{font-family:fff;line-height:0.980000;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_c3270ef138bab062185d7ffc.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.140000;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_737c84df6a67c96c6407b543.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.271000;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_253b46364f396ff768609867.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.255000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_4bb8ee831da45f61bcdeab22.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.120000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_38fbb5157f6186e0d7db808a.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.233000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_d78ca4c2df2e4a9d9468e9b3.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.271000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_c3270ef138bab062185d7ffc.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.140000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_681642b37df9560b7841088d.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.988000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url('chunks/assets/font_7dc2ac246247d161badf14ab.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.940000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19;src:url('chunks/assets/font_d78ca4c2df2e4a9d9468e9b3.woff2')format("woff");}.ff19{font-family:ff19;line-height:1.271000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a;src:url('chunks/assets/font_c3270ef138bab062185d7ffc.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:1.140000;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;}
.m3e{transform:matrix(-0.169092,0.184141,-0.184141,-0.169092,0,0);-ms-transform:matrix(-0.169092,0.184141,-0.184141,-0.169092,0,0);-webkit-transform:matrix(-0.169092,0.184141,-0.184141,-0.169092,0,0);}
.m3d{transform:matrix(-0.096282,0.230716,-0.230716,-0.096282,0,0);-ms-transform:matrix(-0.096282,0.230716,-0.230716,-0.096282,0,0);-webkit-transform:matrix(-0.096282,0.230716,-0.230716,-0.096282,0,0);}
.m3c{transform:matrix(0.129483,0.213855,-0.213855,0.129483,0,0);-ms-transform:matrix(0.129483,0.213855,-0.213855,0.129483,0,0);-webkit-transform:matrix(0.129483,0.213855,-0.213855,0.129483,0,0);}
.m3b{transform:matrix(0.234775,0.085911,-0.085911,0.234775,0,0);-ms-transform:matrix(0.234775,0.085911,-0.085911,0.234775,0,0);-webkit-transform:matrix(0.234775,0.085911,-0.085911,0.234775,0,0);}
.m3a{transform:matrix(0.241915,0.063063,-0.063063,0.241915,0,0);-ms-transform:matrix(0.241915,0.063063,-0.063063,0.241915,0,0);-webkit-transform:matrix(0.241915,0.063063,-0.063063,0.241915,0,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);}
.mc3{transform:matrix(0.245903,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245903,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245903,0.000000,0.000000,0.250000,0,0);}
.mb0{transform:matrix(0.246005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246005,0.000000,0.000000,0.250000,0,0);}
.m36{transform:matrix(0.246060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246060,0.000000,0.000000,0.250000,0,0);}
.m76{transform:matrix(0.246132,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246132,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246132,0.000000,0.000000,0.250000,0,0);}
.m77{transform:matrix(0.246133,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246133,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246133,0.000000,0.000000,0.250000,0,0);}
.m74{transform:matrix(0.246574,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246574,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246574,0.000000,0.000000,0.250000,0,0);}
.md1{transform:matrix(0.246677,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246677,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246677,0.000000,0.000000,0.250000,0,0);}
.md0{transform:matrix(0.246679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246679,0.000000,0.000000,0.250000,0,0);}
.mb4{transform:matrix(0.246829,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246829,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246829,0.000000,0.000000,0.250000,0,0);}
.m85{transform:matrix(0.247079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247079,0.000000,0.000000,0.250000,0,0);}
.m99{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);}
.mc9{transform:matrix(0.247737,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247737,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247737,0.000000,0.000000,0.250000,0,0);}
.m7f{transform:matrix(0.247739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247739,0.000000,0.000000,0.250000,0,0);}
.ma8{transform:matrix(0.247779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247779,0.000000,0.000000,0.250000,0,0);}
.mb7{transform:matrix(0.247795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247795,0.000000,0.000000,0.250000,0,0);}
.mb8{transform:matrix(0.247797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247797,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.247864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247864,0.000000,0.000000,0.250000,0,0);}
.mae{transform:matrix(0.247939,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247939,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247939,0.000000,0.000000,0.250000,0,0);}
.m9d{transform:matrix(0.247976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247976,0.000000,0.000000,0.250000,0,0);}
.ma2{transform:matrix(0.247982,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247982,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247982,0.000000,0.000000,0.250000,0,0);}
.ma1{transform:matrix(0.247984,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247984,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247984,0.000000,0.000000,0.250000,0,0);}
.m31{transform:matrix(0.248033,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248033,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248033,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.248074,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248074,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248074,0.000000,0.000000,0.250000,0,0);}
.m8d{transform:matrix(0.248089,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248089,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248089,0.000000,0.000000,0.250000,0,0);}
.m8e{transform:matrix(0.248091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248091,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.248114,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248114,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248114,0.000000,0.000000,0.250000,0,0);}
.m94{transform:matrix(0.248192,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248192,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248192,0.000000,0.000000,0.250000,0,0);}
.m3f{transform:matrix(0.248205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248205,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.248217,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248217,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248217,0.000000,0.000000,0.250000,0,0);}
.mbd{transform:matrix(0.248282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248282,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.248364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248364,0.000000,0.000000,0.250000,0,0);}
.m84{transform:matrix(0.248476,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248476,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248476,0.000000,0.000000,0.250000,0,0);}
.mca{transform:matrix(0.248508,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248508,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248508,0.000000,0.000000,0.250000,0,0);}
.mb6{transform:matrix(0.248600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248600,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.248617,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248617,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248617,0.000000,0.000000,0.250000,0,0);}
.m9f{transform:matrix(0.248626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248626,0.000000,0.000000,0.250000,0,0);}
.mbe{transform:matrix(0.248647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248647,0.000000,0.000000,0.250000,0,0);}
.mbf{transform:matrix(0.248649,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248649,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248649,0.000000,0.000000,0.250000,0,0);}
.m90{transform:matrix(0.248661,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248661,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248661,0.000000,0.000000,0.250000,0,0);}
.ma7{transform:matrix(0.248689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248689,0.000000,0.000000,0.250000,0,0);}
.mc1{transform:matrix(0.248866,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248866,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248866,0.000000,0.000000,0.250000,0,0);}
.mc6{transform:matrix(0.248900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248900,0.000000,0.000000,0.250000,0,0);}
.mc7{transform:matrix(0.248902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248902,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.248931,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248931,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248931,0.000000,0.000000,0.250000,0,0);}
.mbc{transform:matrix(0.248950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248950,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.248960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248960,0.000000,0.000000,0.250000,0,0);}
.m83{transform:matrix(0.248966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248966,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.248976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248976,0.000000,0.000000,0.250000,0,0);}
.mcb{transform:matrix(0.248976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248976,0.000000,0.000000,0.250000,0,0);}
.m7e{transform:matrix(0.248987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248987,0.000000,0.000000,0.250000,0,0);}
.m98{transform:matrix(0.249016,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249016,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249016,0.000000,0.000000,0.250000,0,0);}
.mac{transform:matrix(0.249045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249045,0.000000,0.000000,0.250000,0,0);}
.m5e{transform:matrix(0.249107,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249107,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249107,0.000000,0.000000,0.250000,0,0);}
.mb2{transform:matrix(0.249118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249118,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.249129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249129,0.000000,0.000000,0.250000,0,0);}
.m79{transform:matrix(0.249147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249147,0.000000,0.000000,0.250000,0,0);}
.m37{transform:matrix(0.249198,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249198,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249198,0.000000,0.000000,0.250000,0,0);}
.ma5{transform:matrix(0.249211,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249211,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249211,0.000000,0.000000,0.250000,0,0);}
.m57{transform:matrix(0.249219,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249219,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249219,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.249221,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249221,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249221,0.000000,0.000000,0.250000,0,0);}
.m6b{transform:matrix(0.249243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249243,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.249288,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249288,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249288,0.000000,0.000000,0.250000,0,0);}
.m5b{transform:matrix(0.249350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249350,0.000000,0.000000,0.250000,0,0);}
.m50{transform:matrix(0.249450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249450,0.000000,0.000000,0.250000,0,0);}
.m58{transform:matrix(0.249490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249490,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m87{transform:matrix(0.249508,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249508,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249508,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.249589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249589,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.249597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249597,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.249600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249600,0.000000,0.000000,0.250000,0,0);}
.mcc{transform:matrix(0.249605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249605,0.000000,0.000000,0.250000,0,0);}
.md2{transform:matrix(0.249608,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249608,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249608,0.000000,0.000000,0.250000,0,0);}
.m9e{transform:matrix(0.249621,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249621,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249621,0.000000,0.000000,0.250000,0,0);}
.mc2{transform:matrix(0.249642,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249642,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249642,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.249645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249645,0.000000,0.000000,0.250000,0,0);}
.m7c{transform:matrix(0.249674,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249674,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249674,0.000000,0.000000,0.250000,0,0);}
.m7b{transform:matrix(0.249676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249676,0.000000,0.000000,0.250000,0,0);}
.mad{transform:matrix(0.249684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249684,0.000000,0.000000,0.250000,0,0);}
.m7d{transform:matrix(0.249708,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249708,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249708,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.249764,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249764,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249764,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.249793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249793,0.000000,0.000000,0.250000,0,0);}
.mb3{transform:matrix(0.249808,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249808,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249808,0.000000,0.000000,0.250000,0,0);}
.mab{transform:matrix(0.249824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249824,0.000000,0.000000,0.250000,0,0);}
.m51{transform:matrix(0.249826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249826,0.000000,0.000000,0.250000,0,0);}
.m78{transform:matrix(0.249829,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249829,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249829,0.000000,0.000000,0.250000,0,0);}
.m30{transform:matrix(0.249843,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249843,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249843,0.000000,0.000000,0.250000,0,0);}
.m95{transform:matrix(0.249855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249855,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.249871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249871,0.000000,0.000000,0.250000,0,0);}
.m86{transform:matrix(0.249882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249882,0.000000,0.000000,0.250000,0,0);}
.mce{transform:matrix(0.249916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249916,0.000000,0.000000,0.250000,0,0);}
.m6a{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);}
.ma0{transform:matrix(0.249939,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249939,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249939,0.000000,0.000000,0.250000,0,0);}
.m9b{transform:matrix(0.249972,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249972,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249972,0.000000,0.000000,0.250000,0,0);}
.m9a{transform:matrix(0.249974,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249974,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249974,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);}
.mb9{transform:matrix(0.250005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250005,0.000000,0.000000,0.250000,0,0);}
.mc4{transform:matrix(0.250050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250050,0.000000,0.000000,0.250000,0,0);}
.m55{transform:matrix(0.250069,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250069,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250069,0.000000,0.000000,0.250000,0,0);}
.m40{transform:matrix(0.250074,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250074,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250074,0.000000,0.000000,0.250000,0,0);}
.m38{transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);}
.m4f{transform:matrix(0.250148,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250148,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250148,0.000000,0.000000,0.250000,0,0);}
.m52{transform:matrix(0.250193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250193,0.000000,0.000000,0.250000,0,0);}
.m39{transform:matrix(0.250276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250276,0.000000,0.000000,0.250000,0,0);}
.m92{transform:matrix(0.250350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250350,0.000000,0.000000,0.250000,0,0);}
.mc0{transform:matrix(0.250387,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250387,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250387,0.000000,0.000000,0.250000,0,0);}
.m6f{transform:matrix(0.250455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250455,0.000000,0.000000,0.250000,0,0);}
.m8f{transform:matrix(0.250461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250461,0.000000,0.000000,0.250000,0,0);}
.m7a{transform:matrix(0.250482,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250482,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250482,0.000000,0.000000,0.250000,0,0);}
.m72{transform:matrix(0.250505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250505,0.000000,0.000000,0.250000,0,0);}
.m71{transform:matrix(0.250508,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250508,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250508,0.000000,0.000000,0.250000,0,0);}
.m70{transform:matrix(0.250510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250510,0.000000,0.000000,0.250000,0,0);}
.mc8{transform:matrix(0.250516,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250516,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250516,0.000000,0.000000,0.250000,0,0);}
.m9c{transform:matrix(0.250526,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250526,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250526,0.000000,0.000000,0.250000,0,0);}
.m8a{transform:matrix(0.250534,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250534,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250534,0.000000,0.000000,0.250000,0,0);}
.m60{transform:matrix(0.250545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250545,0.000000,0.000000,0.250000,0,0);}
.m44{transform:matrix(0.250560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250560,0.000000,0.000000,0.250000,0,0);}
.m73{transform:matrix(0.250561,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250561,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250561,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.250574,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250574,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250574,0.000000,0.000000,0.250000,0,0);}
.maa{transform:matrix(0.250784,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250784,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250784,0.000000,0.000000,0.250000,0,0);}
.mcf{transform:matrix(0.250803,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250803,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250803,0.000000,0.000000,0.250000,0,0);}
.m29{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);}
.m5f{transform:matrix(0.250833,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250833,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250833,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.250860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250860,0.000000,0.000000,0.250000,0,0);}
.m53{transform:matrix(0.250924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250924,0.000000,0.000000,0.250000,0,0);}
.m54{transform:matrix(0.250938,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250938,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250938,0.000000,0.000000,0.250000,0,0);}
.mb1{transform:matrix(0.250945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250945,0.000000,0.000000,0.250000,0,0);}
.m5c{transform:matrix(0.251064,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251064,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251064,0.000000,0.000000,0.250000,0,0);}
.m75{transform:matrix(0.251087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251087,0.000000,0.000000,0.250000,0,0);}
.m5a{transform:matrix(0.251121,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251121,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251121,0.000000,0.000000,0.250000,0,0);}
.m96{transform:matrix(0.251205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251205,0.000000,0.000000,0.250000,0,0);}
.m97{transform:matrix(0.251207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251207,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.251236,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251236,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251236,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.251300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251300,0.000000,0.000000,0.250000,0,0);}
.m4e{transform:matrix(0.251479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251479,0.000000,0.000000,0.250000,0,0);}
.mcd{transform:matrix(0.251489,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251489,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251489,0.000000,0.000000,0.250000,0,0);}
.m66{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.251562,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251562,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251562,0.000000,0.000000,0.250000,0,0);}
.m45{transform:matrix(0.251576,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251576,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251576,0.000000,0.000000,0.250000,0,0);}
.m8c{transform:matrix(0.251611,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251611,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251611,0.000000,0.000000,0.250000,0,0);}
.mb5{transform:matrix(0.251616,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251616,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251616,0.000000,0.000000,0.250000,0,0);}
.m59{transform:matrix(0.251621,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251621,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251621,0.000000,0.000000,0.250000,0,0);}
.ma4{transform:matrix(0.251624,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251624,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251624,0.000000,0.000000,0.250000,0,0);}
.m48{transform:matrix(0.251643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251643,0.000000,0.000000,0.250000,0,0);}
.m68{transform:matrix(0.251671,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251671,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251671,0.000000,0.000000,0.250000,0,0);}
.m56{transform:matrix(0.251676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251676,0.000000,0.000000,0.250000,0,0);}
.m4b{transform:matrix(0.251752,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251752,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251752,0.000000,0.000000,0.250000,0,0);}
.ma3{transform:matrix(0.251766,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251766,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251766,0.000000,0.000000,0.250000,0,0);}
.ma6{transform:matrix(0.251853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251853,0.000000,0.000000,0.250000,0,0);}
.m47{transform:matrix(0.251952,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251952,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251952,0.000000,0.000000,0.250000,0,0);}
.m6c{transform:matrix(0.251964,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251964,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251964,0.000000,0.000000,0.250000,0,0);}
.m6e{transform:matrix(0.252062,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252062,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252062,0.000000,0.000000,0.250000,0,0);}
.mc5{transform:matrix(0.252103,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252103,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252103,0.000000,0.000000,0.250000,0,0);}
.m89{transform:matrix(0.252119,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252119,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252119,0.000000,0.000000,0.250000,0,0);}
.m88{transform:matrix(0.252121,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252121,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252121,0.000000,0.000000,0.250000,0,0);}
.m65{transform:matrix(0.252124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252124,0.000000,0.000000,0.250000,0,0);}
.m4d{transform:matrix(0.252133,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252133,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252133,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.252140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252140,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.252174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252174,0.000000,0.000000,0.250000,0,0);}
.m6d{transform:matrix(0.252340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252340,0.000000,0.000000,0.250000,0,0);}
.m41{transform:matrix(0.252345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252345,0.000000,0.000000,0.250000,0,0);}
.m43{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m82{transform:matrix(0.252603,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252603,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252603,0.000000,0.000000,0.250000,0,0);}
.m63{transform:matrix(0.252631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252631,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.252648,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252648,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252648,0.000000,0.000000,0.250000,0,0);}
.m8b{transform:matrix(0.252892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252892,0.000000,0.000000,0.250000,0,0);}
.m42{transform:matrix(0.252914,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252914,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252914,0.000000,0.000000,0.250000,0,0);}
.m4a{transform:matrix(0.252936,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252936,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252936,0.000000,0.000000,0.250000,0,0);}
.m46{transform:matrix(0.253005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253005,0.000000,0.000000,0.250000,0,0);}
.m64{transform:matrix(0.253155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253155,0.000000,0.000000,0.250000,0,0);}
.m80{transform:matrix(0.253247,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253247,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253247,0.000000,0.000000,0.250000,0,0);}
.m81{transform:matrix(0.253249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253249,0.000000,0.000000,0.250000,0,0);}
.m91{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.253336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253336,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.253343,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253343,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253343,0.000000,0.000000,0.250000,0,0);}
.m93{transform:matrix(0.253374,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253374,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253374,0.000000,0.000000,0.250000,0,0);}
.maf{transform:matrix(0.253508,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253508,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253508,0.000000,0.000000,0.250000,0,0);}
.m5d{transform:matrix(0.253576,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253576,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253576,0.000000,0.000000,0.250000,0,0);}
.m4c{transform:matrix(0.253624,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253624,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253624,0.000000,0.000000,0.250000,0,0);}
.ma9{transform:matrix(0.253661,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253661,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253661,0.000000,0.000000,0.250000,0,0);}
.m62{transform:matrix(0.253848,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253848,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253848,0.000000,0.000000,0.250000,0,0);}
.m61{transform:matrix(0.254014,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254014,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254014,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.254138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254138,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.254293,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254293,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254293,0.000000,0.000000,0.250000,0,0);}
.m69{transform:matrix(0.254340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254340,0.000000,0.000000,0.250000,0,0);}
.m49{transform:matrix(0.254414,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254414,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254414,0.000000,0.000000,0.250000,0,0);}
.m67{transform:matrix(0.254981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254981,0.000000,0.000000,0.250000,0,0);}
.m32{transform:matrix(0.257871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257871,0.000000,0.000000,0.250000,0,0);}
.m33{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.260057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260057,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.260410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260410,0.000000,0.000000,0.250000,0,0);}
.m35{transform:matrix(0.260633,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260633,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260633,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.260700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260700,0.000000,0.000000,0.250000,0,0);}
.mba{transform:matrix(0.261024,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261024,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261024,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.261479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261479,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.261512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261512,0.000000,0.000000,0.250000,0,0);}
.m34{transform:matrix(0.261593,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261593,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261593,0.000000,0.000000,0.250000,0,0);}
.mbb{transform:matrix(0.261916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261916,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.262086,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262086,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262086,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.263212,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263212,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263212,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.264257,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264257,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264257,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.264398,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264398,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264398,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.266902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266902,0.000000,0.000000,0.250000,0,0);}
.m1{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:9.583800px;}
.v2{vertical-align:11.400000px;}
.ls1a{letter-spacing:-1.764000px;}
.ls46{letter-spacing:-1.710000px;}
.ls22{letter-spacing:-1.008000px;}
.ls57{letter-spacing:-0.969000px;}
.ls44{letter-spacing:-0.912000px;}
.ls43{letter-spacing:-0.798000px;}
.ls56{letter-spacing:-0.741000px;}
.ls4a{letter-spacing:-0.684000px;}
.ls55{letter-spacing:-0.570000px;}
.ls15{letter-spacing:-0.567000px;}
.ls48{letter-spacing:-0.513000px;}
.ls17{letter-spacing:-0.504000px;}
.ls1c{letter-spacing:-0.456000px;}
.ls16{letter-spacing:-0.441000px;}
.ls4c{letter-spacing:-0.399000px;}
.ls13{letter-spacing:-0.378000px;}
.ls49{letter-spacing:-0.342000px;}
.ls4b{letter-spacing:-0.285000px;}
.ls19{letter-spacing:-0.252000px;}
.ls47{letter-spacing:-0.228000px;}
.ls14{letter-spacing:-0.189000px;}
.ls1b{letter-spacing:-0.171000px;}
.ls18{letter-spacing:-0.126000px;}
.ls8{letter-spacing:-0.114000px;}
.ls7{letter-spacing:-0.084000px;}
.ls1d{letter-spacing:-0.063000px;}
.ls45{letter-spacing:-0.057000px;}
.ls3{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.001800px;}
.ls2{letter-spacing:0.009600px;}
.ls1{letter-spacing:0.010200px;}
.ls52{letter-spacing:0.011223px;}
.ls27{letter-spacing:0.031500px;}
.ls42{letter-spacing:0.057000px;}
.ls10{letter-spacing:0.063000px;}
.ls40{letter-spacing:0.085500px;}
.ls3f{letter-spacing:0.104178px;}
.ls2c{letter-spacing:0.114000px;}
.ls2b{letter-spacing:0.115425px;}
.ls38{letter-spacing:0.119700px;}
.ls37{letter-spacing:0.120558px;}
.ls21{letter-spacing:0.126000px;}
.ls23{letter-spacing:0.144122px;}
.ls4f{letter-spacing:0.171000px;}
.lse{letter-spacing:0.189000px;}
.ls50{letter-spacing:0.213660px;}
.ls51{letter-spacing:0.213750px;}
.ls2f{letter-spacing:0.228000px;}
.ls2d{letter-spacing:0.246808px;}
.ls2e{letter-spacing:0.247950px;}
.ls25{letter-spacing:0.252000px;}
.ls5{letter-spacing:0.285000px;}
.ls1f{letter-spacing:0.315000px;}
.ls3b{letter-spacing:0.342000px;}
.ls3e{letter-spacing:0.363375px;}
.ls3d{letter-spacing:0.364690px;}
.ls3a{letter-spacing:0.364752px;}
.ls20{letter-spacing:0.378000px;}
.ls4d{letter-spacing:0.398613px;}
.ls4e{letter-spacing:0.399000px;}
.lsf{letter-spacing:0.441000px;}
.ls36{letter-spacing:0.456000px;}
.ls24{letter-spacing:0.472500px;}
.ls54{letter-spacing:0.474525px;}
.ls53{letter-spacing:0.475574px;}
.ls35{letter-spacing:0.478800px;}
.ls29{letter-spacing:0.504000px;}
.ls6{letter-spacing:0.513000px;}
.ls11{letter-spacing:0.535500px;}
.ls2a{letter-spacing:0.567000px;}
.ls34{letter-spacing:0.570000px;}
.ls33{letter-spacing:0.585675px;}
.ls32{letter-spacing:0.586944px;}
.ls39{letter-spacing:0.627000px;}
.ls28{letter-spacing:0.630000px;}
.ls12{letter-spacing:0.661500px;}
.ls26{letter-spacing:0.693000px;}
.ls30{letter-spacing:0.731025px;}
.ls41{letter-spacing:0.731120px;}
.ls31{letter-spacing:0.741000px;}
.ls4{letter-spacing:0.798000px;}
.lsa{letter-spacing:0.819000px;}
.ls9{letter-spacing:0.882000px;}
.lsb{letter-spacing:1.008000px;}
.lsd{letter-spacing:1.039500px;}
.lsc{letter-spacing:1.071000px;}
.ls1e{letter-spacing:1.890000px;}
.ls3c{letter-spacing:3.949266px;}
.sc_{text-shadow:none;}
.sc2{text-shadow:-0.015em 0 rgb(0,255,0),0 0.015em rgb(0,255,0),0.015em 0 rgb(0,255,0),0 -0.015em  rgb(0,255,0);}
.sc1{text-shadow:-0.015em 0 rgb(255,242,0),0 0.015em rgb(255,242,0),0.015em 0 rgb(255,242,0),0 -0.015em  rgb(255,242,0);}
.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;}
.sc2{-webkit-text-stroke:0.015em rgb(0,255,0);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(255,242,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws19{word-spacing:-16.632000px;}
.ws67{word-spacing:-16.222500px;}
.ws1b{word-spacing:-16.191000px;}
.ws77{word-spacing:-16.002000px;}
.ws79{word-spacing:-15.939000px;}
.ws4e{word-spacing:-15.876000px;}
.ws87{word-spacing:-15.781500px;}
.ws1a{word-spacing:-15.750000px;}
.ws68{word-spacing:-15.687000px;}
.ws78{word-spacing:-15.624000px;}
.ws5f{word-spacing:-15.561000px;}
.ws66{word-spacing:-15.498000px;}
.ws88{word-spacing:-15.435000px;}
.ws1d{word-spacing:-15.309000px;}
.ws4d{word-spacing:-15.246000px;}
.wsbc{word-spacing:-14.592000px;}
.wsba{word-spacing:-14.478000px;}
.ws8a{word-spacing:-14.364000px;}
.ws93{word-spacing:-14.307000px;}
.ws9{word-spacing:-14.250000px;}
.wsb6{word-spacing:-14.193000px;}
.wsa{word-spacing:-14.178000px;}
.ws1c{word-spacing:-13.986000px;}
.wsb7{word-spacing:-13.794000px;}
.ws94{word-spacing:-13.566000px;}
.wsb{word-spacing:-13.500000px;}
.ws3{word-spacing:-13.344000px;}
.ws8c{word-spacing:-12.540000px;}
.ws1e{word-spacing:-11.812500px;}
.ws0{word-spacing:-11.676000px;}
.ws8d{word-spacing:-11.418525px;}
.ws8e{word-spacing:-11.273175px;}
.ws8f{word-spacing:-11.166300px;}
.wsbb{word-spacing:-11.162025px;}
.ws5{word-spacing:-11.088000px;}
.ws91{word-spacing:-11.050875px;}
.ws4{word-spacing:-11.004000px;}
.ws8b{word-spacing:-10.935450px;}
.wsb9{word-spacing:-10.901250px;}
.ws90{word-spacing:-10.807200px;}
.ws89{word-spacing:-10.802925px;}
.ws92{word-spacing:-10.773000px;}
.ws1f{word-spacing:-10.687500px;}
.ws8{word-spacing:-10.008000px;}
.wsb8{word-spacing:-9.975000px;}
.ws2{word-spacing:-9.340800px;}
.ws1{word-spacing:-8.757000px;}
.ws7{word-spacing:-6.426000px;}
.wsb4{word-spacing:-6.327000px;}
.ws3f{word-spacing:-5.418000px;}
.ws40{word-spacing:-4.410000px;}
.ws2b{word-spacing:-3.969000px;}
.ws24{word-spacing:-3.906000px;}
.ws52{word-spacing:-3.843000px;}
.ws9b{word-spacing:-3.780000px;}
.ws51{word-spacing:-3.717000px;}
.wscb{word-spacing:-3.648000px;}
.ws3b{word-spacing:-3.591000px;}
.ws13{word-spacing:-3.534000px;}
.ws6b{word-spacing:-3.465000px;}
.wsc4{word-spacing:-3.420000px;}
.wsa4{word-spacing:-3.306000px;}
.ws37{word-spacing:-3.276000px;}
.ws2d{word-spacing:-3.087000px;}
.ws61{word-spacing:-3.024000px;}
.ws9f{word-spacing:-3.021000px;}
.wsc9{word-spacing:-2.964000px;}
.ws62{word-spacing:-2.961000px;}
.ws59{word-spacing:-2.898000px;}
.wsd4{word-spacing:-2.850000px;}
.ws14{word-spacing:-2.793000px;}
.ws27{word-spacing:-2.772000px;}
.wsac{word-spacing:-2.736000px;}
.ws5d{word-spacing:-2.709000px;}
.ws36{word-spacing:-2.646000px;}
.ws39{word-spacing:-2.583000px;}
.wsa7{word-spacing:-2.508000px;}
.ws25{word-spacing:-2.457000px;}
.ws4c{word-spacing:-2.394000px;}
.ws12{word-spacing:-2.337000px;}
.wsd1{word-spacing:-2.280000px;}
.ws26{word-spacing:-2.268000px;}
.ws7f{word-spacing:-2.142000px;}
.wsa5{word-spacing:-2.109000px;}
.ws2c{word-spacing:-2.079000px;}
.ws2f{word-spacing:-1.953000px;}
.ws3e{word-spacing:-1.890000px;}
.wscf{word-spacing:-1.881000px;}
.ws9d{word-spacing:-1.767000px;}
.ws43{word-spacing:-1.701000px;}
.wsca{word-spacing:-1.653000px;}
.ws72{word-spacing:-1.638000px;}
.ws47{word-spacing:-1.596000px;}
.ws7e{word-spacing:-1.575000px;}
.ws46{word-spacing:-1.539000px;}
.ws60{word-spacing:-1.512000px;}
.wsa3{word-spacing:-1.425000px;}
.wsa0{word-spacing:-1.368000px;}
.ws86{word-spacing:-1.344000px;}
.ws9c{word-spacing:-1.323000px;}
.ws70{word-spacing:-1.260000px;}
.wsa2{word-spacing:-1.197000px;}
.ws63{word-spacing:-1.134000px;}
.wsbf{word-spacing:-1.083000px;}
.ws56{word-spacing:-1.071000px;}
.wsc2{word-spacing:-1.026000px;}
.ws45{word-spacing:-0.945000px;}
.wsaf{word-spacing:-0.912000px;}
.ws5b{word-spacing:-0.882000px;}
.wsc8{word-spacing:-0.798000px;}
.ws85{word-spacing:-0.756000px;}
.ws7b{word-spacing:-0.693000px;}
.ws20{word-spacing:-0.630000px;}
.wsa6{word-spacing:-0.570000px;}
.ws6a{word-spacing:-0.567000px;}
.ws49{word-spacing:-0.513000px;}
.wsa1{word-spacing:-0.456000px;}
.ws31{word-spacing:-0.441000px;}
.wscc{word-spacing:-0.399000px;}
.ws81{word-spacing:-0.378000px;}
.wsab{word-spacing:-0.342000px;}
.ws2a{word-spacing:-0.252000px;}
.ws83{word-spacing:-0.189000px;}
.ws65{word-spacing:-0.144122px;}
.ws6e{word-spacing:-0.126000px;}
.wsd3{word-spacing:-0.114000px;}
.ws96{word-spacing:-0.063000px;}
.ws6{word-spacing:0.000000px;}
.wsb1{word-spacing:0.057000px;}
.ws75{word-spacing:0.063000px;}
.wsc{word-spacing:0.084000px;}
.wsb3{word-spacing:0.114000px;}
.ws38{word-spacing:0.126000px;}
.ws11{word-spacing:0.171000px;}
.ws3d{word-spacing:0.189000px;}
.wsaa{word-spacing:0.228000px;}
.ws5e{word-spacing:0.252000px;}
.wsc7{word-spacing:0.285000px;}
.ws32{word-spacing:0.315000px;}
.ws82{word-spacing:0.378000px;}
.wsb0{word-spacing:0.399000px;}
.ws41{word-spacing:0.441000px;}
.wscd{word-spacing:0.456000px;}
.ws44{word-spacing:0.504000px;}
.ws97{word-spacing:0.567000px;}
.wsbd{word-spacing:0.570000px;}
.ws99{word-spacing:0.630000px;}
.ws35{word-spacing:0.756000px;}
.ws9e{word-spacing:0.798000px;}
.ws50{word-spacing:0.819000px;}
.wsd{word-spacing:0.855000px;}
.ws6f{word-spacing:0.882000px;}
.wsc3{word-spacing:0.912000px;}
.ws64{word-spacing:0.945000px;}
.wsce{word-spacing:0.969000px;}
.wsa8{word-spacing:1.026000px;}
.ws95{word-spacing:1.071000px;}
.ws54{word-spacing:1.134000px;}
.ws48{word-spacing:1.197000px;}
.wsad{word-spacing:1.254000px;}
.ws55{word-spacing:1.260000px;}
.ws5a{word-spacing:1.323000px;}
.ws3a{word-spacing:1.386000px;}
.wsae{word-spacing:1.425000px;}
.ws9a{word-spacing:1.449000px;}
.wsf{word-spacing:1.482000px;}
.ws10{word-spacing:1.539000px;}
.ws57{word-spacing:1.575000px;}
.ws69{word-spacing:1.596000px;}
.ws34{word-spacing:1.701000px;}
.ws4a{word-spacing:1.710000px;}
.ws98{word-spacing:1.764000px;}
.wsc0{word-spacing:1.881000px;}
.ws4b{word-spacing:1.890000px;}
.ws17{word-spacing:1.938000px;}
.wsd2{word-spacing:1.995000px;}
.ws42{word-spacing:2.016000px;}
.ws28{word-spacing:2.079000px;}
.ws71{word-spacing:2.142000px;}
.wsc5{word-spacing:2.223000px;}
.ws22{word-spacing:2.268000px;}
.wsd0{word-spacing:2.280000px;}
.ws30{word-spacing:2.331000px;}
.ws74{word-spacing:2.394000px;}
.ws6c{word-spacing:2.520000px;}
.wsc6{word-spacing:2.565000px;}
.wsb2{word-spacing:2.679000px;}
.ws84{word-spacing:2.709000px;}
.wsb5{word-spacing:2.736000px;}
.ws23{word-spacing:2.772000px;}
.ws5c{word-spacing:2.835000px;}
.wsbe{word-spacing:2.850000px;}
.ws58{word-spacing:2.898000px;}
.wsa9{word-spacing:2.907000px;}
.ws29{word-spacing:3.024000px;}
.ws15{word-spacing:3.078000px;}
.ws7d{word-spacing:3.087000px;}
.wsc1{word-spacing:3.135000px;}
.ws7a{word-spacing:3.213000px;}
.ws3c{word-spacing:3.276000px;}
.ws16{word-spacing:3.306000px;}
.ws80{word-spacing:3.339000px;}
.ws76{word-spacing:3.465000px;}
.ws7c{word-spacing:3.528000px;}
.wse{word-spacing:3.534000px;}
.ws33{word-spacing:3.591000px;}
.ws53{word-spacing:3.654000px;}
.ws73{word-spacing:3.717000px;}
.ws6d{word-spacing:3.780000px;}
.ws2e{word-spacing:3.843000px;}
.ws21{word-spacing:3.906000px;}
.ws4f{word-spacing:3.969000px;}
.ws18{word-spacing:2335.780800px;}
._8{margin-left:-15.732000px;}
._9{margin-left:-14.178000px;}
._a{margin-left:-10.645200px;}
._d{margin-left:-9.111900px;}
._b{margin-left:-7.499100px;}
._1{margin-left:-6.430500px;}
._6{margin-left:-5.422200px;}
._7{margin-left:-3.981600px;}
._0{margin-left:-2.902200px;}
._2{margin-left:-1.524600px;}
._3{width:1.029000px;}
._5{width:2.356200px;}
._c{width:3.645900px;}
._1b{width:4.753800px;}
._10{width:146.547000px;}
._f{width:201.780000px;}
._16{width:204.402000px;}
._19{width:219.051000px;}
._14{width:226.233000px;}
._e{width:235.281600px;}
._18{width:264.309000px;}
._13{width:266.403600px;}
._15{width:267.501000px;}
._1a{width:268.812000px;}
._12{width:279.813000px;}
._17{width:282.720000px;}
._11{width:283.974000px;}
._4{width:372.864600px;}
.fc3{color:transparent;}
.fc1{color:rgb(35,80,169);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(35,31,32);}
.fs1{font-size:31.500000px;}
.fs3{font-size:33.600000px;}
.fs5{font-size:36.000000px;}
.fs14{font-size:39.900000px;}
.fs0{font-size:42.000000px;}
.fsc{font-size:42.750000px;}
.fsb{font-size:47.250000px;}
.fs2{font-size:48.000000px;}
.fs12{font-size:48.040254px;}
.fsf{font-size:48.040330px;}
.fs13{font-size:48.040538px;}
.fsd{font-size:48.040800px;}
.fs10{font-size:48.040903px;}
.fs11{font-size:48.040914px;}
.fs7{font-size:51.000000px;}
.fs9{font-size:54.000000px;}
.fs6{font-size:57.000000px;}
.fs4{font-size:60.000000px;}
.fse{font-size:60.051000px;}
.fsa{font-size:63.000000px;}
.fs8{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y63{bottom:53.145300px;}
.y29{bottom:53.318100px;}
.y28{bottom:53.318250px;}
.y3e{bottom:126.022350px;}
.y170{bottom:126.033900px;}
.y10a{bottom:126.040050px;}
.yfd{bottom:126.043050px;}
.ybe{bottom:126.046050px;}
.y99{bottom:126.047550px;}
.y27{bottom:126.310500px;}
.y59{bottom:126.484050px;}
.y12c{bottom:126.576150px;}
.y26{bottom:138.312000px;}
.y58{bottom:138.485550px;}
.y16f{bottom:141.039150px;}
.y12b{bottom:141.458100px;}
.y3d{bottom:142.523850px;}
.y107{bottom:143.979300px;}
.yfc{bottom:143.982300px;}
.yd5{bottom:143.983800px;}
.y98{bottom:143.985300px;}
.y57{bottom:150.487050px;}
.y16e{bottom:156.055350px;}
.y12a{bottom:156.339900px;}
.y3c{bottom:159.025350px;}
.y25{bottom:159.417000px;}
.y106{bottom:161.918550px;}
.yc9{bottom:161.921550px;}
.y97{bottom:161.923050px;}
.y56{bottom:162.488550px;}
.y16d{bottom:171.060600px;}
.y129{bottom:171.221700px;}
.y24{bottom:171.418500px;}
.y55{bottom:174.490050px;}
.y3b{bottom:175.526850px;}
.y1eb{bottom:178.960650px;}
.yd4{bottom:179.857800px;}
.y96{bottom:179.860800px;}
.y23{bottom:183.420000px;}
.y16c{bottom:186.071250px;}
.y128{bottom:186.103650px;}
.y54{bottom:186.491550px;}
.y3a{bottom:192.028350px;}
.y1ea{bottom:193.837650px;}
.y22{bottom:195.421500px;}
.yd1{bottom:197.795550px;}
.y95{bottom:197.797050px;}
.ybd{bottom:197.798550px;}
.y53{bottom:198.493050px;}
.y127{bottom:200.990400px;}
.y16b{bottom:201.082050px;}
.y39{bottom:208.528350px;}
.y1e9{bottom:208.714650px;}
.y52{bottom:210.494550px;}
.yd0{bottom:215.734800px;}
.y94{bottom:215.736300px;}
.y126{bottom:215.867400px;}
.y16a{bottom:216.092850px;}
.y21{bottom:220.180500px;}
.y51{bottom:222.496050px;}
.y38{bottom:225.026850px;}
.y125{bottom:230.749350px;}
.y169{bottom:231.109050px;}
.y20{bottom:232.780500px;}
.y93{bottom:233.674050px;}
.y37{bottom:241.528350px;}
.y1f{bottom:245.380500px;}
.y124{bottom:245.631300px;}
.y168{bottom:246.114300px;}
.ybc{bottom:250.557300px;}
.yc8{bottom:251.607300px;}
.y92{bottom:251.611650px;}
.y1e8{bottom:253.359900px;}
.y1ab{bottom:253.716150px;}
.y36{bottom:258.028350px;}
.y123{bottom:260.513100px;}
.y167{bottom:261.125100px;}
.ybb{bottom:265.439250px;}
.y1e{bottom:266.485500px;}
.y1e7{bottom:268.241700px;}
.y1aa{bottom:268.598100px;}
.y105{bottom:269.543550px;}
.yc7{bottom:269.546550px;}
.y91{bottom:269.548050px;}
.ycf{bottom:269.549550px;}
.yd3{bottom:271.028700px;}
.y35{bottom:274.525950px;}
.y122{bottom:275.395050px;}
.y166{bottom:276.141300px;}
.y1d{bottom:279.085500px;}
.yba{bottom:280.326000px;}
.y1e6{bottom:283.123500px;}
.y1a9{bottom:283.479900px;}
.yd2{bottom:283.786200px;}
.y104{bottom:287.482800px;}
.yc6{bottom:287.485800px;}
.y90{bottom:287.487300px;}
.y121{bottom:290.276850px;}
.y165{bottom:291.146550px;}
.yb9{bottom:295.203000px;}
.y1e5{bottom:298.010400px;}
.y1a8{bottom:298.361850px;}
.y120{bottom:305.158800px;}
.y100{bottom:305.420550px;}
.y103{bottom:305.422050px;}
.y8f{bottom:305.425050px;}
.y164{bottom:306.157200px;}
.y34{bottom:308.654700px;}
.y62{bottom:309.625050px;}
.y1e4{bottom:312.887400px;}
.y1a7{bottom:313.243800px;}
.y163{bottom:321.168000px;}
.y61{bottom:321.626550px;}
.yb8{bottom:321.990450px;}
.yff{bottom:323.359800px;}
.yfb{bottom:323.361300px;}
.y8e{bottom:323.362800px;}
.y33{bottom:325.156200px;}
.y1e3{bottom:327.769200px;}
.y1a6{bottom:328.125600px;}
.y60{bottom:333.628050px;}
.y162{bottom:336.178650px;}
.yb7{bottom:336.872250px;}
.yce{bottom:341.288550px;}
.y11f{bottom:341.296050px;}
.y8d{bottom:341.299050px;}
.yc5{bottom:341.300550px;}
.y32{bottom:341.657700px;}
.y1e2{bottom:342.651150px;}
.y1a5{bottom:343.007550px;}
.y5f{bottom:345.629550px;}
.y161{bottom:351.189450px;}
.yb6{bottom:351.754200px;}
.y1e1{bottom:357.532950px;}
.y5e{bottom:357.631050px;}
.y1a4{bottom:357.889500px;}
.y31{bottom:358.159200px;}
.y8c{bottom:359.238300px;}
.y160{bottom:366.200100px;}
.y5d{bottom:369.632550px;}
.y1e0{bottom:372.414900px;}
.y1a3{bottom:372.771300px;}
.y30{bottom:374.659200px;}
.yc4{bottom:377.174550px;}
.y8b{bottom:377.176050px;}
.yb5{bottom:378.541650px;}
.y15f{bottom:381.216450px;}
.y5c{bottom:381.634050px;}
.y1df{bottom:387.296850px;}
.y1a2{bottom:387.653250px;}
.y2f{bottom:391.157700px;}
.yb4{bottom:393.423450px;}
.y5b{bottom:393.635550px;}
.ycd{bottom:395.106300px;}
.y102{bottom:395.112300px;}
.y8a{bottom:395.113800px;}
.y15e{bottom:396.221700px;}
.y1de{bottom:402.178650px;}
.y1a1{bottom:402.535050px;}
.y5a{bottom:405.637050px;}
.y2e{bottom:407.659200px;}
.yb3{bottom:408.310200px;}
.y15d{bottom:411.243300px;}
.ycc{bottom:413.045550px;}
.y89{bottom:413.051550px;}
.y1dd{bottom:417.060600px;}
.y1a0{bottom:417.417000px;}
.yb2{bottom:423.187200px;}
.y15c{bottom:426.248550px;}
.yfe{bottom:430.978800px;}
.ycb{bottom:430.984800px;}
.y88{bottom:430.989300px;}
.y1dc{bottom:431.942400px;}
.y19f{bottom:432.303750px;}
.y15b{bottom:441.253800px;}
.y2d{bottom:441.790200px;}
.ye7{bottom:441.936004px;}
.y1db{bottom:446.824350px;}
.y19e{bottom:447.180750px;}
.yca{bottom:448.924050px;}
.yc3{bottom:448.925550px;}
.y87{bottom:448.927050px;}
.y2c{bottom:453.040200px;}
.yb1{bottom:454.226550px;}
.y15a{bottom:456.264600px;}
.y1da{bottom:461.706300px;}
.y19d{bottom:462.062550px;}
.y2b{bottom:464.292000px;}
.y86{bottom:466.863300px;}
.yc2{bottom:466.864800px;}
.yf0{bottom:469.223179px;}
.y159{bottom:471.275250px;}
.y1d9{bottom:476.588100px;}
.yfa{bottom:476.800350px;}
.y19c{bottom:476.944500px;}
.ye9{bottom:478.410982px;}
.yef{bottom:484.632265px;}
.yb0{bottom:484.795050px;}
.y85{bottom:484.802550px;}
.yf8{bottom:485.332650px;}
.y158{bottom:486.286050px;}
.yf9{bottom:489.557850px;}
.yf7{bottom:490.930800px;}
.y1d8{bottom:491.470050px;}
.y19b{bottom:491.826450px;}
.yf6{bottom:495.635850px;}
.y2a{bottom:496.800000px;}
.yf5{bottom:497.020050px;}
.y1c{bottom:498.306450px;}
.yf4{bottom:498.488250px;}
.yf3{bottom:500.293566px;}
.y157{bottom:501.296700px;}
.yf1{bottom:501.962984px;}
.yaf{bottom:502.734300px;}
.y84{bottom:502.740300px;}
.y1d7{bottom:506.352000px;}
.y19a{bottom:506.708250px;}
.ydf{bottom:508.868849px;}
.y1b{bottom:514.554450px;}
.ye6{bottom:515.114153px;}
.y156{bottom:516.307500px;}
.ye8{bottom:516.879652px;}
.y83{bottom:520.676550px;}
.y101{bottom:520.678050px;}
.y1d6{bottom:521.233800px;}
.y199{bottom:521.590200px;}
.y1a{bottom:526.554450px;}
.y155{bottom:531.318300px;}
.ye3{bottom:534.738820px;}
.yee{bottom:534.750830px;}
.y1d5{bottom:536.115750px;}
.y198{bottom:536.472150px;}
.yc1{bottom:537.201900px;}
.yae{bottom:538.612800px;}
.y82{bottom:538.615800px;}
.y109{bottom:538.617300px;}
.yde{bottom:538.678165px;}
.ye0{bottom:541.044175px;}
.y154{bottom:546.328950px;}
.yc0{bottom:549.959400px;}
.y1d4{bottom:550.997550px;}
.y197{bottom:551.353950px;}
.y19{bottom:555.562500px;}
.y81{bottom:556.553550px;}
.y108{bottom:556.556550px;}
.y153{bottom:561.339750px;}
.y1d3{bottom:565.889250px;}
.y196{bottom:566.235900px;}
.yec{bottom:566.553839px;}
.ydd{bottom:566.746003px;}
.ye5{bottom:570.517205px;}
.y18{bottom:571.810500px;}
.ydc{bottom:574.120265px;}
.y80{bottom:574.489800px;}
.y11e{bottom:574.491300px;}
.y152{bottom:576.350400px;}
.yeb{bottom:578.552029px;}
.y1d2{bottom:580.766250px;}
.y195{bottom:581.117700px;}
.ye4{bottom:581.182263px;}
.ye1{bottom:581.482518px;}
.yed{bottom:584.569139px;}
.y151{bottom:591.366750px;}
.y4e{bottom:591.589950px;}
.yad{bottom:592.423050px;}
.y7f{bottom:592.429050px;}
.y1d1{bottom:595.643250px;}
.y194{bottom:596.004600px;}
.yea{bottom:597.528145px;}
.ye2{bottom:598.753186px;}
.y17{bottom:600.818250px;}
.y150{bottom:606.372000px;}
.yac{bottom:610.362300px;}
.y7e{bottom:610.366800px;}
.y1d0{bottom:610.530000px;}
.y193{bottom:610.881600px;}
.ydb{bottom:611.039620px;}
.y10c{bottom:611.800350px;}
.y16{bottom:617.070300px;}
.y14f{bottom:621.388200px;}
.y10b{bottom:624.557850px;}
.y1cf{bottom:625.407000px;}
.y192{bottom:625.763400px;}
.yab{bottom:628.301550px;}
.y11d{bottom:628.303050px;}
.y7d{bottom:628.304550px;}
.y4d{bottom:629.099550px;}
.yf2{bottom:632.321695px;}
.y15{bottom:633.326250px;}
.y14e{bottom:636.393450px;}
.y1ce{bottom:640.288950px;}
.y191{bottom:640.655100px;}
.y4c{bottom:645.598050px;}
.y7c{bottom:646.242300px;}
.y14{bottom:649.578300px;}
.y14d{bottom:651.404100px;}
.y1cd{bottom:655.180650px;}
.y190{bottom:655.532100px;}
.y4b{bottom:662.096550px;}
.y7b{bottom:664.180050px;}
.y13{bottom:665.826300px;}
.y14c{bottom:666.414900px;}
.y1cc{bottom:670.057650px;}
.y18f{bottom:670.409100px;}
.y4a{bottom:678.301800px;}
.y14b{bottom:681.425700px;}
.y11c{bottom:682.116300px;}
.y1cb{bottom:684.934650px;}
.y18e{bottom:685.291050px;}
.yda{bottom:688.493400px;}
.y49{bottom:694.501800px;}
.y14a{bottom:696.441900px;}
.y1ca{bottom:699.816450px;}
.y7a{bottom:700.048050px;}
.y11b{bottom:700.055550px;}
.y18d{bottom:700.172850px;}
.yd9{bottom:705.923250px;}
.y149{bottom:711.447150px;}
.yaa{bottom:712.720350px;}
.y1c9{bottom:714.708150px;}
.y18c{bottom:715.059750px;}
.y11a{bottom:717.993300px;}
.y48{bottom:726.394500px;}
.y148{bottom:726.457800px;}
.ya9{bottom:727.597350px;}
.y1c8{bottom:729.585150px;}
.y18b{bottom:729.936750px;}
.y119{bottom:735.929550px;}
.y147{bottom:741.468600px;}
.ya8{bottom:742.474350px;}
.y47{bottom:742.893000px;}
.y1c7{bottom:744.462150px;}
.y18a{bottom:744.823350px;}
.y79{bottom:753.865800px;}
.y118{bottom:753.868800px;}
.y146{bottom:756.479250px;}
.ya7{bottom:757.351350px;}
.y1c6{bottom:759.344100px;}
.y46{bottom:759.391500px;}
.y189{bottom:759.700350px;}
.y145{bottom:771.490050px;}
.y78{bottom:771.805050px;}
.y117{bottom:771.806550px;}
.ya6{bottom:772.228350px;}
.y1c5{bottom:774.225900px;}
.y188{bottom:774.582300px;}
.y45{bottom:775.891500px;}
.y144{bottom:786.500850px;}
.ya5{bottom:787.105350px;}
.y1c4{bottom:789.107850px;}
.y187{bottom:789.464100px;}
.y77{bottom:789.744300px;}
.y143{bottom:801.511500px;}
.ya4{bottom:801.982350px;}
.y1c3{bottom:803.989800px;}
.y186{bottom:804.346050px;}
.y76{bottom:807.682050px;}
.y44{bottom:807.780600px;}
.y142{bottom:816.522150px;}
.ya3{bottom:816.859350px;}
.y1c2{bottom:818.871600px;}
.y185{bottom:819.232800px;}
.y43{bottom:824.279100px;}
.y75{bottom:825.616800px;}
.y116{bottom:825.619800px;}
.y141{bottom:831.532950px;}
.ya2{bottom:831.736350px;}
.y1c1{bottom:833.753550px;}
.y184{bottom:834.109800px;}
.y12{bottom:839.679600px;}
.y42{bottom:840.777600px;}
.y115{bottom:843.554550px;}
.y74{bottom:843.556050px;}
.y140{bottom:846.543750px;}
.ya1{bottom:846.613350px;}
.y1c0{bottom:848.635500px;}
.y183{bottom:848.991750px;}
.y11{bottom:854.688450px;}
.y41{bottom:856.982850px;}
.y114{bottom:861.493800px;}
.y73{bottom:861.495300px;}
.y13f{bottom:861.554400px;}
.y1bf{bottom:863.517300px;}
.y182{bottom:863.873700px;}
.y40{bottom:873.481350px;}
.y13e{bottom:876.576150px;}
.y10{bottom:878.187450px;}
.y1be{bottom:878.409000px;}
.y181{bottom:878.755500px;}
.y72{bottom:879.433050px;}
.y3f{bottom:889.981350px;}
.yf{bottom:890.787450px;}
.y13d{bottom:891.581400px;}
.y1bd{bottom:893.286000px;}
.y180{bottom:893.637450px;}
.y71{bottom:897.369300px;}
.y113{bottom:897.370800px;}
.ye{bottom:903.387450px;}
.ya0{bottom:906.548100px;}
.y13c{bottom:906.586650px;}
.y1bc{bottom:908.163000px;}
.y17f{bottom:908.519400px;}
.y112{bottom:915.299550px;}
.y70{bottom:915.308550px;}
.yd{bottom:915.987450px;}
.y9f{bottom:921.425100px;}
.y13b{bottom:921.597450px;}
.y1bb{bottom:923.044800px;}
.y17e{bottom:923.401200px;}
.yc{bottom:928.587450px;}
.y111{bottom:933.238800px;}
.y6f{bottom:933.246300px;}
.y9e{bottom:936.302100px;}
.y13a{bottom:936.608100px;}
.y1ba{bottom:937.926750px;}
.y17d{bottom:938.283150px;}
.yb{bottom:941.187450px;}
.y110{bottom:951.178050px;}
.y6e{bottom:951.179550px;}
.y9d{bottom:951.184050px;}
.y139{bottom:951.618900px;}
.y1b9{bottom:952.808550px;}
.y17c{bottom:953.165100px;}
.ya{bottom:953.787450px;}
.y9{bottom:966.387450px;}
.y138{bottom:966.635100px;}
.y1b8{bottom:967.690500px;}
.y17b{bottom:968.046900px;}
.y10f{bottom:969.117300px;}
.y6d{bottom:969.118800px;}
.y8{bottom:978.987450px;}
.y137{bottom:981.640350px;}
.y1b7{bottom:982.572450px;}
.y17a{bottom:982.928700px;}
.y10e{bottom:987.056550px;}
.y6c{bottom:987.058050px;}
.y9c{bottom:987.059550px;}
.y50{bottom:989.007900px;}
.y7{bottom:991.587450px;}
.y136{bottom:996.651000px;}
.y1b6{bottom:997.454250px;}
.y179{bottom:997.810650px;}
.y10d{bottom:1004.995800px;}
.y6b{bottom:1004.997300px;}
.y6{bottom:1008.438450px;}
.y135{bottom:1011.661800px;}
.y1b5{bottom:1012.336200px;}
.y178{bottom:1012.692600px;}
.y4f{bottom:1019.007900px;}
.y6a{bottom:1022.935050px;}
.y134{bottom:1026.672600px;}
.y1b4{bottom:1027.218000px;}
.y177{bottom:1027.589100px;}
.y5{bottom:1033.794300px;}
.y69{bottom:1040.871300px;}
.y9b{bottom:1040.872800px;}
.y133{bottom:1041.694200px;}
.y1b3{bottom:1042.099950px;}
.y176{bottom:1042.466100px;}
.y132{bottom:1056.699450px;}
.y1b2{bottom:1056.981750px;}
.y175{bottom:1057.343100px;}
.y68{bottom:1058.810550px;}
.y4{bottom:1059.150300px;}
.y131{bottom:1071.704700px;}
.y1b1{bottom:1071.863700px;}
.y174{bottom:1072.220100px;}
.y67{bottom:1076.748300px;}
.y3{bottom:1084.504500px;}
.y130{bottom:1086.715500px;}
.y1af{bottom:1086.745650px;}
.y173{bottom:1087.102050px;}
.y1b0{bottom:1089.595650px;}
.y66{bottom:1094.685900px;}
.yd7{bottom:1100.922000px;}
.y1ae{bottom:1101.627450px;}
.y12f{bottom:1101.726150px;}
.y172{bottom:1101.983850px;}
.y9a{bottom:1112.623800px;}
.yd6{bottom:1112.932200px;}
.y1ad{bottom:1116.509400px;}
.y12e{bottom:1116.742500px;}
.y171{bottom:1116.865800px;}
.y2{bottom:1118.367000px;}
.yd8{bottom:1123.650750px;}
.y65{bottom:1130.561550px;}
.y1ac{bottom:1131.391350px;}
.y12d{bottom:1131.747750px;}
.y1{bottom:1135.219500px;}
.y64{bottom:1202.244000px;}
.ybf{bottom:1202.244150px;}
.h9{height:30.702000px;}
.h3{height:32.340000px;}
.hc{height:33.372000px;}
.h1f{height:35.117425px;}
.h1c{height:35.117482px;}
.h20{height:35.117633px;}
.h1a{height:35.117825px;}
.h1d{height:35.117900px;}
.h1e{height:35.117908px;}
.h25{height:36.380250px;}
.h26{height:36.588300px;}
.h7{height:36.960000px;}
.h14{height:38.514000px;}
.h2{height:38.934000px;}
.h5{height:38.940000px;}
.h6{height:38.940600px;}
.h4{height:38.947200px;}
.ha{height:39.942000px;}
.h8{height:40.782000px;}
.h1b{height:43.897281px;}
.h19{height:44.016000px;}
.h10{height:47.277000px;}
.h12{height:48.222000px;}
.h24{height:48.507000px;}
.h13{height:49.518000px;}
.hd{height:50.901000px;}
.he{height:52.269000px;}
.h17{height:53.613000px;}
.hb{height:55.020000px;}
.hf{height:55.200000px;}
.h23{height:56.259000px;}
.h15{height:57.771000px;}
.h16{height:57.777000px;}
.h22{height:57.783000px;}
.h21{height:57.789000px;}
.h18{height:57.795000px;}
.h11{height:75.360000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:75.153600px;}
.x30{left:79.960500px;}
.x5a{left:82.287300px;}
.x22{left:83.475900px;}
.x2f{left:85.192950px;}
.x23{left:87.217650px;}
.x4d{left:91.417350px;}
.x2{left:96.413400px;}
.x5b{left:98.217450px;}
.x4e{left:105.606150px;}
.x3{left:109.169400px;}
.x5{left:116.929200px;}
.x4c{left:119.996400px;}
.x15{left:129.685050px;}
.x5c{left:136.439400px;}
.x1b{left:160.052700px;}
.x1f{left:162.023700px;}
.x1d{left:166.100700px;}
.x1e{left:170.825700px;}
.x16{left:175.159200px;}
.x1c{left:183.394200px;}
.x21{left:185.864700px;}
.x18{left:188.105700px;}
.x5d{left:193.167150px;}
.x20{left:196.961700px;}
.x1a{left:202.604700px;}
.x19{left:205.520700px;}
.x17{left:209.597700px;}
.x2e{left:216.225949px;}
.x2d{left:237.892350px;}
.x36{left:264.265954px;}
.x7{left:275.317950px;}
.x35{left:276.948725px;}
.x34{left:286.256630px;}
.x48{left:294.783000px;}
.x49{left:301.100250px;}
.x4a{left:308.012100px;}
.x4b{left:310.746000px;}
.x9{left:340.362000px;}
.x44{left:351.255833px;}
.x33{left:365.896267px;}
.x14{left:367.786650px;}
.x37{left:371.793275px;}
.xb{left:372.912750px;}
.x39{left:374.147274px;}
.xc{left:376.444500px;}
.x6{left:380.842950px;}
.x38{left:393.771941px;}
.x3e{left:408.076089px;}
.x43{left:423.256982px;}
.x42{left:430.799387px;}
.x25{left:457.086600px;}
.x45{left:463.971560px;}
.x55{left:465.701850px;}
.x59{left:466.820100px;}
.x31{left:468.787650px;}
.x24{left:469.842450px;}
.xa{left:471.840000px;}
.x3d{left:473.976056px;}
.x63{left:479.739450px;}
.x62{left:492.610050px;}
.x13{left:496.648800px;}
.x3c{left:500.818853px;}
.x57{left:503.408550px;}
.x27{left:509.014050px;}
.x41{left:512.961166px;}
.x2c{left:516.456750px;}
.x56{left:521.855700px;}
.x60{left:524.584650px;}
.xf{left:533.647050px;}
.x29{left:535.110450px;}
.x26{left:538.608300px;}
.x28{left:545.191800px;}
.x61{left:548.312550px;}
.x4f{left:549.421800px;}
.x2a{left:557.343600px;}
.x50{left:567.564450px;}
.x46{left:571.967278px;}
.x3b{left:581.767601px;}
.x58{left:588.816450px;}
.x32{left:591.928231px;}
.x51{left:596.326650px;}
.x40{left:604.430849px;}
.x2b{left:606.924600px;}
.x52{left:638.196900px;}
.x47{left:642.959570px;}
.x11{left:652.183800px;}
.x3a{left:659.293442px;}
.x8{left:664.905600px;}
.x10{left:672.583800px;}
.x64{left:675.062250px;}
.x53{left:679.626600px;}
.xd{left:689.533500px;}
.xe{left:718.785150px;}
.x54{left:723.938100px;}
.x3f{left:728.147919px;}
.x12{left:741.824850px;}
.x5e{left:767.065950px;}
.x5f{left:770.893200px;}
.x4{left:786.802350px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:8.518933pt;}
.v2{vertical-align:10.133333pt;}
.ls1a{letter-spacing:-1.568000pt;}
.ls46{letter-spacing:-1.520000pt;}
.ls22{letter-spacing:-0.896000pt;}
.ls57{letter-spacing:-0.861333pt;}
.ls44{letter-spacing:-0.810667pt;}
.ls43{letter-spacing:-0.709333pt;}
.ls56{letter-spacing:-0.658667pt;}
.ls4a{letter-spacing:-0.608000pt;}
.ls55{letter-spacing:-0.506667pt;}
.ls15{letter-spacing:-0.504000pt;}
.ls48{letter-spacing:-0.456000pt;}
.ls17{letter-spacing:-0.448000pt;}
.ls1c{letter-spacing:-0.405333pt;}
.ls16{letter-spacing:-0.392000pt;}
.ls4c{letter-spacing:-0.354667pt;}
.ls13{letter-spacing:-0.336000pt;}
.ls49{letter-spacing:-0.304000pt;}
.ls4b{letter-spacing:-0.253333pt;}
.ls19{letter-spacing:-0.224000pt;}
.ls47{letter-spacing:-0.202667pt;}
.ls14{letter-spacing:-0.168000pt;}
.ls1b{letter-spacing:-0.152000pt;}
.ls18{letter-spacing:-0.112000pt;}
.ls8{letter-spacing:-0.101333pt;}
.ls7{letter-spacing:-0.074667pt;}
.ls1d{letter-spacing:-0.056000pt;}
.ls45{letter-spacing:-0.050667pt;}
.ls3{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.001600pt;}
.ls2{letter-spacing:0.008533pt;}
.ls1{letter-spacing:0.009067pt;}
.ls52{letter-spacing:0.009976pt;}
.ls27{letter-spacing:0.028000pt;}
.ls42{letter-spacing:0.050667pt;}
.ls10{letter-spacing:0.056000pt;}
.ls40{letter-spacing:0.076000pt;}
.ls3f{letter-spacing:0.092603pt;}
.ls2c{letter-spacing:0.101333pt;}
.ls2b{letter-spacing:0.102600pt;}
.ls38{letter-spacing:0.106400pt;}
.ls37{letter-spacing:0.107162pt;}
.ls21{letter-spacing:0.112000pt;}
.ls23{letter-spacing:0.128109pt;}
.ls4f{letter-spacing:0.152000pt;}
.lse{letter-spacing:0.168000pt;}
.ls50{letter-spacing:0.189920pt;}
.ls51{letter-spacing:0.190000pt;}
.ls2f{letter-spacing:0.202667pt;}
.ls2d{letter-spacing:0.219385pt;}
.ls2e{letter-spacing:0.220400pt;}
.ls25{letter-spacing:0.224000pt;}
.ls5{letter-spacing:0.253333pt;}
.ls1f{letter-spacing:0.280000pt;}
.ls3b{letter-spacing:0.304000pt;}
.ls3e{letter-spacing:0.323000pt;}
.ls3d{letter-spacing:0.324169pt;}
.ls3a{letter-spacing:0.324224pt;}
.ls20{letter-spacing:0.336000pt;}
.ls4d{letter-spacing:0.354323pt;}
.ls4e{letter-spacing:0.354667pt;}
.lsf{letter-spacing:0.392000pt;}
.ls36{letter-spacing:0.405333pt;}
.ls24{letter-spacing:0.420000pt;}
.ls54{letter-spacing:0.421800pt;}
.ls53{letter-spacing:0.422732pt;}
.ls35{letter-spacing:0.425600pt;}
.ls29{letter-spacing:0.448000pt;}
.ls6{letter-spacing:0.456000pt;}
.ls11{letter-spacing:0.476000pt;}
.ls2a{letter-spacing:0.504000pt;}
.ls34{letter-spacing:0.506667pt;}
.ls33{letter-spacing:0.520600pt;}
.ls32{letter-spacing:0.521728pt;}
.ls39{letter-spacing:0.557333pt;}
.ls28{letter-spacing:0.560000pt;}
.ls12{letter-spacing:0.588000pt;}
.ls26{letter-spacing:0.616000pt;}
.ls30{letter-spacing:0.649800pt;}
.ls41{letter-spacing:0.649885pt;}
.ls31{letter-spacing:0.658667pt;}
.ls4{letter-spacing:0.709333pt;}
.lsa{letter-spacing:0.728000pt;}
.ls9{letter-spacing:0.784000pt;}
.lsb{letter-spacing:0.896000pt;}
.lsd{letter-spacing:0.924000pt;}
.lsc{letter-spacing:0.952000pt;}
.ls1e{letter-spacing:1.680000pt;}
.ls3c{letter-spacing:3.510458pt;}
.ws19{word-spacing:-14.784000pt;}
.ws67{word-spacing:-14.420000pt;}
.ws1b{word-spacing:-14.392000pt;}
.ws77{word-spacing:-14.224000pt;}
.ws79{word-spacing:-14.168000pt;}
.ws4e{word-spacing:-14.112000pt;}
.ws87{word-spacing:-14.028000pt;}
.ws1a{word-spacing:-14.000000pt;}
.ws68{word-spacing:-13.944000pt;}
.ws78{word-spacing:-13.888000pt;}
.ws5f{word-spacing:-13.832000pt;}
.ws66{word-spacing:-13.776000pt;}
.ws88{word-spacing:-13.720000pt;}
.ws1d{word-spacing:-13.608000pt;}
.ws4d{word-spacing:-13.552000pt;}
.wsbc{word-spacing:-12.970667pt;}
.wsba{word-spacing:-12.869333pt;}
.ws8a{word-spacing:-12.768000pt;}
.ws93{word-spacing:-12.717333pt;}
.ws9{word-spacing:-12.666667pt;}
.wsb6{word-spacing:-12.616000pt;}
.wsa{word-spacing:-12.602667pt;}
.ws1c{word-spacing:-12.432000pt;}
.wsb7{word-spacing:-12.261333pt;}
.ws94{word-spacing:-12.058667pt;}
.wsb{word-spacing:-12.000000pt;}
.ws3{word-spacing:-11.861333pt;}
.ws8c{word-spacing:-11.146667pt;}
.ws1e{word-spacing:-10.500000pt;}
.ws0{word-spacing:-10.378667pt;}
.ws8d{word-spacing:-10.149800pt;}
.ws8e{word-spacing:-10.020600pt;}
.ws8f{word-spacing:-9.925600pt;}
.wsbb{word-spacing:-9.921800pt;}
.ws5{word-spacing:-9.856000pt;}
.ws91{word-spacing:-9.823000pt;}
.ws4{word-spacing:-9.781333pt;}
.ws8b{word-spacing:-9.720400pt;}
.wsb9{word-spacing:-9.690000pt;}
.ws90{word-spacing:-9.606400pt;}
.ws89{word-spacing:-9.602600pt;}
.ws92{word-spacing:-9.576000pt;}
.ws1f{word-spacing:-9.500000pt;}
.ws8{word-spacing:-8.896000pt;}
.wsb8{word-spacing:-8.866667pt;}
.ws2{word-spacing:-8.302933pt;}
.ws1{word-spacing:-7.784000pt;}
.ws7{word-spacing:-5.712000pt;}
.wsb4{word-spacing:-5.624000pt;}
.ws3f{word-spacing:-4.816000pt;}
.ws40{word-spacing:-3.920000pt;}
.ws2b{word-spacing:-3.528000pt;}
.ws24{word-spacing:-3.472000pt;}
.ws52{word-spacing:-3.416000pt;}
.ws9b{word-spacing:-3.360000pt;}
.ws51{word-spacing:-3.304000pt;}
.wscb{word-spacing:-3.242667pt;}
.ws3b{word-spacing:-3.192000pt;}
.ws13{word-spacing:-3.141333pt;}
.ws6b{word-spacing:-3.080000pt;}
.wsc4{word-spacing:-3.040000pt;}
.wsa4{word-spacing:-2.938667pt;}
.ws37{word-spacing:-2.912000pt;}
.ws2d{word-spacing:-2.744000pt;}
.ws61{word-spacing:-2.688000pt;}
.ws9f{word-spacing:-2.685333pt;}
.wsc9{word-spacing:-2.634667pt;}
.ws62{word-spacing:-2.632000pt;}
.ws59{word-spacing:-2.576000pt;}
.wsd4{word-spacing:-2.533333pt;}
.ws14{word-spacing:-2.482667pt;}
.ws27{word-spacing:-2.464000pt;}
.wsac{word-spacing:-2.432000pt;}
.ws5d{word-spacing:-2.408000pt;}
.ws36{word-spacing:-2.352000pt;}
.ws39{word-spacing:-2.296000pt;}
.wsa7{word-spacing:-2.229333pt;}
.ws25{word-spacing:-2.184000pt;}
.ws4c{word-spacing:-2.128000pt;}
.ws12{word-spacing:-2.077333pt;}
.wsd1{word-spacing:-2.026667pt;}
.ws26{word-spacing:-2.016000pt;}
.ws7f{word-spacing:-1.904000pt;}
.wsa5{word-spacing:-1.874667pt;}
.ws2c{word-spacing:-1.848000pt;}
.ws2f{word-spacing:-1.736000pt;}
.ws3e{word-spacing:-1.680000pt;}
.wscf{word-spacing:-1.672000pt;}
.ws9d{word-spacing:-1.570667pt;}
.ws43{word-spacing:-1.512000pt;}
.wsca{word-spacing:-1.469333pt;}
.ws72{word-spacing:-1.456000pt;}
.ws47{word-spacing:-1.418667pt;}
.ws7e{word-spacing:-1.400000pt;}
.ws46{word-spacing:-1.368000pt;}
.ws60{word-spacing:-1.344000pt;}
.wsa3{word-spacing:-1.266667pt;}
.wsa0{word-spacing:-1.216000pt;}
.ws86{word-spacing:-1.194667pt;}
.ws9c{word-spacing:-1.176000pt;}
.ws70{word-spacing:-1.120000pt;}
.wsa2{word-spacing:-1.064000pt;}
.ws63{word-spacing:-1.008000pt;}
.wsbf{word-spacing:-0.962667pt;}
.ws56{word-spacing:-0.952000pt;}
.wsc2{word-spacing:-0.912000pt;}
.ws45{word-spacing:-0.840000pt;}
.wsaf{word-spacing:-0.810667pt;}
.ws5b{word-spacing:-0.784000pt;}
.wsc8{word-spacing:-0.709333pt;}
.ws85{word-spacing:-0.672000pt;}
.ws7b{word-spacing:-0.616000pt;}
.ws20{word-spacing:-0.560000pt;}
.wsa6{word-spacing:-0.506667pt;}
.ws6a{word-spacing:-0.504000pt;}
.ws49{word-spacing:-0.456000pt;}
.wsa1{word-spacing:-0.405333pt;}
.ws31{word-spacing:-0.392000pt;}
.wscc{word-spacing:-0.354667pt;}
.ws81{word-spacing:-0.336000pt;}
.wsab{word-spacing:-0.304000pt;}
.ws2a{word-spacing:-0.224000pt;}
.ws83{word-spacing:-0.168000pt;}
.ws65{word-spacing:-0.128109pt;}
.ws6e{word-spacing:-0.112000pt;}
.wsd3{word-spacing:-0.101333pt;}
.ws96{word-spacing:-0.056000pt;}
.ws6{word-spacing:0.000000pt;}
.wsb1{word-spacing:0.050667pt;}
.ws75{word-spacing:0.056000pt;}
.wsc{word-spacing:0.074667pt;}
.wsb3{word-spacing:0.101333pt;}
.ws38{word-spacing:0.112000pt;}
.ws11{word-spacing:0.152000pt;}
.ws3d{word-spacing:0.168000pt;}
.wsaa{word-spacing:0.202667pt;}
.ws5e{word-spacing:0.224000pt;}
.wsc7{word-spacing:0.253333pt;}
.ws32{word-spacing:0.280000pt;}
.ws82{word-spacing:0.336000pt;}
.wsb0{word-spacing:0.354667pt;}
.ws41{word-spacing:0.392000pt;}
.wscd{word-spacing:0.405333pt;}
.ws44{word-spacing:0.448000pt;}
.ws97{word-spacing:0.504000pt;}
.wsbd{word-spacing:0.506667pt;}
.ws99{word-spacing:0.560000pt;}
.ws35{word-spacing:0.672000pt;}
.ws9e{word-spacing:0.709333pt;}
.ws50{word-spacing:0.728000pt;}
.wsd{word-spacing:0.760000pt;}
.ws6f{word-spacing:0.784000pt;}
.wsc3{word-spacing:0.810667pt;}
.ws64{word-spacing:0.840000pt;}
.wsce{word-spacing:0.861333pt;}
.wsa8{word-spacing:0.912000pt;}
.ws95{word-spacing:0.952000pt;}
.ws54{word-spacing:1.008000pt;}
.ws48{word-spacing:1.064000pt;}
.wsad{word-spacing:1.114667pt;}
.ws55{word-spacing:1.120000pt;}
.ws5a{word-spacing:1.176000pt;}
.ws3a{word-spacing:1.232000pt;}
.wsae{word-spacing:1.266667pt;}
.ws9a{word-spacing:1.288000pt;}
.wsf{word-spacing:1.317333pt;}
.ws10{word-spacing:1.368000pt;}
.ws57{word-spacing:1.400000pt;}
.ws69{word-spacing:1.418667pt;}
.ws34{word-spacing:1.512000pt;}
.ws4a{word-spacing:1.520000pt;}
.ws98{word-spacing:1.568000pt;}
.wsc0{word-spacing:1.672000pt;}
.ws4b{word-spacing:1.680000pt;}
.ws17{word-spacing:1.722667pt;}
.wsd2{word-spacing:1.773333pt;}
.ws42{word-spacing:1.792000pt;}
.ws28{word-spacing:1.848000pt;}
.ws71{word-spacing:1.904000pt;}
.wsc5{word-spacing:1.976000pt;}
.ws22{word-spacing:2.016000pt;}
.wsd0{word-spacing:2.026667pt;}
.ws30{word-spacing:2.072000pt;}
.ws74{word-spacing:2.128000pt;}
.ws6c{word-spacing:2.240000pt;}
.wsc6{word-spacing:2.280000pt;}
.wsb2{word-spacing:2.381333pt;}
.ws84{word-spacing:2.408000pt;}
.wsb5{word-spacing:2.432000pt;}
.ws23{word-spacing:2.464000pt;}
.ws5c{word-spacing:2.520000pt;}
.wsbe{word-spacing:2.533333pt;}
.ws58{word-spacing:2.576000pt;}
.wsa9{word-spacing:2.584000pt;}
.ws29{word-spacing:2.688000pt;}
.ws15{word-spacing:2.736000pt;}
.ws7d{word-spacing:2.744000pt;}
.wsc1{word-spacing:2.786667pt;}
.ws7a{word-spacing:2.856000pt;}
.ws3c{word-spacing:2.912000pt;}
.ws16{word-spacing:2.938667pt;}
.ws80{word-spacing:2.968000pt;}
.ws76{word-spacing:3.080000pt;}
.ws7c{word-spacing:3.136000pt;}
.wse{word-spacing:3.141333pt;}
.ws33{word-spacing:3.192000pt;}
.ws53{word-spacing:3.248000pt;}
.ws73{word-spacing:3.304000pt;}
.ws6d{word-spacing:3.360000pt;}
.ws2e{word-spacing:3.416000pt;}
.ws21{word-spacing:3.472000pt;}
.ws4f{word-spacing:3.528000pt;}
.ws18{word-spacing:2076.249600pt;}
._8{margin-left:-13.984000pt;}
._9{margin-left:-12.602667pt;}
._a{margin-left:-9.462400pt;}
._d{margin-left:-8.099467pt;}
._b{margin-left:-6.665867pt;}
._1{margin-left:-5.716000pt;}
._6{margin-left:-4.819733pt;}
._7{margin-left:-3.539200pt;}
._0{margin-left:-2.579733pt;}
._2{margin-left:-1.355200pt;}
._3{width:0.914667pt;}
._5{width:2.094400pt;}
._c{width:3.240800pt;}
._1b{width:4.225600pt;}
._10{width:130.264000pt;}
._f{width:179.360000pt;}
._16{width:181.690667pt;}
._19{width:194.712000pt;}
._14{width:201.096000pt;}
._e{width:209.139200pt;}
._18{width:234.941333pt;}
._13{width:236.803200pt;}
._15{width:237.778667pt;}
._1a{width:238.944000pt;}
._12{width:248.722667pt;}
._17{width:251.306667pt;}
._11{width:252.421333pt;}
._4{width:331.435200pt;}
.fs1{font-size:28.000000pt;}
.fs3{font-size:29.866667pt;}
.fs5{font-size:32.000000pt;}
.fs14{font-size:35.466667pt;}
.fs0{font-size:37.333333pt;}
.fsc{font-size:38.000000pt;}
.fsb{font-size:42.000000pt;}
.fs2{font-size:42.666667pt;}
.fs12{font-size:42.702448pt;}
.fsf{font-size:42.702516pt;}
.fs13{font-size:42.702700pt;}
.fsd{font-size:42.702933pt;}
.fs10{font-size:42.703025pt;}
.fs11{font-size:42.703034pt;}
.fs7{font-size:45.333333pt;}
.fs9{font-size:48.000000pt;}
.fs6{font-size:50.666667pt;}
.fs4{font-size:53.333333pt;}
.fse{font-size:53.378667pt;}
.fsa{font-size:56.000000pt;}
.fs8{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y63{bottom:47.240267pt;}
.y29{bottom:47.393867pt;}
.y28{bottom:47.394000pt;}
.y3e{bottom:112.019867pt;}
.y170{bottom:112.030133pt;}
.y10a{bottom:112.035600pt;}
.yfd{bottom:112.038267pt;}
.ybe{bottom:112.040933pt;}
.y99{bottom:112.042267pt;}
.y27{bottom:112.276000pt;}
.y59{bottom:112.430267pt;}
.y12c{bottom:112.512133pt;}
.y26{bottom:122.944000pt;}
.y58{bottom:123.098267pt;}
.y16f{bottom:125.368133pt;}
.y12b{bottom:125.740533pt;}
.y3d{bottom:126.687867pt;}
.y107{bottom:127.981600pt;}
.yfc{bottom:127.984267pt;}
.yd5{bottom:127.985600pt;}
.y98{bottom:127.986933pt;}
.y57{bottom:133.766267pt;}
.y16e{bottom:138.715867pt;}
.y12a{bottom:138.968800pt;}
.y3c{bottom:141.355867pt;}
.y25{bottom:141.704000pt;}
.y106{bottom:143.927600pt;}
.yc9{bottom:143.930267pt;}
.y97{bottom:143.931600pt;}
.y56{bottom:144.434267pt;}
.y16d{bottom:152.053867pt;}
.y129{bottom:152.197067pt;}
.y24{bottom:152.372000pt;}
.y55{bottom:155.102267pt;}
.y3b{bottom:156.023867pt;}
.y1eb{bottom:159.076133pt;}
.yd4{bottom:159.873600pt;}
.y96{bottom:159.876267pt;}
.y23{bottom:163.040000pt;}
.y16c{bottom:165.396667pt;}
.y128{bottom:165.425467pt;}
.y54{bottom:165.770267pt;}
.y3a{bottom:170.691867pt;}
.y1ea{bottom:172.300133pt;}
.y22{bottom:173.708000pt;}
.yd1{bottom:175.818267pt;}
.y95{bottom:175.819600pt;}
.ybd{bottom:175.820933pt;}
.y53{bottom:176.438267pt;}
.y127{bottom:178.658133pt;}
.y16b{bottom:178.739600pt;}
.y39{bottom:185.358533pt;}
.y1e9{bottom:185.524133pt;}
.y52{bottom:187.106267pt;}
.yd0{bottom:191.764267pt;}
.y94{bottom:191.765600pt;}
.y126{bottom:191.882133pt;}
.y16a{bottom:192.082533pt;}
.y21{bottom:195.716000pt;}
.y51{bottom:197.774267pt;}
.y38{bottom:200.023867pt;}
.y125{bottom:205.110533pt;}
.y169{bottom:205.430267pt;}
.y20{bottom:206.916000pt;}
.y93{bottom:207.710267pt;}
.y37{bottom:214.691867pt;}
.y1f{bottom:218.116000pt;}
.y124{bottom:218.338933pt;}
.y168{bottom:218.768267pt;}
.ybc{bottom:222.717600pt;}
.yc8{bottom:223.650933pt;}
.y92{bottom:223.654800pt;}
.y1e8{bottom:225.208800pt;}
.y1ab{bottom:225.525467pt;}
.y36{bottom:229.358533pt;}
.y123{bottom:231.567200pt;}
.y167{bottom:232.111200pt;}
.ybb{bottom:235.946000pt;}
.y1e{bottom:236.876000pt;}
.y1e7{bottom:238.437067pt;}
.y1aa{bottom:238.753867pt;}
.y105{bottom:239.594267pt;}
.yc7{bottom:239.596933pt;}
.y91{bottom:239.598267pt;}
.ycf{bottom:239.599600pt;}
.yd3{bottom:240.914400pt;}
.y35{bottom:244.023067pt;}
.y122{bottom:244.795600pt;}
.y166{bottom:245.458933pt;}
.y1d{bottom:248.076000pt;}
.yba{bottom:249.178667pt;}
.y1e6{bottom:251.665333pt;}
.y1a9{bottom:251.982133pt;}
.yd2{bottom:252.254400pt;}
.y104{bottom:255.540267pt;}
.yc6{bottom:255.542933pt;}
.y90{bottom:255.544267pt;}
.y121{bottom:258.023867pt;}
.y165{bottom:258.796933pt;}
.yb9{bottom:262.402667pt;}
.y1e5{bottom:264.898133pt;}
.y1a8{bottom:265.210533pt;}
.y120{bottom:271.252267pt;}
.y100{bottom:271.484933pt;}
.y103{bottom:271.486267pt;}
.y8f{bottom:271.488933pt;}
.y164{bottom:272.139733pt;}
.y34{bottom:274.359733pt;}
.y62{bottom:275.222267pt;}
.y1e4{bottom:278.122133pt;}
.y1a7{bottom:278.438933pt;}
.y163{bottom:285.482667pt;}
.y61{bottom:285.890267pt;}
.yb8{bottom:286.213733pt;}
.yff{bottom:287.430933pt;}
.yfb{bottom:287.432267pt;}
.y8e{bottom:287.433600pt;}
.y33{bottom:289.027733pt;}
.y1e3{bottom:291.350400pt;}
.y1a6{bottom:291.667200pt;}
.y60{bottom:296.558267pt;}
.y162{bottom:298.825467pt;}
.yb7{bottom:299.442000pt;}
.yce{bottom:303.367600pt;}
.y11f{bottom:303.374267pt;}
.y8d{bottom:303.376933pt;}
.yc5{bottom:303.378267pt;}
.y32{bottom:303.695733pt;}
.y1e2{bottom:304.578800pt;}
.y1a5{bottom:304.895600pt;}
.y5f{bottom:307.226267pt;}
.y161{bottom:312.168400pt;}
.yb6{bottom:312.670400pt;}
.y1e1{bottom:317.807067pt;}
.y5e{bottom:317.894267pt;}
.y1a4{bottom:318.124000pt;}
.y31{bottom:318.363733pt;}
.y8c{bottom:319.322933pt;}
.y160{bottom:325.511200pt;}
.y5d{bottom:328.562267pt;}
.y1e0{bottom:331.035467pt;}
.y1a3{bottom:331.352267pt;}
.y30{bottom:333.030400pt;}
.yc4{bottom:335.266267pt;}
.y8b{bottom:335.267600pt;}
.yb5{bottom:336.481467pt;}
.y15f{bottom:338.859067pt;}
.y5c{bottom:339.230267pt;}
.y1df{bottom:344.263867pt;}
.y1a2{bottom:344.580667pt;}
.y2f{bottom:347.695733pt;}
.yb4{bottom:349.709733pt;}
.y5b{bottom:349.898267pt;}
.ycd{bottom:351.205600pt;}
.y102{bottom:351.210933pt;}
.y8a{bottom:351.212267pt;}
.y15e{bottom:352.197067pt;}
.y1de{bottom:357.492133pt;}
.y1a1{bottom:357.808933pt;}
.y5a{bottom:360.566267pt;}
.y2e{bottom:362.363733pt;}
.yb3{bottom:362.942400pt;}
.y15d{bottom:365.549600pt;}
.ycc{bottom:367.151600pt;}
.y89{bottom:367.156933pt;}
.y1dd{bottom:370.720533pt;}
.y1a0{bottom:371.037333pt;}
.yb2{bottom:376.166400pt;}
.y15c{bottom:378.887600pt;}
.yfe{bottom:383.092267pt;}
.ycb{bottom:383.097600pt;}
.y88{bottom:383.101600pt;}
.y1dc{bottom:383.948800pt;}
.y19f{bottom:384.270000pt;}
.y15b{bottom:392.225600pt;}
.y2d{bottom:392.702400pt;}
.ye7{bottom:392.832004pt;}
.y1db{bottom:397.177200pt;}
.y19e{bottom:397.494000pt;}
.yca{bottom:399.043600pt;}
.yc3{bottom:399.044933pt;}
.y87{bottom:399.046267pt;}
.y2c{bottom:402.702400pt;}
.yb1{bottom:403.756933pt;}
.y15a{bottom:405.568533pt;}
.y1da{bottom:410.405600pt;}
.y19d{bottom:410.722267pt;}
.y2b{bottom:412.704000pt;}
.y86{bottom:414.989600pt;}
.yc2{bottom:414.990933pt;}
.yf0{bottom:417.087270pt;}
.y159{bottom:418.911333pt;}
.y1d9{bottom:423.633867pt;}
.yfa{bottom:423.822533pt;}
.y19c{bottom:423.950667pt;}
.ye9{bottom:425.254206pt;}
.yef{bottom:430.784236pt;}
.yb0{bottom:430.928933pt;}
.y85{bottom:430.935600pt;}
.yf8{bottom:431.406800pt;}
.y158{bottom:432.254267pt;}
.yf9{bottom:435.162533pt;}
.yf7{bottom:436.382933pt;}
.y1d8{bottom:436.862267pt;}
.y19b{bottom:437.179067pt;}
.yf6{bottom:440.565200pt;}
.y2a{bottom:441.600000pt;}
.yf5{bottom:441.795600pt;}
.y1c{bottom:442.939067pt;}
.yf4{bottom:443.100667pt;}
.yf3{bottom:444.705392pt;}
.y157{bottom:445.597067pt;}
.yf1{bottom:446.189319pt;}
.yaf{bottom:446.874933pt;}
.y84{bottom:446.880267pt;}
.y1d7{bottom:450.090667pt;}
.y19a{bottom:450.407333pt;}
.ydf{bottom:452.327866pt;}
.y1b{bottom:457.381733pt;}
.ye6{bottom:457.879247pt;}
.y156{bottom:458.940000pt;}
.ye8{bottom:459.448580pt;}
.y83{bottom:462.823600pt;}
.y101{bottom:462.824933pt;}
.y1d6{bottom:463.318933pt;}
.y199{bottom:463.635733pt;}
.y1a{bottom:468.048400pt;}
.y155{bottom:472.282933pt;}
.ye3{bottom:475.323395pt;}
.yee{bottom:475.334071pt;}
.y1d5{bottom:476.547333pt;}
.y198{bottom:476.864133pt;}
.yc1{bottom:477.512800pt;}
.yae{bottom:478.766933pt;}
.y82{bottom:478.769600pt;}
.y109{bottom:478.770933pt;}
.yde{bottom:478.825036pt;}
.ye0{bottom:480.928155pt;}
.y154{bottom:485.625733pt;}
.yc0{bottom:488.852800pt;}
.y1d4{bottom:489.775600pt;}
.y197{bottom:490.092400pt;}
.y19{bottom:493.833333pt;}
.y81{bottom:494.714267pt;}
.y108{bottom:494.716933pt;}
.y153{bottom:498.968667pt;}
.y1d3{bottom:503.012667pt;}
.y196{bottom:503.320800pt;}
.yec{bottom:503.603413pt;}
.ydd{bottom:503.774225pt;}
.ye5{bottom:507.126405pt;}
.y18{bottom:508.276000pt;}
.ydc{bottom:510.329125pt;}
.y80{bottom:510.657600pt;}
.y11e{bottom:510.658933pt;}
.y152{bottom:512.311467pt;}
.yeb{bottom:514.268470pt;}
.y1d2{bottom:516.236667pt;}
.y195{bottom:516.549067pt;}
.ye4{bottom:516.606456pt;}
.ye1{bottom:516.873349pt;}
.yed{bottom:519.617013pt;}
.y151{bottom:525.659333pt;}
.y4e{bottom:525.857733pt;}
.yad{bottom:526.598267pt;}
.y7f{bottom:526.603600pt;}
.y1d1{bottom:529.460667pt;}
.y194{bottom:529.781867pt;}
.yea{bottom:531.136129pt;}
.ye2{bottom:532.225054pt;}
.y17{bottom:534.060667pt;}
.y150{bottom:538.997333pt;}
.yac{bottom:542.544267pt;}
.y7e{bottom:542.548267pt;}
.y1d0{bottom:542.693333pt;}
.y193{bottom:543.005867pt;}
.ydb{bottom:543.146329pt;}
.y10c{bottom:543.822533pt;}
.y16{bottom:548.506933pt;}
.y14f{bottom:552.345067pt;}
.y10b{bottom:555.162533pt;}
.y1cf{bottom:555.917333pt;}
.y192{bottom:556.234133pt;}
.yab{bottom:558.490267pt;}
.y11d{bottom:558.491600pt;}
.y7d{bottom:558.492933pt;}
.y4d{bottom:559.199600pt;}
.yf2{bottom:562.063729pt;}
.y15{bottom:562.956667pt;}
.y14e{bottom:565.683067pt;}
.y1ce{bottom:569.145733pt;}
.y191{bottom:569.471200pt;}
.y4c{bottom:573.864933pt;}
.y7c{bottom:574.437600pt;}
.y14{bottom:577.402933pt;}
.y14d{bottom:579.025867pt;}
.y1cd{bottom:582.382800pt;}
.y190{bottom:582.695200pt;}
.y4b{bottom:588.530267pt;}
.y7b{bottom:590.382267pt;}
.y13{bottom:591.845600pt;}
.y14c{bottom:592.368800pt;}
.y1cc{bottom:595.606800pt;}
.y18f{bottom:595.919200pt;}
.y4a{bottom:602.934933pt;}
.y14b{bottom:605.711733pt;}
.y11c{bottom:606.325600pt;}
.y1cb{bottom:608.830800pt;}
.y18e{bottom:609.147600pt;}
.yda{bottom:611.994133pt;}
.y49{bottom:617.334933pt;}
.y14a{bottom:619.059467pt;}
.y1ca{bottom:622.059067pt;}
.y7a{bottom:622.264933pt;}
.y11b{bottom:622.271600pt;}
.y18d{bottom:622.375867pt;}
.yd9{bottom:627.487333pt;}
.y149{bottom:632.397467pt;}
.yaa{bottom:633.529200pt;}
.y1c9{bottom:635.296133pt;}
.y18c{bottom:635.608667pt;}
.y11a{bottom:638.216267pt;}
.y48{bottom:645.684000pt;}
.y148{bottom:645.740267pt;}
.ya9{bottom:646.753200pt;}
.y1c8{bottom:648.520133pt;}
.y18b{bottom:648.832667pt;}
.y119{bottom:654.159600pt;}
.y147{bottom:659.083200pt;}
.ya8{bottom:659.977200pt;}
.y47{bottom:660.349333pt;}
.y1c7{bottom:661.744133pt;}
.y18a{bottom:662.065200pt;}
.y79{bottom:670.102933pt;}
.y118{bottom:670.105600pt;}
.y146{bottom:672.426000pt;}
.ya7{bottom:673.201200pt;}
.y1c6{bottom:674.972533pt;}
.y46{bottom:675.014667pt;}
.y189{bottom:675.289200pt;}
.y145{bottom:685.768933pt;}
.y78{bottom:686.048933pt;}
.y117{bottom:686.050267pt;}
.ya6{bottom:686.425200pt;}
.y1c5{bottom:688.200800pt;}
.y188{bottom:688.517600pt;}
.y45{bottom:689.681333pt;}
.y144{bottom:699.111867pt;}
.ya5{bottom:699.649200pt;}
.y1c4{bottom:701.429200pt;}
.y187{bottom:701.745867pt;}
.y77{bottom:701.994933pt;}
.y143{bottom:712.454667pt;}
.ya4{bottom:712.873200pt;}
.y1c3{bottom:714.657600pt;}
.y186{bottom:714.974267pt;}
.y76{bottom:717.939600pt;}
.y44{bottom:718.027200pt;}
.y142{bottom:725.797467pt;}
.ya3{bottom:726.097200pt;}
.y1c2{bottom:727.885867pt;}
.y185{bottom:728.206933pt;}
.y43{bottom:732.692533pt;}
.y75{bottom:733.881600pt;}
.y116{bottom:733.884267pt;}
.y141{bottom:739.140400pt;}
.ya2{bottom:739.321200pt;}
.y1c1{bottom:741.114267pt;}
.y184{bottom:741.430933pt;}
.y12{bottom:746.381867pt;}
.y42{bottom:747.357867pt;}
.y115{bottom:749.826267pt;}
.y74{bottom:749.827600pt;}
.y140{bottom:752.483333pt;}
.ya1{bottom:752.545200pt;}
.y1c0{bottom:754.342667pt;}
.y183{bottom:754.659333pt;}
.y11{bottom:759.723067pt;}
.y41{bottom:761.762533pt;}
.y114{bottom:765.772267pt;}
.y73{bottom:765.773600pt;}
.y13f{bottom:765.826133pt;}
.y1bf{bottom:767.570933pt;}
.y182{bottom:767.887733pt;}
.y40{bottom:776.427867pt;}
.y13e{bottom:779.178800pt;}
.y10{bottom:780.611067pt;}
.y1be{bottom:780.808000pt;}
.y181{bottom:781.116000pt;}
.y72{bottom:781.718267pt;}
.y3f{bottom:791.094533pt;}
.yf{bottom:791.811067pt;}
.y13d{bottom:792.516800pt;}
.y1bd{bottom:794.032000pt;}
.y180{bottom:794.344400pt;}
.y71{bottom:797.661600pt;}
.y113{bottom:797.662933pt;}
.ye{bottom:803.011067pt;}
.ya0{bottom:805.820533pt;}
.y13c{bottom:805.854800pt;}
.y1bc{bottom:807.256000pt;}
.y17f{bottom:807.572800pt;}
.y112{bottom:813.599600pt;}
.y70{bottom:813.607600pt;}
.yd{bottom:814.211067pt;}
.y9f{bottom:819.044533pt;}
.y13b{bottom:819.197733pt;}
.y1bb{bottom:820.484267pt;}
.y17e{bottom:820.801067pt;}
.yc{bottom:825.411067pt;}
.y111{bottom:829.545600pt;}
.y6f{bottom:829.552267pt;}
.y9e{bottom:832.268533pt;}
.y13a{bottom:832.540533pt;}
.y1ba{bottom:833.712667pt;}
.y17d{bottom:834.029467pt;}
.yb{bottom:836.611067pt;}
.y110{bottom:845.491600pt;}
.y6e{bottom:845.492933pt;}
.y9d{bottom:845.496933pt;}
.y139{bottom:845.883467pt;}
.y1b9{bottom:846.940933pt;}
.y17c{bottom:847.257867pt;}
.ya{bottom:847.811067pt;}
.y9{bottom:859.011067pt;}
.y138{bottom:859.231200pt;}
.y1b8{bottom:860.169333pt;}
.y17b{bottom:860.486133pt;}
.y10f{bottom:861.437600pt;}
.y6d{bottom:861.438933pt;}
.y8{bottom:870.211067pt;}
.y137{bottom:872.569200pt;}
.y1b7{bottom:873.397733pt;}
.y17a{bottom:873.714400pt;}
.y10e{bottom:877.383600pt;}
.y6c{bottom:877.384933pt;}
.y9c{bottom:877.386267pt;}
.y50{bottom:879.118133pt;}
.y7{bottom:881.411067pt;}
.y136{bottom:885.912000pt;}
.y1b6{bottom:886.626000pt;}
.y179{bottom:886.942800pt;}
.y10d{bottom:893.329600pt;}
.y6b{bottom:893.330933pt;}
.y6{bottom:896.389733pt;}
.y135{bottom:899.254933pt;}
.y1b5{bottom:899.854400pt;}
.y178{bottom:900.171200pt;}
.y4f{bottom:905.784800pt;}
.y6a{bottom:909.275600pt;}
.y134{bottom:912.597867pt;}
.y1b4{bottom:913.082667pt;}
.y177{bottom:913.412533pt;}
.y5{bottom:918.928267pt;}
.y69{bottom:925.218933pt;}
.y9b{bottom:925.220267pt;}
.y133{bottom:925.950400pt;}
.y1b3{bottom:926.311067pt;}
.y176{bottom:926.636533pt;}
.y132{bottom:939.288400pt;}
.y1b2{bottom:939.539333pt;}
.y175{bottom:939.860533pt;}
.y68{bottom:941.164933pt;}
.y4{bottom:941.466933pt;}
.y131{bottom:952.626400pt;}
.y1b1{bottom:952.767733pt;}
.y174{bottom:953.084533pt;}
.y67{bottom:957.109600pt;}
.y3{bottom:964.004000pt;}
.y130{bottom:965.969333pt;}
.y1af{bottom:965.996133pt;}
.y173{bottom:966.312933pt;}
.y1b0{bottom:968.529467pt;}
.y66{bottom:973.054133pt;}
.yd7{bottom:978.597333pt;}
.y1ae{bottom:979.224400pt;}
.y12f{bottom:979.312133pt;}
.y172{bottom:979.541200pt;}
.y9a{bottom:988.998933pt;}
.yd6{bottom:989.273067pt;}
.y1ad{bottom:992.452800pt;}
.y12e{bottom:992.660000pt;}
.y171{bottom:992.769600pt;}
.y2{bottom:994.104000pt;}
.yd8{bottom:998.800667pt;}
.y65{bottom:1004.943600pt;}
.y1ac{bottom:1005.681200pt;}
.y12d{bottom:1005.998000pt;}
.y1{bottom:1009.084000pt;}
.y64{bottom:1068.661333pt;}
.ybf{bottom:1068.661467pt;}
.h9{height:27.290667pt;}
.h3{height:28.746667pt;}
.hc{height:29.664000pt;}
.h1f{height:31.215489pt;}
.h1c{height:31.215539pt;}
.h20{height:31.215674pt;}
.h1a{height:31.215844pt;}
.h1d{height:31.215911pt;}
.h1e{height:31.215918pt;}
.h25{height:32.338000pt;}
.h26{height:32.522933pt;}
.h7{height:32.853333pt;}
.h14{height:34.234667pt;}
.h2{height:34.608000pt;}
.h5{height:34.613333pt;}
.h6{height:34.613867pt;}
.h4{height:34.619733pt;}
.ha{height:35.504000pt;}
.h8{height:36.250667pt;}
.h1b{height:39.019805pt;}
.h19{height:39.125333pt;}
.h10{height:42.024000pt;}
.h12{height:42.864000pt;}
.h24{height:43.117333pt;}
.h13{height:44.016000pt;}
.hd{height:45.245333pt;}
.he{height:46.461333pt;}
.h17{height:47.656000pt;}
.hb{height:48.906667pt;}
.hf{height:49.066667pt;}
.h23{height:50.008000pt;}
.h15{height:51.352000pt;}
.h16{height:51.357333pt;}
.h22{height:51.362667pt;}
.h21{height:51.368000pt;}
.h18{height:51.373333pt;}
.h11{height:66.986667pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:66.803200pt;}
.x30{left:71.076000pt;}
.x5a{left:73.144267pt;}
.x22{left:74.200800pt;}
.x2f{left:75.727067pt;}
.x23{left:77.526800pt;}
.x4d{left:81.259867pt;}
.x2{left:85.700800pt;}
.x5b{left:87.304400pt;}
.x4e{left:93.872133pt;}
.x3{left:97.039467pt;}
.x5{left:103.937067pt;}
.x4c{left:106.663467pt;}
.x15{left:115.275600pt;}
.x5c{left:121.279467pt;}
.x1b{left:142.269067pt;}
.x1f{left:144.021067pt;}
.x1d{left:147.645067pt;}
.x1e{left:151.845067pt;}
.x16{left:155.697067pt;}
.x1c{left:163.017067pt;}
.x21{left:165.213067pt;}
.x18{left:167.205067pt;}
.x5d{left:171.704133pt;}
.x20{left:175.077067pt;}
.x1a{left:180.093067pt;}
.x19{left:182.685067pt;}
.x17{left:186.309067pt;}
.x2e{left:192.200844pt;}
.x2d{left:211.459867pt;}
.x36{left:234.903070pt;}
.x7{left:244.727067pt;}
.x35{left:246.176645pt;}
.x34{left:254.450338pt;}
.x48{left:262.029333pt;}
.x49{left:267.644667pt;}
.x4a{left:273.788533pt;}
.x4b{left:276.218667pt;}
.x9{left:302.544000pt;}
.x44{left:312.227407pt;}
.x33{left:325.241126pt;}
.x14{left:326.921467pt;}
.x37{left:330.482911pt;}
.xb{left:331.478000pt;}
.x39{left:332.575355pt;}
.xc{left:334.617333pt;}
.x6{left:338.527067pt;}
.x38{left:350.019503pt;}
.x3e{left:362.734301pt;}
.x43{left:376.228428pt;}
.x42{left:382.932789pt;}
.x25{left:406.299200pt;}
.x45{left:412.419164pt;}
.x55{left:413.957200pt;}
.x59{left:414.951200pt;}
.x31{left:416.700133pt;}
.x24{left:417.637733pt;}
.xa{left:419.413333pt;}
.x3d{left:421.312050pt;}
.x63{left:426.435067pt;}
.x62{left:437.875600pt;}
.x13{left:441.465600pt;}
.x3c{left:445.172314pt;}
.x57{left:447.474267pt;}
.x27{left:452.456933pt;}
.x41{left:455.965481pt;}
.x2c{left:459.072667pt;}
.x56{left:463.871733pt;}
.x60{left:466.297467pt;}
.xf{left:474.352933pt;}
.x29{left:475.653733pt;}
.x26{left:478.762933pt;}
.x28{left:484.614933pt;}
.x61{left:487.388933pt;}
.x4f{left:488.374933pt;}
.x2a{left:495.416533pt;}
.x50{left:504.501733pt;}
.x46{left:508.415358pt;}
.x3b{left:517.126757pt;}
.x58{left:523.392400pt;}
.x32{left:526.158427pt;}
.x51{left:530.068133pt;}
.x40{left:537.271866pt;}
.x2b{left:539.488533pt;}
.x52{left:567.286133pt;}
.x47{left:571.519618pt;}
.x11{left:579.718933pt;}
.x3a{left:586.038615pt;}
.x8{left:591.027200pt;}
.x10{left:597.852267pt;}
.x64{left:600.055333pt;}
.x53{left:604.112533pt;}
.xd{left:612.918667pt;}
.xe{left:638.920133pt;}
.x54{left:643.500533pt;}
.x3f{left:647.242595pt;}
.x12{left:659.399867pt;}
.x5e{left:681.836400pt;}
.x5f{left:685.238400pt;}
.x4{left:699.379867pt;}
}




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