
    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_de48e80311d52a37b3074263.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.074036;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_203c1b349c89f91ebfbfe837.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.987021;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_81068aeb669f8fcf4c163be9.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.131348;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_583e0896ab0bb42f9c95ab92.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.975098;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_8ff2a612767f1fd5d9b4aee8.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.074000;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_6cd215bd75abd6890f28330a.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.964844;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_7f03e615a29893c753a94ecf.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.958000;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_da17f401cb8d1727500a8ef5.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.914000;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_2a9d7b50f84596807a9f1865.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.985352;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_acfe284746980e9193be594c.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.987793;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_4ce39bc8cdf580c7008ca529.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.987793;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_bceb42513058715396968d7c.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.961069;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_30c6160e71787b2a322e7656.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.971832;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_ee924b42f4bcd5a354a259ef.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.989746;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;}
.m5c{transform:matrix(0.245067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245067,0.000000,0.000000,0.250000,0,0);}
.m3f{transform:matrix(0.245160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245160,0.000000,0.000000,0.250000,0,0);}
.m88{transform:matrix(0.245199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245199,0.000000,0.000000,0.250000,0,0);}
.m45{transform:matrix(0.245217,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245217,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245217,0.000000,0.000000,0.250000,0,0);}
.m3c{transform:matrix(0.245464,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245464,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245464,0.000000,0.000000,0.250000,0,0);}
.m7d{transform:matrix(0.245677,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245677,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245677,0.000000,0.000000,0.250000,0,0);}
.m7a{transform:matrix(0.245708,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245708,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245708,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.245770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245770,0.000000,0.000000,0.250000,0,0);}
.m83{transform:matrix(0.245786,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245786,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245786,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.245804,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245804,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245804,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.245967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245967,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.245974,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245974,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245974,0.000000,0.000000,0.250000,0,0);}
.m90{transform:matrix(0.246012,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246012,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246012,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.246144,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246144,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246144,0.000000,0.000000,0.250000,0,0);}
.m60{transform:matrix(0.246182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246182,0.000000,0.000000,0.250000,0,0);}
.m3a{transform:matrix(0.246404,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246404,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246404,0.000000,0.000000,0.250000,0,0);}
.m5f{transform:matrix(0.246507,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246507,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246507,0.000000,0.000000,0.250000,0,0);}
.ma3{transform:matrix(0.246524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246524,0.000000,0.000000,0.250000,0,0);}
.m92{transform:matrix(0.246569,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246569,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246569,0.000000,0.000000,0.250000,0,0);}
.m32{transform:matrix(0.246627,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246627,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246627,0.000000,0.000000,0.250000,0,0);}
.m77{transform:matrix(0.246727,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246727,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246727,0.000000,0.000000,0.250000,0,0);}
.ma7{transform:matrix(0.246856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246856,0.000000,0.000000,0.250000,0,0);}
.m8f{transform:matrix(0.246871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246871,0.000000,0.000000,0.250000,0,0);}
.m74{transform:matrix(0.246873,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246873,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246873,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.246892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246892,0.000000,0.000000,0.250000,0,0);}
.m3e{transform:matrix(0.247036,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247036,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247036,0.000000,0.000000,0.250000,0,0);}
.m9e{transform:matrix(0.247081,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247081,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247081,0.000000,0.000000,0.250000,0,0);}
.m52{transform:matrix(0.247132,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247132,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247132,0.000000,0.000000,0.250000,0,0);}
.m91{transform:matrix(0.247134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247134,0.000000,0.000000,0.250000,0,0);}
.m66{transform:matrix(0.247153,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247153,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247153,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.247203,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247203,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247203,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.247256,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247256,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247256,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.247313,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247313,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247313,0.000000,0.000000,0.250000,0,0);}
.m87{transform:matrix(0.247323,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247323,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247323,0.000000,0.000000,0.250000,0,0);}
.m67{transform:matrix(0.247478,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247478,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247478,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.247565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247565,0.000000,0.000000,0.250000,0,0);}
.m8e{transform:matrix(0.247732,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247732,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247732,0.000000,0.000000,0.250000,0,0);}
.m6a{transform:matrix(0.247789,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247789,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247789,0.000000,0.000000,0.250000,0,0);}
.m33{transform:matrix(0.247799,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247799,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247799,0.000000,0.000000,0.250000,0,0);}
.ma5{transform:matrix(0.247821,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247821,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247821,0.000000,0.000000,0.250000,0,0);}
.m43{transform:matrix(0.247835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247835,0.000000,0.000000,0.250000,0,0);}
.m5a{transform:matrix(0.247837,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247837,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247837,0.000000,0.000000,0.250000,0,0);}
.ma0{transform:matrix(0.247856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247856,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.247868,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247868,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247868,0.000000,0.000000,0.250000,0,0);}
.m75{transform:matrix(0.248079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248079,0.000000,0.000000,0.250000,0,0);}
.m89{transform:matrix(0.248081,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248081,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248081,0.000000,0.000000,0.250000,0,0);}
.m54{transform:matrix(0.248100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248100,0.000000,0.000000,0.250000,0,0);}
.m61{transform:matrix(0.248110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248110,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.248136,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248136,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248136,0.000000,0.000000,0.250000,0,0);}
.mae{transform:matrix(0.248189,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248189,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248189,0.000000,0.000000,0.250000,0,0);}
.m9b{transform:matrix(0.248196,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248196,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248196,0.000000,0.000000,0.250000,0,0);}
.m97{transform:matrix(0.248256,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248256,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248256,0.000000,0.000000,0.250000,0,0);}
.m7f{transform:matrix(0.248275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248275,0.000000,0.000000,0.250000,0,0);}
.m85{transform:matrix(0.248323,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248323,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248323,0.000000,0.000000,0.250000,0,0);}
.m8a{transform:matrix(0.248390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248390,0.000000,0.000000,0.250000,0,0);}
.m30{transform:matrix(0.248481,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248481,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248481,0.000000,0.000000,0.250000,0,0);}
.m34{transform:matrix(0.248519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248519,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.248526,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248526,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248526,0.000000,0.000000,0.250000,0,0);}
.m5b{transform:matrix(0.248663,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248663,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248663,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.248744,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248744,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248744,0.000000,0.000000,0.250000,0,0);}
.m79{transform:matrix(0.248861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248861,0.000000,0.000000,0.250000,0,0);}
.m93{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);}
.ma{transform:matrix(0.248923,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248923,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248923,0.000000,0.000000,0.250000,0,0);}
.m81{transform:matrix(0.248943,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248943,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248943,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.249026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249026,0.000000,0.000000,0.250000,0,0);}
.m41{transform:matrix(0.249141,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249141,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249141,0.000000,0.000000,0.250000,0,0);}
.m78{transform:matrix(0.249222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249222,0.000000,0.000000,0.250000,0,0);}
.m36{transform:matrix(0.249239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249239,0.000000,0.000000,0.250000,0,0);}
.m48{transform:matrix(0.249266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249266,0.000000,0.000000,0.250000,0,0);}
.ma6{transform:matrix(0.249287,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249287,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249287,0.000000,0.000000,0.250000,0,0);}
.m39{transform:matrix(0.249289,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249289,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249289,0.000000,0.000000,0.250000,0,0);}
.m64{transform:matrix(0.249299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249299,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.249548,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249548,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249548,0.000000,0.000000,0.250000,0,0);}
.m68{transform:matrix(0.249622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249622,0.000000,0.000000,0.250000,0,0);}
.m6b{transform:matrix(0.249632,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249632,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249632,0.000000,0.000000,0.250000,0,0);}
.m3b{transform:matrix(0.249794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249794,0.000000,0.000000,0.250000,0,0);}
.m9d{transform:matrix(0.249878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249878,0.000000,0.000000,0.250000,0,0);}
.m82{transform:matrix(0.249892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249892,0.000000,0.000000,0.250000,0,0);}
.ma1{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);}
.m62{transform:matrix(0.250012,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250012,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250012,0.000000,0.000000,0.250000,0,0);}
.m38{transform:matrix(0.250024,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250024,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250024,0.000000,0.000000,0.250000,0,0);}
.m99{transform:matrix(0.250038,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250038,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250038,0.000000,0.000000,0.250000,0,0);}
.mac{transform:matrix(0.250045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250045,0.000000,0.000000,0.250000,0,0);}
.m94{transform:matrix(0.250048,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250048,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250048,0.000000,0.000000,0.250000,0,0);}
.m57{transform:matrix(0.250093,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250093,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250093,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.250120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250120,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.250158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250158,0.000000,0.000000,0.250000,0,0);}
.ma4{transform:matrix(0.250184,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250184,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250184,0.000000,0.000000,0.250000,0,0);}
.m96{transform:matrix(0.250246,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250246,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250246,0.000000,0.000000,0.250000,0,0);}
.m73{transform:matrix(0.250266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250266,0.000000,0.000000,0.250000,0,0);}
.m9c{transform:matrix(0.250275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250275,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.250323,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250323,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250323,0.000000,0.000000,0.250000,0,0);}
.m42{transform:matrix(0.250402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250402,0.000000,0.000000,0.250000,0,0);}
.m8b{transform:matrix(0.250411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250411,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.250416,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250416,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250416,0.000000,0.000000,0.250000,0,0);}
.m21{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);}
.m58{transform:matrix(0.250467,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250467,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250467,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.250469,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250469,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250469,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.250478,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250478,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250478,0.000000,0.000000,0.250000,0,0);}
.mad{transform:matrix(0.250533,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250533,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250533,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.250536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250536,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.250548,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250548,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250548,0.000000,0.000000,0.250000,0,0);}
.m31{transform:matrix(0.250553,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250553,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250553,0.000000,0.000000,0.250000,0,0);}
.m35{transform:matrix(0.250577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250577,0.000000,0.000000,0.250000,0,0);}
.m95{transform:matrix(0.250591,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250591,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250591,0.000000,0.000000,0.250000,0,0);}
.m70{transform:matrix(0.250667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250667,0.000000,0.000000,0.250000,0,0);}
.m6c{transform:matrix(0.250672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250672,0.000000,0.000000,0.250000,0,0);}
.m76{transform:matrix(0.250734,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250734,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250734,0.000000,0.000000,0.250000,0,0);}
.m6d{transform:matrix(0.250763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250763,0.000000,0.000000,0.250000,0,0);}
.m44{transform:matrix(0.250780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250780,0.000000,0.000000,0.250000,0,0);}
.maa{transform:matrix(0.250828,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250828,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250828,0.000000,0.000000,0.250000,0,0);}
.m1d{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);}
.m2c{transform:matrix(0.250856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250856,0.000000,0.000000,0.250000,0,0);}
.mab{transform:matrix(0.250964,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250964,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250964,0.000000,0.000000,0.250000,0,0);}
.m8d{transform:matrix(0.250969,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250969,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250969,0.000000,0.000000,0.250000,0,0);}
.m71{transform:matrix(0.250974,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250974,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250974,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.251043,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251043,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251043,0.000000,0.000000,0.250000,0,0);}
.m4d{transform:matrix(0.251167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251167,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.251222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251222,0.000000,0.000000,0.250000,0,0);}
.m50{transform:matrix(0.251254,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251254,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251254,0.000000,0.000000,0.250000,0,0);}
.m53{transform:matrix(0.251330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251330,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.251431,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251431,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251431,0.000000,0.000000,0.250000,0,0);}
.m9a{transform:matrix(0.251493,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251493,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251493,0.000000,0.000000,0.250000,0,0);}
.m4f{transform:matrix(0.251495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251495,0.000000,0.000000,0.250000,0,0);}
.m72{transform:matrix(0.251533,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251533,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251533,0.000000,0.000000,0.250000,0,0);}
.m6e{transform:matrix(0.251548,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251548,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251548,0.000000,0.000000,0.250000,0,0);}
.m7c{transform:matrix(0.251557,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251557,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251557,0.000000,0.000000,0.250000,0,0);}
.m4a{transform:matrix(0.251574,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251574,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251574,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.251577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251577,0.000000,0.000000,0.250000,0,0);}
.m84{transform:matrix(0.251581,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251581,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251581,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.251589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251589,0.000000,0.000000,0.250000,0,0);}
.m5d{transform:matrix(0.251598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251598,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.251634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251634,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.251684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251684,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.251694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251694,0.000000,0.000000,0.250000,0,0);}
.m46{transform:matrix(0.251706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251706,0.000000,0.000000,0.250000,0,0);}
.m4c{transform:matrix(0.251895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251895,0.000000,0.000000,0.250000,0,0);}
.m80{transform:matrix(0.251990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251990,0.000000,0.000000,0.250000,0,0);}
.m4b{transform:matrix(0.252031,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252031,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252031,0.000000,0.000000,0.250000,0,0);}
.ma9{transform:matrix(0.252089,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252089,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252089,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.252091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252091,0.000000,0.000000,0.250000,0,0);}
.m17{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);}
.maf{transform:matrix(0.252167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252167,0.000000,0.000000,0.250000,0,0);}
.m65{transform:matrix(0.252203,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252203,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252203,0.000000,0.000000,0.250000,0,0);}
.ma2{transform:matrix(0.252254,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252254,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252254,0.000000,0.000000,0.250000,0,0);}
.m69{transform:matrix(0.252306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252306,0.000000,0.000000,0.250000,0,0);}
.m40{transform:matrix(0.252419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252419,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.252443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252443,0.000000,0.000000,0.250000,0,0);}
.m51{transform:matrix(0.252505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252505,0.000000,0.000000,0.250000,0,0);}
.m8c{transform:matrix(0.252612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252612,0.000000,0.000000,0.250000,0,0);}
.ma8{transform:matrix(0.252699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252699,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.252746,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252746,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252746,0.000000,0.000000,0.250000,0,0);}
.m47{transform:matrix(0.252947,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252947,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252947,0.000000,0.000000,0.250000,0,0);}
.m98{transform:matrix(0.253055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253055,0.000000,0.000000,0.250000,0,0);}
.m7b{transform:matrix(0.253146,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253146,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253146,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.253167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253167,0.000000,0.000000,0.250000,0,0);}
.m86{transform:matrix(0.253285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253285,0.000000,0.000000,0.250000,0,0);}
.m56{transform:matrix(0.253287,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253287,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253287,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.253373,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253373,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253373,0.000000,0.000000,0.250000,0,0);}
.m3d{transform:matrix(0.253445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253445,0.000000,0.000000,0.250000,0,0);}
.m7e{transform:matrix(0.253589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253589,0.000000,0.000000,0.250000,0,0);}
.m4e{transform:matrix(0.253605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253605,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.253806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253806,0.000000,0.000000,0.250000,0,0);}
.m59{transform:matrix(0.253883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253883,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.253950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253950,0.000000,0.000000,0.250000,0,0);}
.m37{transform:matrix(0.254227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254227,0.000000,0.000000,0.250000,0,0);}
.m63{transform:matrix(0.254232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254232,0.000000,0.000000,0.250000,0,0);}
.m6f{transform:matrix(0.254239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254239,0.000000,0.000000,0.250000,0,0);}
.m49{transform:matrix(0.254574,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254574,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254574,0.000000,0.000000,0.250000,0,0);}
.m55{transform:matrix(0.254842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254842,0.000000,0.000000,0.250000,0,0);}
.m5e{transform:matrix(0.254897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254897,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.254964,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254964,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254964,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.254971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254971,0.000000,0.000000,0.250000,0,0);}
.m9f{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.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;}
.lse{letter-spacing:-0.660000px;}
.ls0{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.018810px;}
.ls3{letter-spacing:0.062700px;}
.ls1{letter-spacing:0.125400px;}
.ls2{letter-spacing:0.188100px;}
.ls6{letter-spacing:0.250800px;}
.ls4{letter-spacing:0.313500px;}
.ls7{letter-spacing:0.376200px;}
.ls9{letter-spacing:0.438900px;}
.lsc{letter-spacing:0.501600px;}
.lsf{letter-spacing:0.689700px;}
.ls10{letter-spacing:0.752400px;}
.ls8{letter-spacing:0.815100px;}
.lsa{letter-spacing:1.003200px;}
.lsd{letter-spacing:3.015870px;}
.lsb{letter-spacing:3.072300px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsf{word-spacing:-62.700000px;}
.ws5{word-spacing:-23.925000px;}
.ws1c{word-spacing:-18.684600px;}
.ws2{word-spacing:-17.460000px;}
.ws1{word-spacing:-17.280000px;}
.ws4{word-spacing:-17.242500px;}
.ws1a{word-spacing:-16.615500px;}
.ws16{word-spacing:-16.427400px;}
.ws23{word-spacing:-16.364700px;}
.ws22{word-spacing:-16.302000px;}
.ws1d{word-spacing:-16.113900px;}
.ws19{word-spacing:-16.051200px;}
.ws1f{word-spacing:-15.988500px;}
.ws1b{word-spacing:-15.863100px;}
.ws1e{word-spacing:-15.737700px;}
.ws21{word-spacing:-15.675000px;}
.ws17{word-spacing:-15.612300px;}
.ws18{word-spacing:-15.361500px;}
.wse{word-spacing:-15.110700px;}
.ws12{word-spacing:-14.922600px;}
.ws11{word-spacing:-14.797200px;}
.ws14{word-spacing:-14.734500px;}
.wsb{word-spacing:-14.690610px;}
.wsd{word-spacing:-14.671800px;}
.ws13{word-spacing:-13.338000px;}
.ws10{word-spacing:-4.050000px;}
.wsa{word-spacing:-3.009600px;}
.ws15{word-spacing:-0.376200px;}
.ws9{word-spacing:-0.313500px;}
.wsc{word-spacing:-0.250800px;}
.ws7{word-spacing:-0.188100px;}
.ws6{word-spacing:-0.125400px;}
.ws3{word-spacing:-0.066000px;}
.ws8{word-spacing:-0.062700px;}
.ws0{word-spacing:0.000000px;}
.ws20{word-spacing:467.874000px;}
._5{margin-left:-6.951300px;}
._2{margin-left:-5.292000px;}
._3{margin-left:-3.480000px;}
._0{margin-left:-2.376000px;}
._a{margin-left:-1.241460px;}
._4{width:1.296300px;}
._9{width:2.544720px;}
._1{width:3.600000px;}
._8{width:5.043900px;}
._7{width:6.188820px;}
._6{width:8.144400px;}
._18{width:9.218550px;}
._13{width:10.533600px;}
._1f{width:11.561880px;}
._1d{width:13.041600px;}
._14{width:14.533530px;}
._16{width:16.941540px;}
._1c{width:18.088950px;}
._1b{width:19.248900px;}
._1a{width:21.412050px;}
._15{width:30.572520px;}
._1e{width:34.002210px;}
._17{width:49.206960px;}
._19{width:55.953480px;}
._f{width:475.794000px;}
._12{width:480.612000px;}
._11{width:482.790000px;}
._10{width:496.056000px;}
._d{width:504.702000px;}
._c{width:506.880000px;}
._e{width:508.134000px;}
._b{width:520.146000px;}
.fc4{color:rgb(246,174,45);}
.fc2{color:rgb(74,114,132);}
.fc5{color:rgb(255,255,255);}
.fc3{color:rgb(0,0,0);}
.fc1{color:rgb(251,251,251);}
.fc0{color:rgb(245,174,38);}
.fs8{font-size:42.000000px;}
.fs6{font-size:54.000000px;}
.fs7{font-size:60.000000px;}
.fs5{font-size:61.500000px;}
.fs3{font-size:62.700000px;}
.fs4{font-size:66.000000px;}
.fs2{font-size:87.000000px;}
.fs1{font-size:126.000000px;}
.fs0{font-size:180.000000px;}
.y0{bottom:0.000000px;}
.yae{bottom:45.306300px;}
.y158{bottom:45.436950px;}
.y20a{bottom:45.985350px;}
.ye9{bottom:45.991350px;}
.y30{bottom:46.138950px;}
.y116{bottom:46.465950px;}
.y23{bottom:46.770150px;}
.y13{bottom:47.337000px;}
.y214{bottom:47.485350px;}
.y222{bottom:91.891350px;}
.y221{bottom:104.491350px;}
.y220{bottom:117.091350px;}
.y172{bottom:126.742350px;}
.y10d{bottom:127.159350px;}
.y12c{bottom:127.321050px;}
.y79{bottom:127.590450px;}
.y2f{bottom:129.548100px;}
.y132{bottom:129.549150px;}
.ye8{bottom:132.326700px;}
.y1e4{bottom:133.775700px;}
.y157{bottom:137.998200px;}
.y55{bottom:138.045450px;}
.y209{bottom:141.783600px;}
.y21f{bottom:142.291350px;}
.y9b{bottom:142.297350px;}
.y19a{bottom:145.905600px;}
.y1c0{bottom:148.108875px;}
.y131{bottom:150.555150px;}
.y171{bottom:152.242350px;}
.y10c{bottom:152.659350px;}
.y12b{bottom:152.821050px;}
.yc4{bottom:152.939100px;}
.y78{bottom:153.090450px;}
.y21e{bottom:154.891350px;}
.y1e3{bottom:156.292125px;}
.ye7{bottom:157.826700px;}
.y156{bottom:163.498200px;}
.y54{bottom:163.545450px;}
.y208{bottom:164.296425px;}
.y9a{bottom:167.797350px;}
.y1bf{bottom:170.602500px;}
.y199{bottom:171.429150px;}
.y170{bottom:177.742350px;}
.y10b{bottom:178.159350px;}
.y12a{bottom:178.321050px;}
.yc3{bottom:178.439100px;}
.y77{bottom:178.590450px;}
.y1e2{bottom:178.785750px;}
.ye6{bottom:183.319350px;}
.y207{bottom:186.790050px;}
.y155{bottom:189.004050px;}
.y53{bottom:189.045450px;}
.y1be{bottom:193.110150px;}
.y99{bottom:193.297350px;}
.y198{bottom:196.932375px;}
.y1e1{bottom:201.279375px;}
.y10a{bottom:203.659350px;}
.yc2{bottom:203.939100px;}
.y76{bottom:204.090450px;}
.ye5{bottom:208.822575px;}
.y206{bottom:209.283675px;}
.y52{bottom:214.545450px;}
.y98{bottom:218.797350px;}
.y197{bottom:222.435600px;}
.y129{bottom:223.329525px;}
.y16f{bottom:226.177050px;}
.y1bd{bottom:228.535650px;}
.yc1{bottom:229.439100px;}
.y75{bottom:229.590450px;}
.y154{bottom:237.157650px;}
.y51{bottom:240.045450px;}
.y1e0{bottom:240.075000px;}
.y97{bottom:244.297350px;}
.y205{bottom:245.963175px;}
.y128{bottom:248.832750px;}
.y109{bottom:249.506100px;}
.y1bc{bottom:251.072175px;}
.y16e{bottom:251.677050px;}
.yc0{bottom:254.939100px;}
.y74{bottom:255.083850px;}
.ye4{bottom:257.806950px;}
.y196{bottom:259.444275px;}
.y1df{bottom:262.581375px;}
.y153{bottom:262.657650px;}
.y50{bottom:265.545450px;}
.y204{bottom:268.456800px;}
.y96{bottom:269.797350px;}
.y1bb{bottom:273.565800px;}
.y127{bottom:274.332750px;}
.y108{bottom:275.006100px;}
.yad{bottom:275.008275px;}
.y16d{bottom:277.177050px;}
.ybf{bottom:280.439100px;}
.y195{bottom:281.937900px;}
.ye3{bottom:283.306950px;}
.y1de{bottom:285.075000px;}
.y152{bottom:288.157650px;}
.y203{bottom:290.993550px;}
.y4f{bottom:291.045450px;}
.y95{bottom:295.297350px;}
.y126{bottom:299.832750px;}
.y107{bottom:300.506100px;}
.yac{bottom:300.511500px;}
.y73{bottom:301.105650px;}
.y16c{bottom:302.677050px;}
.y194{bottom:304.431525px;}
.ybe{bottom:305.939100px;}
.y1ba{bottom:307.282725px;}
.y1dd{bottom:307.580625px;}
.ye2{bottom:308.806950px;}
.y202{bottom:313.487175px;}
.y151{bottom:313.657650px;}
.y125{bottom:325.332750px;}
.y106{bottom:326.006100px;}
.yab{bottom:326.011500px;}
.y72{bottom:326.608875px;}
.y193{bottom:326.925150px;}
.y16b{bottom:328.177050px;}
.y1b9{bottom:329.776350px;}
.ybd{bottom:331.442925px;}
.ye1{bottom:334.306950px;}
.y150{bottom:339.157650px;}
.y4e{bottom:339.163500px;}
.y94{bottom:343.454100px;}
.y1dc{bottom:344.604975px;}
.y201{bottom:350.166675px;}
.y124{bottom:350.832750px;}
.y105{bottom:351.506100px;}
.y71{bottom:352.112100px;}
.y1b8{bottom:352.269975px;}
.y16a{bottom:353.677050px;}
.ye0{bottom:359.806950px;}
.y192{bottom:364.294350px;}
.y14f{bottom:364.657650px;}
.y4d{bottom:364.663500px;}
.y1db{bottom:367.098600px;}
.y93{bottom:368.957325px;}
.y200{bottom:372.660300px;}
.y1b7{bottom:374.763600px;}
.y123{bottom:376.332150px;}
.y104{bottom:377.006100px;}
.ybc{bottom:377.511750px;}
.y70{bottom:377.612100px;}
.y169{bottom:379.177050px;}
.y5{bottom:379.819350px;}
.ydf{bottom:385.306950px;}
.y191{bottom:386.787975px;}
.y14e{bottom:390.157650px;}
.y4c{bottom:390.163500px;}
.y92{bottom:394.460550px;}
.y1ff{bottom:395.153925px;}
.y103{bottom:402.506100px;}
.ybb{bottom:403.011750px;}
.y6f{bottom:403.112100px;}
.y1da{bottom:403.433250px;}
.y168{bottom:404.677050px;}
.y1b6{bottom:410.189100px;}
.yde{bottom:410.806950px;}
.y14d{bottom:415.657650px;}
.y4b{bottom:415.663500px;}
.y4{bottom:417.619350px;}
.y1fe{bottom:417.647550px;}
.y91{bottom:419.960550px;}
.y122{bottom:420.284850px;}
.y190{bottom:421.539450px;}
.y1d9{bottom:425.933250px;}
.y102{bottom:428.006100px;}
.yba{bottom:428.511750px;}
.y167{bottom:430.177050px;}
.y1b5{bottom:432.689100px;}
.ydd{bottom:436.306950px;}
.y6e{bottom:437.800500px;}
.y14c{bottom:441.160050px;}
.y4a{bottom:441.163500px;}
.y18f{bottom:444.088575px;}
.y90{bottom:445.457325px;}
.y121{bottom:445.788075px;}
.y1d8{bottom:448.433250px;}
.y101{bottom:453.506100px;}
.yb9{bottom:454.011750px;}
.y1fd{bottom:454.671900px;}
.y1b4{bottom:455.193750px;}
.y2e{bottom:462.214500px;}
.y18e{bottom:466.582200px;}
.y49{bottom:466.660275px;}
.y8f{bottom:470.960550px;}
.ydc{bottom:470.995350px;}
.y120{bottom:471.291300px;}
.y166{bottom:475.519650px;}
.y1fc{bottom:477.165525px;}
.y100{bottom:479.000850px;}
.yb8{bottom:479.511750px;}
.y1d{bottom:481.680900px;}
.y1d7{bottom:484.232400px;}
.y14b{bottom:485.614350px;}
.y2d{bottom:487.714500px;}
.y1b3{bottom:491.685150px;}
.y48{bottom:492.163500px;}
.y8e{bottom:496.460550px;}
.y11f{bottom:496.791300px;}
.y6d{bottom:497.336700px;}
.y165{bottom:501.019650px;}
.y18d{bottom:501.333675px;}
.y1c{bottom:504.174525px;}
.yb7{bottom:505.011750px;}
.y1d6{bottom:506.750850px;}
.y14a{bottom:511.111125px;}
.y1fb{bottom:512.951550px;}
.y2c{bottom:513.214500px;}
.y1b2{bottom:514.185150px;}
.y47{bottom:517.663500px;}
.y11e{bottom:522.291300px;}
.y6c{bottom:522.836700px;}
.y18c{bottom:523.827300px;}
.yff{bottom:525.273450px;}
.y164{bottom:526.519650px;}
.y1d5{bottom:529.244475px;}
.yb6{bottom:530.511750px;}
.y8d{bottom:531.148950px;}
.ydb{bottom:533.509575px;}
.y130{bottom:534.942600px;}
.y1fa{bottom:535.445175px;}
.y149{bottom:536.614350px;}
.y1b1{bottom:536.694525px;}
.y3{bottom:536.911650px;}
.y2b{bottom:538.714500px;}
.y1b{bottom:541.674150px;}
.y46{bottom:543.163500px;}
.y18b{bottom:546.320925px;}
.y11d{bottom:547.791300px;}
.y6b{bottom:548.333475px;}
.yfe{bottom:550.773450px;}
.y1d4{bottom:551.738100px;}
.y163{bottom:552.019650px;}
.y12f{bottom:555.942600px;}
.yb5{bottom:556.005300px;}
.y1f9{bottom:557.938800px;}
.yda{bottom:559.012800px;}
.y148{bottom:562.114350px;}
.y1a{bottom:564.167775px;}
.y2a{bottom:564.211275px;}
.y1b0{bottom:570.192000px;}
.y11c{bottom:573.291300px;}
.y6a{bottom:573.836700px;}
.yfd{bottom:576.263775px;}
.y162{bottom:577.519650px;}
.y45{bottom:577.851900px;}
.yb4{bottom:581.508525px;}
.y18a{bottom:583.329600px;}
.yd9{bottom:584.516025px;}
.y1d3{bottom:585.235575px;}
.y22{bottom:586.108125px;}
.y147{bottom:587.614350px;}
.y2{bottom:589.426650px;}
.y29{bottom:589.714500px;}
.y1af{bottom:594.190425px;}
.y1f8{bottom:594.618300px;}
.y8c{bottom:595.120200px;}
.y11b{bottom:598.791300px;}
.y69{bottom:599.336700px;}
.y19{bottom:601.667400px;}
.yfc{bottom:601.767000px;}
.y161{bottom:603.019650px;}
.y189{bottom:605.823225px;}
.yb3{bottom:607.011750px;}
.y1d2{bottom:607.729200px;}
.yd8{bottom:610.019250px;}
.y21{bottom:611.611350px;}
.y146{bottom:613.114350px;}
.y28{bottom:615.214500px;}
.y1f7{bottom:617.124675px;}
.y1ae{bottom:618.188850px;}
.y8b{bottom:620.620200px;}
.y11a{bottom:624.291300px;}
.y68{bottom:624.836700px;}
.yfb{bottom:627.270225px;}
.y188{bottom:628.316850px;}
.y160{bottom:628.519650px;}
.y1d1{bottom:633.232425px;}
.yd7{bottom:635.522475px;}
.y20{bottom:637.114575px;}
.y145{bottom:638.614350px;}
.y18{bottom:639.167025px;}
.y1f6{bottom:639.618300px;}
.y27{bottom:640.714500px;}
.yb2{bottom:641.700000px;}
.y1{bottom:641.941650px;}
.y44{bottom:641.962800px;}
.y8a{bottom:646.116975px;}
.y119{bottom:649.791300px;}
.y67{bottom:650.336550px;}
.y187{bottom:650.810475px;}
.yfa{bottom:652.773450px;}
.y1ad{bottom:653.614350px;}
.y15f{bottom:660.207900px;}
.yd6{bottom:661.025700px;}
.y1f5{bottom:662.203275px;}
.y144{bottom:664.114350px;}
.y26{bottom:666.214500px;}
.y43{bottom:667.462800px;}
.y1d0{bottom:669.034125px;}
.y89{bottom:671.620200px;}
.y118{bottom:675.291300px;}
.y1ac{bottom:676.114350px;}
.y17{bottom:676.666650px;}
.yf9{bottom:678.270225px;}
.y12{bottom:685.258350px;}
.yd5{bottom:686.525700px;}
.y186{bottom:687.819150px;}
.y1cf{bottom:691.527750px;}
.y25{bottom:691.714500px;}
.y42{bottom:692.962800px;}
.y66{bottom:696.358350px;}
.y88{bottom:697.120200px;}
.y1ab{bottom:698.710350px;}
.yb1{bottom:698.800875px;}
.y16{bottom:699.160275px;}
.y1f4{bottom:699.227625px;}
.yf8{bottom:703.773450px;}
.y117{bottom:706.979550px;}
.y185{bottom:710.338725px;}
.y11{bottom:710.741925px;}
.yd4{bottom:712.025700px;}
.y143{bottom:712.090050px;}
.y1ce{bottom:714.027750px;}
.y41{bottom:718.462800px;}
.y1f3{bottom:721.721250px;}
.y65{bottom:721.858350px;}
.y87{bottom:722.620200px;}
.y15e{bottom:722.664225px;}
.yb0{bottom:724.304100px;}
.y24{bottom:726.042600px;}
.yf7{bottom:729.273450px;}
.y6{bottom:732.272850px;}
.y184{bottom:732.832350px;}
.y15{bottom:733.661775px;}
.y1aa{bottom:734.135850px;}
.y10{bottom:736.245150px;}
.y1cd{bottom:736.517700px;}
.yd3{bottom:737.525700px;}
.y142{bottom:737.593275px;}
.y40{bottom:743.956350px;}
.y64{bottom:747.355125px;}
.y15d{bottom:748.167450px;}
.yaf{bottom:749.804100px;}
.y183{bottom:755.325975px;}
.y14{bottom:756.160500px;}
.y1a9{bottom:756.629475px;}
.y1f2{bottom:757.507275px;}
.yd2{bottom:763.025700px;}
.y141{bottom:763.096500px;}
.yf6{bottom:763.962000px;}
.y115{bottom:769.102500px;}
.y3f{bottom:769.459575px;}
.y21d{bottom:770.073900px;}
.y1cc{bottom:770.548125px;}
.y86{bottom:770.935875px;}
.yaa{bottom:771.157050px;}
.y63{bottom:772.858350px;}
.y15c{bottom:773.667450px;}
.y1a8{bottom:779.123100px;}
.y1f1{bottom:780.000900px;}
.yf{bottom:784.430100px;}
.y1e{bottom:785.087250px;}
.y21c{bottom:788.073900px;}
.yd1{bottom:788.525700px;}
.y140{bottom:788.596500px;}
.y182{bottom:792.334650px;}
.y114{bottom:794.602500px;}
.y3e{bottom:794.962800px;}
.y1cb{bottom:796.051350px;}
.y85{bottom:796.439100px;}
.ya9{bottom:796.660275px;}
.y62{bottom:798.358350px;}
.y15b{bottom:799.167450px;}
.y1f0{bottom:802.494525px;}
.y21b{bottom:806.073900px;}
.ye{bottom:809.933325px;}
.y13f{bottom:814.096500px;}
.y181{bottom:814.834650px;}
.y1a7{bottom:815.269650px;}
.y113{bottom:820.102500px;}
.y3d{bottom:820.462800px;}
.y84{bottom:821.939100px;}
.ya8{bottom:822.163500px;}
.y21a{bottom:824.073900px;}
.y15a{bottom:824.669775px;}
.yf5{bottom:824.679150px;}
.y1ca{bottom:832.386000px;}
.yd{bottom:835.436550px;}
.y180{bottom:837.337650px;}
.yd0{bottom:837.506100px;}
.y1a6{bottom:837.763275px;}
.y1ef{bottom:838.280550px;}
.y13e{bottom:839.596500px;}
.y112{bottom:845.602500px;}
.y3c{bottom:845.959575px;}
.y61{bottom:846.009900px;}
.y83{bottom:847.439100px;}
.ya7{bottom:847.663500px;}
.yf4{bottom:850.179150px;}
.y1c9{bottom:857.886000px;}
.y17f{bottom:859.831275px;}
.y1a5{bottom:860.256900px;}
.y1ee{bottom:860.774175px;}
.ycf{bottom:863.005950px;}
.y13d{bottom:865.096500px;}
.y174{bottom:868.114200px;}
.y111{bottom:871.102500px;}
.y3b{bottom:871.462800px;}
.y159{bottom:871.506675px;}
.y60{bottom:871.509900px;}
.y82{bottom:872.939100px;}
.ya6{bottom:873.163500px;}
.y213{bottom:874.008000px;}
.y1ed{bottom:883.267800px;}
.y1c8{bottom:883.383450px;}
.y1a4{bottom:885.760125px;}
.yc{bottom:885.863025px;}
.yce{bottom:888.505950px;}
.y13c{bottom:890.596500px;}
.y173{bottom:893.614200px;}
.y17e{bottom:894.582750px;}
.y212{bottom:896.508000px;}
.y110{bottom:896.602500px;}
.y3a{bottom:896.962800px;}
.y5f{bottom:897.009900px;}
.yf3{bottom:898.187775px;}
.ya5{bottom:898.663500px;}
.y219{bottom:904.053900px;}
.yb{bottom:911.366250px;}
.ycd{bottom:914.005950px;}
.y13b{bottom:916.096500px;}
.y17d{bottom:917.109000px;}
.y1ec{bottom:918.693300px;}
.y211{bottom:919.008000px;}
.y81{bottom:919.114200px;}
.y1c7{bottom:919.185150px;}
.y1a3{bottom:921.185625px;}
.y218{bottom:922.053900px;}
.y10f{bottom:922.102500px;}
.y39{bottom:922.462800px;}
.y5e{bottom:922.509900px;}
.yf2{bottom:923.691000px;}
.ya4{bottom:924.163350px;}
.ya{bottom:936.862800px;}
.ycc{bottom:939.505950px;}
.y17c{bottom:939.602625px;}
.y217{bottom:940.053900px;}
.y1eb{bottom:941.186925px;}
.y210{bottom:941.528325px;}
.y13a{bottom:941.593725px;}
.y1c6{bottom:941.702550px;}
.y1a2{bottom:943.679250px;}
.y80{bottom:944.614200px;}
.y10e{bottom:947.601675px;}
.y5d{bottom:948.009900px;}
.yf1{bottom:949.191000px;}
.ya3{bottom:949.663350px;}
.y216{bottom:958.053900px;}
.y1ea{bottom:963.680550px;}
.y20f{bottom:964.021950px;}
.y1c5{bottom:964.196175px;}
.ycb{bottom:965.004675px;}
.y1a1{bottom:966.172875px;}
.y7f{bottom:970.114200px;}
.y38{bottom:970.114350px;}
.y5c{bottom:973.509900px;}
.yf0{bottom:974.687775px;}
.ya2{bottom:975.163350px;}
.y215{bottom:976.053900px;}
.y17b{bottom:976.611300px;}
.y9{bottom:985.988250px;}
.y1e9{bottom:986.174175px;}
.y1c4{bottom:986.689800px;}
.y139{bottom:989.198700px;}
.yca{bottom:990.507900px;}
.y12e{bottom:995.607750px;}
.y7e{bottom:995.614200px;}
.y37{bottom:995.614350px;}
.y5b{bottom:999.009900px;}
.y17a{bottom:999.104925px;}
.y20e{bottom:999.807975px;}
.yef{bottom:1000.191000px;}
.ya1{bottom:1000.663350px;}
.y1a0{bottom:1000.720575px;}
.y1e8{bottom:1008.667800px;}
.y8{bottom:1011.488250px;}
.y138{bottom:1014.698700px;}
.yc9{bottom:1016.011125px;}
.y12d{bottom:1021.110975px;}
.y7d{bottom:1021.114200px;}
.y36{bottom:1021.114350px;}
.y179{bottom:1021.598550px;}
.y20d{bottom:1022.301600px;}
.y1c3{bottom:1023.181200px;}
.y19f{bottom:1023.214200px;}
.y5a{bottom:1024.509900px;}
.yee{bottom:1025.691000px;}
.ya0{bottom:1026.163350px;}
.y137{bottom:1040.189025px;}
.y178{bottom:1044.118275px;}
.y1e7{bottom:1044.453825px;}
.y20c{bottom:1044.795225px;}
.y1c2{bottom:1045.681200px;}
.y19e{bottom:1045.707825px;}
.y7c{bottom:1046.614200px;}
.y35{bottom:1046.614350px;}
.yed{bottom:1051.191000px;}
.y9f{bottom:1051.663350px;}
.y7{bottom:1059.302550px;}
.yc8{bottom:1061.954550px;}
.y136{bottom:1065.692250px;}
.y1e6{bottom:1066.947450px;}
.y1c1{bottom:1068.181200px;}
.y19d{bottom:1068.201450px;}
.y59{bottom:1072.110975px;}
.y7b{bottom:1072.114200px;}
.y34{bottom:1072.114350px;}
.y9e{bottom:1077.163350px;}
.y20b{bottom:1081.114200px;}
.y177{bottom:1081.126950px;}
.yc7{bottom:1087.454550px;}
.y1e5{bottom:1089.441075px;}
.y135{bottom:1091.195475px;}
.yec{bottom:1097.136375px;}
.y7a{bottom:1097.610975px;}
.y58{bottom:1097.614200px;}
.y33{bottom:1097.614350px;}
.y176{bottom:1103.620575px;}
.y19c{bottom:1103.626950px;}
.yc6{bottom:1112.954550px;}
.y134{bottom:1116.698700px;}
.yeb{bottom:1122.639600px;}
.y57{bottom:1123.114200px;}
.y32{bottom:1123.114350px;}
.y9d{bottom:1123.943625px;}
.y175{bottom:1126.114200px;}
.y19b{bottom:1126.120575px;}
.yc5{bottom:1147.642950px;}
.yea{bottom:1148.139600px;}
.y133{bottom:1148.387100px;}
.y56{bottom:1148.614200px;}
.y31{bottom:1148.614350px;}
.y9c{bottom:1149.446850px;}
.y1f{bottom:1194.940800px;}
.h11{height:38.021484px;}
.hc{height:41.818359px;}
.hd{height:47.025000px;}
.he{height:47.699824px;}
.h8{height:47.724000px;}
.hf{height:47.759766px;}
.hb{height:48.884766px;}
.h9{height:49.434000px;}
.ha{height:52.921080px;}
.h7{height:53.625000px;}
.h10{height:54.316406px;}
.h6{height:55.704000px;}
.h5{height:56.760645px;}
.h4{height:73.431164px;}
.h3{height:94.374000px;}
.h2{height:151.926545px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:34.015800px;}
.x13{left:35.208600px;}
.x9{left:36.216375px;}
.x16{left:37.393650px;}
.xf{left:45.472125px;}
.xe{left:47.640000px;}
.x2{left:54.764550px;}
.x8{left:59.571000px;}
.xa{left:68.365500px;}
.xd{left:69.380250px;}
.xb{left:73.054875px;}
.x7{left:74.622300px;}
.x17{left:77.598450px;}
.x1{left:90.044550px;}
.xc{left:91.581750px;}
.x19{left:162.588450px;}
.x10{left:170.078700px;}
.x12{left:171.153450px;}
.x14{left:193.464600px;}
.x18{left:198.693450px;}
.x1a{left:209.565300px;}
.x5{left:219.188850px;}
.x11{left:243.283350px;}
.x3{left:574.413900px;}
.x4{left:629.948400px;}
.x15{left:829.360800px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lse{letter-spacing:-0.586667pt;}
.ls0{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.016720pt;}
.ls3{letter-spacing:0.055733pt;}
.ls1{letter-spacing:0.111467pt;}
.ls2{letter-spacing:0.167200pt;}
.ls6{letter-spacing:0.222933pt;}
.ls4{letter-spacing:0.278667pt;}
.ls7{letter-spacing:0.334400pt;}
.ls9{letter-spacing:0.390133pt;}
.lsc{letter-spacing:0.445867pt;}
.lsf{letter-spacing:0.613067pt;}
.ls10{letter-spacing:0.668800pt;}
.ls8{letter-spacing:0.724533pt;}
.lsa{letter-spacing:0.891733pt;}
.lsd{letter-spacing:2.680773pt;}
.lsb{letter-spacing:2.730933pt;}
.wsf{word-spacing:-55.733333pt;}
.ws5{word-spacing:-21.266667pt;}
.ws1c{word-spacing:-16.608533pt;}
.ws2{word-spacing:-15.520000pt;}
.ws1{word-spacing:-15.360000pt;}
.ws4{word-spacing:-15.326667pt;}
.ws1a{word-spacing:-14.769333pt;}
.ws16{word-spacing:-14.602133pt;}
.ws23{word-spacing:-14.546400pt;}
.ws22{word-spacing:-14.490667pt;}
.ws1d{word-spacing:-14.323467pt;}
.ws19{word-spacing:-14.267733pt;}
.ws1f{word-spacing:-14.212000pt;}
.ws1b{word-spacing:-14.100533pt;}
.ws1e{word-spacing:-13.989067pt;}
.ws21{word-spacing:-13.933333pt;}
.ws17{word-spacing:-13.877600pt;}
.ws18{word-spacing:-13.654667pt;}
.wse{word-spacing:-13.431733pt;}
.ws12{word-spacing:-13.264533pt;}
.ws11{word-spacing:-13.153067pt;}
.ws14{word-spacing:-13.097333pt;}
.wsb{word-spacing:-13.058320pt;}
.wsd{word-spacing:-13.041600pt;}
.ws13{word-spacing:-11.856000pt;}
.ws10{word-spacing:-3.600000pt;}
.wsa{word-spacing:-2.675200pt;}
.ws15{word-spacing:-0.334400pt;}
.ws9{word-spacing:-0.278667pt;}
.wsc{word-spacing:-0.222933pt;}
.ws7{word-spacing:-0.167200pt;}
.ws6{word-spacing:-0.111467pt;}
.ws3{word-spacing:-0.058667pt;}
.ws8{word-spacing:-0.055733pt;}
.ws0{word-spacing:0.000000pt;}
.ws20{word-spacing:415.888000pt;}
._5{margin-left:-6.178933pt;}
._2{margin-left:-4.704000pt;}
._3{margin-left:-3.093333pt;}
._0{margin-left:-2.112000pt;}
._a{margin-left:-1.103520pt;}
._4{width:1.152267pt;}
._9{width:2.261973pt;}
._1{width:3.200000pt;}
._8{width:4.483467pt;}
._7{width:5.501173pt;}
._6{width:7.239467pt;}
._18{width:8.194267pt;}
._13{width:9.363200pt;}
._1f{width:10.277227pt;}
._1d{width:11.592533pt;}
._14{width:12.918693pt;}
._16{width:15.059147pt;}
._1c{width:16.079067pt;}
._1b{width:17.110133pt;}
._1a{width:19.032933pt;}
._15{width:27.175573pt;}
._1e{width:30.224187pt;}
._17{width:43.739520pt;}
._19{width:49.736427pt;}
._f{width:422.928000pt;}
._12{width:427.210667pt;}
._11{width:429.146667pt;}
._10{width:440.938667pt;}
._d{width:448.624000pt;}
._c{width:450.560000pt;}
._e{width:451.674667pt;}
._b{width:462.352000pt;}
.fs8{font-size:37.333333pt;}
.fs6{font-size:48.000000pt;}
.fs7{font-size:53.333333pt;}
.fs5{font-size:54.666667pt;}
.fs3{font-size:55.733333pt;}
.fs4{font-size:58.666667pt;}
.fs2{font-size:77.333333pt;}
.fs1{font-size:112.000000pt;}
.fs0{font-size:160.000000pt;}
.y0{bottom:0.000000pt;}
.yae{bottom:40.272267pt;}
.y158{bottom:40.388400pt;}
.y20a{bottom:40.875867pt;}
.ye9{bottom:40.881200pt;}
.y30{bottom:41.012400pt;}
.y116{bottom:41.303067pt;}
.y23{bottom:41.573467pt;}
.y13{bottom:42.077333pt;}
.y214{bottom:42.209200pt;}
.y222{bottom:81.681200pt;}
.y221{bottom:92.881200pt;}
.y220{bottom:104.081200pt;}
.y172{bottom:112.659867pt;}
.y10d{bottom:113.030533pt;}
.y12c{bottom:113.174267pt;}
.y79{bottom:113.413733pt;}
.y2f{bottom:115.153867pt;}
.y132{bottom:115.154800pt;}
.ye8{bottom:117.623733pt;}
.y1e4{bottom:118.911733pt;}
.y157{bottom:122.665067pt;}
.y55{bottom:122.707067pt;}
.y209{bottom:126.029867pt;}
.y21f{bottom:126.481200pt;}
.y9b{bottom:126.486533pt;}
.y19a{bottom:129.693867pt;}
.y1c0{bottom:131.652333pt;}
.y131{bottom:133.826800pt;}
.y171{bottom:135.326533pt;}
.y10c{bottom:135.697200pt;}
.y12b{bottom:135.840933pt;}
.yc4{bottom:135.945867pt;}
.y78{bottom:136.080400pt;}
.y21e{bottom:137.681200pt;}
.y1e3{bottom:138.926333pt;}
.ye7{bottom:140.290400pt;}
.y156{bottom:145.331733pt;}
.y54{bottom:145.373733pt;}
.y208{bottom:146.041267pt;}
.y9a{bottom:149.153200pt;}
.y1bf{bottom:151.646667pt;}
.y199{bottom:152.381467pt;}
.y170{bottom:157.993200pt;}
.y10b{bottom:158.363867pt;}
.y12a{bottom:158.507600pt;}
.yc3{bottom:158.612533pt;}
.y77{bottom:158.747067pt;}
.y1e2{bottom:158.920667pt;}
.ye6{bottom:162.950533pt;}
.y207{bottom:166.035600pt;}
.y155{bottom:168.003600pt;}
.y53{bottom:168.040400pt;}
.y1be{bottom:171.653467pt;}
.y99{bottom:171.819867pt;}
.y198{bottom:175.051000pt;}
.y1e1{bottom:178.915000pt;}
.y10a{bottom:181.030533pt;}
.yc2{bottom:181.279200pt;}
.y76{bottom:181.413733pt;}
.ye5{bottom:185.620067pt;}
.y206{bottom:186.029933pt;}
.y52{bottom:190.707067pt;}
.y98{bottom:194.486533pt;}
.y197{bottom:197.720533pt;}
.y129{bottom:198.515133pt;}
.y16f{bottom:201.046267pt;}
.y1bd{bottom:203.142800pt;}
.yc1{bottom:203.945867pt;}
.y75{bottom:204.080400pt;}
.y154{bottom:210.806800pt;}
.y51{bottom:213.373733pt;}
.y1e0{bottom:213.400000pt;}
.y97{bottom:217.153200pt;}
.y205{bottom:218.633933pt;}
.y128{bottom:221.184667pt;}
.y109{bottom:221.783200pt;}
.y1bc{bottom:223.175267pt;}
.y16e{bottom:223.712933pt;}
.yc0{bottom:226.612533pt;}
.y74{bottom:226.741200pt;}
.ye4{bottom:229.161733pt;}
.y196{bottom:230.617133pt;}
.y1df{bottom:233.405667pt;}
.y153{bottom:233.473467pt;}
.y50{bottom:236.040400pt;}
.y204{bottom:238.628267pt;}
.y96{bottom:239.819867pt;}
.y1bb{bottom:243.169600pt;}
.y127{bottom:243.851333pt;}
.y108{bottom:244.449867pt;}
.yad{bottom:244.451800pt;}
.y16d{bottom:246.379600pt;}
.ybf{bottom:249.279200pt;}
.y195{bottom:250.611467pt;}
.ye3{bottom:251.828400pt;}
.y1de{bottom:253.400000pt;}
.y152{bottom:256.140133pt;}
.y203{bottom:258.660933pt;}
.y4f{bottom:258.707067pt;}
.y95{bottom:262.486533pt;}
.y126{bottom:266.518000pt;}
.y107{bottom:267.116533pt;}
.yac{bottom:267.121333pt;}
.y73{bottom:267.649467pt;}
.y16c{bottom:269.046267pt;}
.y194{bottom:270.605800pt;}
.ybe{bottom:271.945867pt;}
.y1ba{bottom:273.140200pt;}
.y1dd{bottom:273.405000pt;}
.ye2{bottom:274.495067pt;}
.y202{bottom:278.655267pt;}
.y151{bottom:278.806800pt;}
.y125{bottom:289.184667pt;}
.y106{bottom:289.783200pt;}
.yab{bottom:289.788000pt;}
.y72{bottom:290.319000pt;}
.y193{bottom:290.600133pt;}
.y16b{bottom:291.712933pt;}
.y1b9{bottom:293.134533pt;}
.ybd{bottom:294.615933pt;}
.ye1{bottom:297.161733pt;}
.y150{bottom:301.473467pt;}
.y4e{bottom:301.478667pt;}
.y94{bottom:305.292533pt;}
.y1dc{bottom:306.315533pt;}
.y201{bottom:311.259267pt;}
.y124{bottom:311.851333pt;}
.y105{bottom:312.449867pt;}
.y71{bottom:312.988533pt;}
.y1b8{bottom:313.128867pt;}
.y16a{bottom:314.379600pt;}
.ye0{bottom:319.828400pt;}
.y192{bottom:323.817200pt;}
.y14f{bottom:324.140133pt;}
.y4d{bottom:324.145333pt;}
.y1db{bottom:326.309867pt;}
.y93{bottom:327.962067pt;}
.y200{bottom:331.253600pt;}
.y1b7{bottom:333.123200pt;}
.y123{bottom:334.517467pt;}
.y104{bottom:335.116533pt;}
.ybc{bottom:335.566000pt;}
.y70{bottom:335.655200pt;}
.y169{bottom:337.046267pt;}
.y5{bottom:337.617200pt;}
.ydf{bottom:342.495067pt;}
.y191{bottom:343.811533pt;}
.y14e{bottom:346.806800pt;}
.y4c{bottom:346.812000pt;}
.y92{bottom:350.631600pt;}
.y1ff{bottom:351.247933pt;}
.y103{bottom:357.783200pt;}
.ybb{bottom:358.232667pt;}
.y6f{bottom:358.321867pt;}
.y1da{bottom:358.607333pt;}
.y168{bottom:359.712933pt;}
.y1b6{bottom:364.612533pt;}
.yde{bottom:365.161733pt;}
.y14d{bottom:369.473467pt;}
.y4b{bottom:369.478667pt;}
.y4{bottom:371.217200pt;}
.y1fe{bottom:371.242267pt;}
.y91{bottom:373.298267pt;}
.y122{bottom:373.586533pt;}
.y190{bottom:374.701733pt;}
.y1d9{bottom:378.607333pt;}
.y102{bottom:380.449867pt;}
.yba{bottom:380.899333pt;}
.y167{bottom:382.379600pt;}
.y1b5{bottom:384.612533pt;}
.ydd{bottom:387.828400pt;}
.y6e{bottom:389.156000pt;}
.y14c{bottom:392.142267pt;}
.y4a{bottom:392.145333pt;}
.y18f{bottom:394.745400pt;}
.y90{bottom:395.962067pt;}
.y121{bottom:396.256067pt;}
.y1d8{bottom:398.607333pt;}
.y101{bottom:403.116533pt;}
.yb9{bottom:403.566000pt;}
.y1fd{bottom:404.152800pt;}
.y1b4{bottom:404.616667pt;}
.y2e{bottom:410.857333pt;}
.y18e{bottom:414.739733pt;}
.y49{bottom:414.809133pt;}
.y8f{bottom:418.631600pt;}
.ydc{bottom:418.662533pt;}
.y120{bottom:418.925600pt;}
.y166{bottom:422.684133pt;}
.y1fc{bottom:424.147133pt;}
.y100{bottom:425.778533pt;}
.yb8{bottom:426.232667pt;}
.y1d{bottom:428.160800pt;}
.y1d7{bottom:430.428800pt;}
.y14b{bottom:431.657200pt;}
.y2d{bottom:433.524000pt;}
.y1b3{bottom:437.053467pt;}
.y48{bottom:437.478667pt;}
.y8e{bottom:441.298267pt;}
.y11f{bottom:441.592267pt;}
.y6d{bottom:442.077067pt;}
.y165{bottom:445.350800pt;}
.y18d{bottom:445.629933pt;}
.y1c{bottom:448.155133pt;}
.yb7{bottom:448.899333pt;}
.y1d6{bottom:450.445200pt;}
.y14a{bottom:454.321000pt;}
.y1fb{bottom:455.956933pt;}
.y2c{bottom:456.190667pt;}
.y1b2{bottom:457.053467pt;}
.y47{bottom:460.145333pt;}
.y11e{bottom:464.258933pt;}
.y6c{bottom:464.743733pt;}
.y18c{bottom:465.624267pt;}
.yff{bottom:466.909733pt;}
.y164{bottom:468.017467pt;}
.y1d5{bottom:470.439533pt;}
.yb6{bottom:471.566000pt;}
.y8d{bottom:472.132400pt;}
.ydb{bottom:474.230733pt;}
.y130{bottom:475.504533pt;}
.y1fa{bottom:475.951267pt;}
.y149{bottom:476.990533pt;}
.y1b1{bottom:477.061800pt;}
.y3{bottom:477.254800pt;}
.y2b{bottom:478.857333pt;}
.y1b{bottom:481.488133pt;}
.y46{bottom:482.812000pt;}
.y18b{bottom:485.618600pt;}
.y11d{bottom:486.925600pt;}
.y6b{bottom:487.407533pt;}
.yfe{bottom:489.576400pt;}
.y1d4{bottom:490.433867pt;}
.y163{bottom:490.684133pt;}
.y12f{bottom:494.171200pt;}
.yb5{bottom:494.226933pt;}
.y1f9{bottom:495.945600pt;}
.yda{bottom:496.900267pt;}
.y148{bottom:499.657200pt;}
.y1a{bottom:501.482467pt;}
.y2a{bottom:501.521133pt;}
.y1b0{bottom:506.837333pt;}
.y11c{bottom:509.592267pt;}
.y6a{bottom:510.077067pt;}
.yfd{bottom:512.234467pt;}
.y162{bottom:513.350800pt;}
.y45{bottom:513.646133pt;}
.yb4{bottom:516.896467pt;}
.y18a{bottom:518.515200pt;}
.yd9{bottom:519.569800pt;}
.y1d3{bottom:520.209400pt;}
.y22{bottom:520.985000pt;}
.y147{bottom:522.323867pt;}
.y2{bottom:523.934800pt;}
.y29{bottom:524.190667pt;}
.y1af{bottom:528.169267pt;}
.y1f8{bottom:528.549600pt;}
.y8c{bottom:528.995733pt;}
.y11b{bottom:532.258933pt;}
.y69{bottom:532.743733pt;}
.y19{bottom:534.815467pt;}
.yfc{bottom:534.904000pt;}
.y161{bottom:536.017467pt;}
.y189{bottom:538.509533pt;}
.yb3{bottom:539.566000pt;}
.y1d2{bottom:540.203733pt;}
.yd8{bottom:542.239333pt;}
.y21{bottom:543.654533pt;}
.y146{bottom:544.990533pt;}
.y28{bottom:546.857333pt;}
.y1f7{bottom:548.555267pt;}
.y1ae{bottom:549.501200pt;}
.y8b{bottom:551.662400pt;}
.y11a{bottom:554.925600pt;}
.y68{bottom:555.410400pt;}
.yfb{bottom:557.573533pt;}
.y188{bottom:558.503867pt;}
.y160{bottom:558.684133pt;}
.y1d1{bottom:562.873267pt;}
.yd7{bottom:564.908867pt;}
.y20{bottom:566.324067pt;}
.y145{bottom:567.657200pt;}
.y18{bottom:568.148467pt;}
.y1f6{bottom:568.549600pt;}
.y27{bottom:569.524000pt;}
.yb2{bottom:570.400000pt;}
.y1{bottom:570.614800pt;}
.y44{bottom:570.633600pt;}
.y8a{bottom:574.326200pt;}
.y119{bottom:577.592267pt;}
.y67{bottom:578.076933pt;}
.y187{bottom:578.498200pt;}
.yfa{bottom:580.243067pt;}
.y1ad{bottom:580.990533pt;}
.y15f{bottom:586.851467pt;}
.yd6{bottom:587.578400pt;}
.y1f5{bottom:588.625133pt;}
.y144{bottom:590.323867pt;}
.y26{bottom:592.190667pt;}
.y43{bottom:593.300267pt;}
.y1d0{bottom:594.697000pt;}
.y89{bottom:596.995733pt;}
.y118{bottom:600.258933pt;}
.y1ac{bottom:600.990533pt;}
.y17{bottom:601.481467pt;}
.yf9{bottom:602.906867pt;}
.y12{bottom:609.118533pt;}
.yd5{bottom:610.245067pt;}
.y186{bottom:611.394800pt;}
.y1cf{bottom:614.691333pt;}
.y25{bottom:614.857333pt;}
.y42{bottom:615.966933pt;}
.y66{bottom:618.985200pt;}
.y88{bottom:619.662400pt;}
.y1ab{bottom:621.075867pt;}
.yb1{bottom:621.156333pt;}
.y16{bottom:621.475800pt;}
.y1f4{bottom:621.535667pt;}
.yf8{bottom:625.576400pt;}
.y117{bottom:628.426267pt;}
.y185{bottom:631.412200pt;}
.y11{bottom:631.770600pt;}
.yd4{bottom:632.911733pt;}
.y143{bottom:632.968933pt;}
.y1ce{bottom:634.691333pt;}
.y41{bottom:638.633600pt;}
.y1f3{bottom:641.530000pt;}
.y65{bottom:641.651867pt;}
.y87{bottom:642.329067pt;}
.y15e{bottom:642.368200pt;}
.yb0{bottom:643.825867pt;}
.y24{bottom:645.371200pt;}
.yf7{bottom:648.243067pt;}
.y6{bottom:650.909200pt;}
.y184{bottom:651.406533pt;}
.y15{bottom:652.143800pt;}
.y1aa{bottom:652.565200pt;}
.y10{bottom:654.440133pt;}
.y1cd{bottom:654.682400pt;}
.yd3{bottom:655.578400pt;}
.y142{bottom:655.638467pt;}
.y40{bottom:661.294533pt;}
.y64{bottom:664.315667pt;}
.y15d{bottom:665.037733pt;}
.yaf{bottom:666.492533pt;}
.y183{bottom:671.400867pt;}
.y14{bottom:672.142667pt;}
.y1a9{bottom:672.559533pt;}
.y1f2{bottom:673.339800pt;}
.yd2{bottom:678.245067pt;}
.y141{bottom:678.308000pt;}
.yf6{bottom:679.077333pt;}
.y115{bottom:683.646667pt;}
.y3f{bottom:683.964067pt;}
.y21d{bottom:684.510133pt;}
.y1cc{bottom:684.931667pt;}
.y86{bottom:685.276333pt;}
.yaa{bottom:685.472933pt;}
.y63{bottom:686.985200pt;}
.y15c{bottom:687.704400pt;}
.y1a8{bottom:692.553867pt;}
.y1f1{bottom:693.334133pt;}
.yf{bottom:697.271200pt;}
.y1e{bottom:697.855333pt;}
.y21c{bottom:700.510133pt;}
.yd1{bottom:700.911733pt;}
.y140{bottom:700.974667pt;}
.y182{bottom:704.297467pt;}
.y114{bottom:706.313333pt;}
.y3e{bottom:706.633600pt;}
.y1cb{bottom:707.601200pt;}
.y85{bottom:707.945867pt;}
.ya9{bottom:708.142467pt;}
.y62{bottom:709.651867pt;}
.y15b{bottom:710.371067pt;}
.y1f0{bottom:713.328467pt;}
.y21b{bottom:716.510133pt;}
.ye{bottom:719.940733pt;}
.y13f{bottom:723.641333pt;}
.y181{bottom:724.297467pt;}
.y1a7{bottom:724.684133pt;}
.y113{bottom:728.980000pt;}
.y3d{bottom:729.300267pt;}
.y84{bottom:730.612533pt;}
.ya8{bottom:730.812000pt;}
.y21a{bottom:732.510133pt;}
.y15a{bottom:733.039800pt;}
.yf5{bottom:733.048133pt;}
.y1ca{bottom:739.898667pt;}
.yd{bottom:742.610267pt;}
.y180{bottom:744.300133pt;}
.yd0{bottom:744.449867pt;}
.y1a6{bottom:744.678467pt;}
.y1ef{bottom:745.138267pt;}
.y13e{bottom:746.308000pt;}
.y112{bottom:751.646667pt;}
.y3c{bottom:751.964067pt;}
.y61{bottom:752.008800pt;}
.y83{bottom:753.279200pt;}
.ya7{bottom:753.478667pt;}
.yf4{bottom:755.714800pt;}
.y1c9{bottom:762.565333pt;}
.y17f{bottom:764.294467pt;}
.y1a5{bottom:764.672800pt;}
.y1ee{bottom:765.132600pt;}
.ycf{bottom:767.116400pt;}
.y13d{bottom:768.974667pt;}
.y174{bottom:771.657067pt;}
.y111{bottom:774.313333pt;}
.y3b{bottom:774.633600pt;}
.y159{bottom:774.672600pt;}
.y60{bottom:774.675467pt;}
.y82{bottom:775.945867pt;}
.ya6{bottom:776.145333pt;}
.y213{bottom:776.896000pt;}
.y1ed{bottom:785.126933pt;}
.y1c8{bottom:785.229733pt;}
.y1a4{bottom:787.342333pt;}
.yc{bottom:787.433800pt;}
.yce{bottom:789.783067pt;}
.y13c{bottom:791.641333pt;}
.y173{bottom:794.323733pt;}
.y17e{bottom:795.184667pt;}
.y212{bottom:796.896000pt;}
.y110{bottom:796.980000pt;}
.y3a{bottom:797.300267pt;}
.y5f{bottom:797.342133pt;}
.yf3{bottom:798.389133pt;}
.ya5{bottom:798.812000pt;}
.y219{bottom:803.603467pt;}
.yb{bottom:810.103333pt;}
.ycd{bottom:812.449733pt;}
.y13b{bottom:814.308000pt;}
.y17d{bottom:815.208000pt;}
.y1ec{bottom:816.616267pt;}
.y211{bottom:816.896000pt;}
.y81{bottom:816.990400pt;}
.y1c7{bottom:817.053467pt;}
.y1a3{bottom:818.831667pt;}
.y218{bottom:819.603467pt;}
.y10f{bottom:819.646667pt;}
.y39{bottom:819.966933pt;}
.y5e{bottom:820.008800pt;}
.yf2{bottom:821.058667pt;}
.ya4{bottom:821.478533pt;}
.ya{bottom:832.766933pt;}
.ycc{bottom:835.116400pt;}
.y17c{bottom:835.202333pt;}
.y217{bottom:835.603467pt;}
.y1eb{bottom:836.610600pt;}
.y210{bottom:836.914067pt;}
.y13a{bottom:836.972200pt;}
.y1c6{bottom:837.068933pt;}
.y1a2{bottom:838.826000pt;}
.y80{bottom:839.657067pt;}
.y10e{bottom:842.312600pt;}
.y5d{bottom:842.675467pt;}
.yf1{bottom:843.725333pt;}
.ya3{bottom:844.145200pt;}
.y216{bottom:851.603467pt;}
.y1ea{bottom:856.604933pt;}
.y20f{bottom:856.908400pt;}
.y1c5{bottom:857.063267pt;}
.ycb{bottom:857.781933pt;}
.y1a1{bottom:858.820333pt;}
.y7f{bottom:862.323733pt;}
.y38{bottom:862.323867pt;}
.y5c{bottom:865.342133pt;}
.yf0{bottom:866.389133pt;}
.ya2{bottom:866.811867pt;}
.y215{bottom:867.603467pt;}
.y17b{bottom:868.098933pt;}
.y9{bottom:876.434000pt;}
.y1e9{bottom:876.599267pt;}
.y1c4{bottom:877.057600pt;}
.y139{bottom:879.287733pt;}
.yca{bottom:880.451467pt;}
.y12e{bottom:884.984667pt;}
.y7e{bottom:884.990400pt;}
.y37{bottom:884.990533pt;}
.y5b{bottom:888.008800pt;}
.y17a{bottom:888.093267pt;}
.y20e{bottom:888.718200pt;}
.yef{bottom:889.058667pt;}
.ya1{bottom:889.478533pt;}
.y1a0{bottom:889.529400pt;}
.y1e8{bottom:896.593600pt;}
.y8{bottom:899.100667pt;}
.y138{bottom:901.954400pt;}
.yc9{bottom:903.121000pt;}
.y12d{bottom:907.654200pt;}
.y7d{bottom:907.657067pt;}
.y36{bottom:907.657200pt;}
.y179{bottom:908.087600pt;}
.y20d{bottom:908.712533pt;}
.y1c3{bottom:909.494400pt;}
.y19f{bottom:909.523733pt;}
.y5a{bottom:910.675467pt;}
.yee{bottom:911.725333pt;}
.ya0{bottom:912.145200pt;}
.y137{bottom:924.612467pt;}
.y178{bottom:928.105133pt;}
.y1e7{bottom:928.403400pt;}
.y20c{bottom:928.706867pt;}
.y1c2{bottom:929.494400pt;}
.y19e{bottom:929.518067pt;}
.y7c{bottom:930.323733pt;}
.y35{bottom:930.323867pt;}
.yed{bottom:934.392000pt;}
.y9f{bottom:934.811867pt;}
.y7{bottom:941.602267pt;}
.yc8{bottom:943.959600pt;}
.y136{bottom:947.282000pt;}
.y1e6{bottom:948.397733pt;}
.y1c1{bottom:949.494400pt;}
.y19d{bottom:949.512400pt;}
.y59{bottom:952.987533pt;}
.y7b{bottom:952.990400pt;}
.y34{bottom:952.990533pt;}
.y9e{bottom:957.478533pt;}
.y20b{bottom:960.990400pt;}
.y177{bottom:961.001733pt;}
.yc7{bottom:966.626267pt;}
.y1e5{bottom:968.392067pt;}
.y135{bottom:969.951533pt;}
.yec{bottom:975.232333pt;}
.y7a{bottom:975.654200pt;}
.y58{bottom:975.657067pt;}
.y33{bottom:975.657200pt;}
.y176{bottom:980.996067pt;}
.y19c{bottom:981.001733pt;}
.yc6{bottom:989.292933pt;}
.y134{bottom:992.621067pt;}
.yeb{bottom:997.901867pt;}
.y57{bottom:998.323733pt;}
.y32{bottom:998.323867pt;}
.y9d{bottom:999.061000pt;}
.y175{bottom:1000.990400pt;}
.y19b{bottom:1000.996067pt;}
.yc5{bottom:1020.127067pt;}
.yea{bottom:1020.568533pt;}
.y133{bottom:1020.788533pt;}
.y56{bottom:1020.990400pt;}
.y31{bottom:1020.990533pt;}
.y9c{bottom:1021.730533pt;}
.y1f{bottom:1062.169600pt;}
.h11{height:33.796875pt;}
.hc{height:37.171875pt;}
.hd{height:41.800000pt;}
.he{height:42.399844pt;}
.h8{height:42.421333pt;}
.hf{height:42.453125pt;}
.hb{height:43.453125pt;}
.h9{height:43.941333pt;}
.ha{height:47.040960pt;}
.h7{height:47.666667pt;}
.h10{height:48.281250pt;}
.h6{height:49.514667pt;}
.h5{height:50.453906pt;}
.h4{height:65.272145pt;}
.h3{height:83.888000pt;}
.h2{height:135.045818pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:30.236267pt;}
.x13{left:31.296533pt;}
.x9{left:32.192333pt;}
.x16{left:33.238800pt;}
.xf{left:40.419667pt;}
.xe{left:42.346667pt;}
.x2{left:48.679600pt;}
.x8{left:52.952000pt;}
.xa{left:60.769333pt;}
.xd{left:61.671333pt;}
.xb{left:64.937667pt;}
.x7{left:66.330933pt;}
.x17{left:68.976400pt;}
.x1{left:80.039600pt;}
.xc{left:81.406000pt;}
.x19{left:144.523067pt;}
.x10{left:151.181067pt;}
.x12{left:152.136400pt;}
.x14{left:171.968533pt;}
.x18{left:176.616400pt;}
.x1a{left:186.280267pt;}
.x5{left:194.834533pt;}
.x11{left:216.251867pt;}
.x3{left:510.590133pt;}
.x4{left:559.954133pt;}
.x15{left:737.209600pt;}
}




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