
    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_e78018b1a230f4e1fa2b2650.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_7ed6c32b0f131e3c6a3f2535.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.964789;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_a90aaf8b2aa3a63d3332d7e1.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.038574;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_fb21c716efc6ac989d5c4334.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.052734;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_fb83edf04bf75d170511acad.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_c111a8b764d50030ae9f162a.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.919000;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_1de3145c58b181f89890f6e6.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.919000;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_0ae11960f78dbc0aba216d5d.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_f26d9701bb61b08e47fdaeb4.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.041992;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_88db7f830eaae8512d1c9cea.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_291b7855eec257cf90c83b3a.woff2')format("woff");}.ffb{font-family:ffb;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;}
.m6c{transform:matrix(0.245005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245005,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.245036,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245036,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245036,0.000000,0.000000,0.250000,0,0);}
.m57{transform:matrix(0.245215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245215,0.000000,0.000000,0.250000,0,0);}
.m85{transform:matrix(0.245268,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245268,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245268,0.000000,0.000000,0.250000,0,0);}
.m64{transform:matrix(0.245275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245275,0.000000,0.000000,0.250000,0,0);}
.m44{transform:matrix(0.245311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245311,0.000000,0.000000,0.250000,0,0);}
.m32{transform:matrix(0.245531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245531,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.245694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245694,0.000000,0.000000,0.250000,0,0);}
.m50{transform:matrix(0.245811,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245811,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245811,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.245852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245852,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.245944,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245944,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245944,0.000000,0.000000,0.250000,0,0);}
.m6a{transform:matrix(0.246017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246017,0.000000,0.000000,0.250000,0,0);}
.m5b{transform:matrix(0.246100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246100,0.000000,0.000000,0.250000,0,0);}
.m5d{transform:matrix(0.246108,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246108,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246108,0.000000,0.000000,0.250000,0,0);}
.m4e{transform:matrix(0.246141,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246141,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246141,0.000000,0.000000,0.250000,0,0);}
.m40{transform:matrix(0.246151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246151,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.246215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246215,0.000000,0.000000,0.250000,0,0);}
.m7f{transform:matrix(0.246304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246304,0.000000,0.000000,0.250000,0,0);}
.m61{transform:matrix(0.246787,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246787,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246787,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.246797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246797,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.246928,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246928,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246928,0.000000,0.000000,0.250000,0,0);}
.m5e{transform:matrix(0.247309,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247309,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247309,0.000000,0.000000,0.250000,0,0);}
.m33{transform:matrix(0.247457,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247457,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247457,0.000000,0.000000,0.250000,0,0);}
.m3f{transform:matrix(0.247505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247505,0.000000,0.000000,0.250000,0,0);}
.m82{transform:matrix(0.247591,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247591,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247591,0.000000,0.000000,0.250000,0,0);}
.m43{transform:matrix(0.247696,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247696,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247696,0.000000,0.000000,0.250000,0,0);}
.m3c{transform:matrix(0.247730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247730,0.000000,0.000000,0.250000,0,0);}
.m6b{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);}
.m12{transform:matrix(0.247758,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247758,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247758,0.000000,0.000000,0.250000,0,0);}
.m45{transform:matrix(0.247763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247763,0.000000,0.000000,0.250000,0,0);}
.m6d{transform:matrix(0.247888,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247888,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247888,0.000000,0.000000,0.250000,0,0);}
.m60{transform:matrix(0.247928,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247928,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247928,0.000000,0.000000,0.250000,0,0);}
.m1{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);}
.m84{transform:matrix(0.248215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248215,0.000000,0.000000,0.250000,0,0);}
.m3d{transform:matrix(0.248627,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248627,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248627,0.000000,0.000000,0.250000,0,0);}
.m70{transform:matrix(0.248656,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248656,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248656,0.000000,0.000000,0.250000,0,0);}
.m6f{transform:matrix(0.248833,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248833,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248833,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.248837,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248837,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248837,0.000000,0.000000,0.250000,0,0);}
.m58{transform:matrix(0.248847,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248847,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248847,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.248852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248852,0.000000,0.000000,0.250000,0,0);}
.m76{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);}
.m5c{transform:matrix(0.249033,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249033,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249033,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.249103,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249103,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249103,0.000000,0.000000,0.250000,0,0);}
.m41{transform:matrix(0.249151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249151,0.000000,0.000000,0.250000,0,0);}
.m38{transform:matrix(0.249177,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249177,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249177,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.249321,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249321,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249321,0.000000,0.000000,0.250000,0,0);}
.m7e{transform:matrix(0.249344,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249344,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249344,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249347,0.000000,0.000000,0.250000,0,0);}
.m7d{transform:matrix(0.249356,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249356,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249356,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.249565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249565,0.000000,0.000000,0.250000,0,0);}
.m73{transform:matrix(0.249586,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249586,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249586,0.000000,0.000000,0.250000,0,0);}
.m7b{transform:matrix(0.249610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249610,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.249689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249689,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249732,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249732,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249732,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.249751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249751,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.249766,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249766,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249766,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.249789,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249789,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249789,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.249933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249933,0.000000,0.000000,0.250000,0,0);}
.m36{transform:matrix(0.249969,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249969,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249969,0.000000,0.000000,0.250000,0,0);}
.m65{transform:matrix(0.249998,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249998,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249998,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);}
.m18{transform:matrix(0.250041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250041,0.000000,0.000000,0.250000,0,0);}
.m15{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);}
.m26{transform:matrix(0.250079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250079,0.000000,0.000000,0.250000,0,0);}
.m47{transform:matrix(0.250098,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250098,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250098,0.000000,0.000000,0.250000,0,0);}
.m42{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);}
.m3a{transform:matrix(0.250194,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250194,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250194,0.000000,0.000000,0.250000,0,0);}
.m5a{transform:matrix(0.250222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250222,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.250232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250232,0.000000,0.000000,0.250000,0,0);}
.m37{transform:matrix(0.250263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250263,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.250273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250273,0.000000,0.000000,0.250000,0,0);}
.m30{transform:matrix(0.250294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250294,0.000000,0.000000,0.250000,0,0);}
.m46{transform:matrix(0.250352,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250352,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250352,0.000000,0.000000,0.250000,0,0);}
.m4d{transform:matrix(0.250385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250385,0.000000,0.000000,0.250000,0,0);}
.m81{transform:matrix(0.250476,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250476,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250476,0.000000,0.000000,0.250000,0,0);}
.m4a{transform:matrix(0.250550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250550,0.000000,0.000000,0.250000,0,0);}
.m16{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);}
.m71{transform:matrix(0.250596,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250596,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250596,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.250627,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250627,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250627,0.000000,0.000000,0.250000,0,0);}
.m52{transform:matrix(0.250648,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250648,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250648,0.000000,0.000000,0.250000,0,0);}
.m39{transform:matrix(0.250708,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250708,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250708,0.000000,0.000000,0.250000,0,0);}
.m3e{transform:matrix(0.250713,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250713,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250713,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.250715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250715,0.000000,0.000000,0.250000,0,0);}
.m63{transform:matrix(0.250840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250840,0.000000,0.000000,0.250000,0,0);}
.m77{transform:matrix(0.250895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250895,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.250955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250955,0.000000,0.000000,0.250000,0,0);}
.m74{transform:matrix(0.250995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250995,0.000000,0.000000,0.250000,0,0);}
.m4f{transform:matrix(0.251024,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251024,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251024,0.000000,0.000000,0.250000,0,0);}
.m4b{transform:matrix(0.251031,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251031,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251031,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.251055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251055,0.000000,0.000000,0.250000,0,0);}
.m78{transform:matrix(0.251098,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251098,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251098,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.251110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251110,0.000000,0.000000,0.250000,0,0);}
.m83{transform:matrix(0.251158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251158,0.000000,0.000000,0.250000,0,0);}
.m48{transform:matrix(0.251179,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251179,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251179,0.000000,0.000000,0.250000,0,0);}
.me{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);}
.m17{transform:matrix(0.251335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251335,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.251419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251419,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.251486,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251486,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251486,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.251510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251510,0.000000,0.000000,0.250000,0,0);}
.m35{transform:matrix(0.251632,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251632,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251632,0.000000,0.000000,0.250000,0,0);}
.m6e{transform:matrix(0.251672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251672,0.000000,0.000000,0.250000,0,0);}
.m69{transform:matrix(0.251679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251679,0.000000,0.000000,0.250000,0,0);}
.m72{transform:matrix(0.251711,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251711,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251711,0.000000,0.000000,0.250000,0,0);}
.m68{transform:matrix(0.251809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251809,0.000000,0.000000,0.250000,0,0);}
.m4c{transform:matrix(0.251945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251945,0.000000,0.000000,0.250000,0,0);}
.m59{transform:matrix(0.251959,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251959,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251959,0.000000,0.000000,0.250000,0,0);}
.m7c{transform:matrix(0.252244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252244,0.000000,0.000000,0.250000,0,0);}
.m31{transform:matrix(0.252263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252263,0.000000,0.000000,0.250000,0,0);}
.m88{transform:matrix(0.252309,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252309,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252309,0.000000,0.000000,0.250000,0,0);}
.m5f{transform:matrix(0.252333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252333,0.000000,0.000000,0.250000,0,0);}
.m66{transform:matrix(0.252347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252347,0.000000,0.000000,0.250000,0,0);}
.m62{transform:matrix(0.252368,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252368,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252368,0.000000,0.000000,0.250000,0,0);}
.m79{transform:matrix(0.252452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252452,0.000000,0.000000,0.250000,0,0);}
.m55{transform:matrix(0.252488,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252488,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252488,0.000000,0.000000,0.250000,0,0);}
.m3b{transform:matrix(0.252507,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252507,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252507,0.000000,0.000000,0.250000,0,0);}
.m54{transform:matrix(0.252550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252550,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.252567,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252567,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252567,0.000000,0.000000,0.250000,0,0);}
.m53{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);}
.m21{transform:matrix(0.252993,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252993,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252993,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.253010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253010,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.253017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253017,0.000000,0.000000,0.250000,0,0);}
.m87{transform:matrix(0.253172,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253172,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253172,0.000000,0.000000,0.250000,0,0);}
.m86{transform:matrix(0.253191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253191,0.000000,0.000000,0.250000,0,0);}
.m51{transform:matrix(0.253342,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253342,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253342,0.000000,0.000000,0.250000,0,0);}
.m80{transform:matrix(0.253462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253462,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.253596,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253596,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253596,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.253835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253835,0.000000,0.000000,0.250000,0,0);}
.m75{transform:matrix(0.253840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253840,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.253880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253880,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.254048,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254048,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254048,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.254325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254325,0.000000,0.000000,0.250000,0,0);}
.m49{transform:matrix(0.254380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254380,0.000000,0.000000,0.250000,0,0);}
.m56{transform:matrix(0.254778,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254778,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254778,0.000000,0.000000,0.250000,0,0);}
.m34{transform:matrix(0.254825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254825,0.000000,0.000000,0.250000,0,0);}
.m67{transform:matrix(0.254892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254892,0.000000,0.000000,0.250000,0,0);}
.m7a{transform:matrix(0.254943,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254943,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254943,0.000000,0.000000,0.250000,0,0);}
.m19{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);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.062700px;}
.ls1{letter-spacing:0.125400px;}
.ls3{letter-spacing:0.188100px;}
.ls5{letter-spacing:0.250800px;}
.ls6{letter-spacing:0.313500px;}
.ls4{letter-spacing:0.376200px;}
.ls9{letter-spacing:0.752400px;}
.ls8{letter-spacing:1.065900px;}
.ls7{letter-spacing:1.379400px;}
.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;}
}
.ws4{word-spacing:-17.242500px;}
.ws56{word-spacing:-16.991700px;}
.ws57{word-spacing:-16.364700px;}
.ws2{word-spacing:-15.990000px;}
.ws4c{word-spacing:-15.800400px;}
.ws1{word-spacing:-15.612300px;}
.ws22{word-spacing:-15.048000px;}
.ws15{word-spacing:-14.734500px;}
.ws16{word-spacing:-14.671800px;}
.ws10{word-spacing:-4.702500px;}
.ws46{word-spacing:-4.639800px;}
.ws13{word-spacing:-4.612500px;}
.ws3f{word-spacing:-4.451700px;}
.ws41{word-spacing:-4.389000px;}
.ws47{word-spacing:-4.326300px;}
.ws40{word-spacing:-4.263600px;}
.ws29{word-spacing:-4.200900px;}
.ws20{word-spacing:-4.138200px;}
.ws42{word-spacing:-4.075500px;}
.ws3c{word-spacing:-3.950100px;}
.ws30{word-spacing:-3.762000px;}
.ws1e{word-spacing:-3.699300px;}
.ws32{word-spacing:-3.636600px;}
.ws34{word-spacing:-3.573900px;}
.ws4a{word-spacing:-3.511200px;}
.ws12{word-spacing:-3.448500px;}
.ws1d{word-spacing:-3.385800px;}
.ws2c{word-spacing:-3.323100px;}
.ws39{word-spacing:-3.197700px;}
.ws35{word-spacing:-3.135000px;}
.ws3b{word-spacing:-3.072300px;}
.ws36{word-spacing:-3.009600px;}
.ws3a{word-spacing:-2.946900px;}
.ws2e{word-spacing:-2.821500px;}
.ws4b{word-spacing:-2.758800px;}
.ws33{word-spacing:-2.570700px;}
.ws4e{word-spacing:-2.508000px;}
.ws45{word-spacing:-2.445300px;}
.ws31{word-spacing:-2.382600px;}
.ws11{word-spacing:-2.319900px;}
.wsa{word-spacing:-2.257200px;}
.ws3d{word-spacing:-2.194500px;}
.ws24{word-spacing:-2.131800px;}
.ws44{word-spacing:-2.069100px;}
.ws1f{word-spacing:-2.006400px;}
.ws28{word-spacing:-1.943700px;}
.ws5d{word-spacing:-1.920000px;}
.ws49{word-spacing:-1.881000px;}
.ws19{word-spacing:-1.818300px;}
.ws2a{word-spacing:-1.692900px;}
.ws1a{word-spacing:-1.504800px;}
.ws17{word-spacing:-1.442100px;}
.wsc{word-spacing:-1.379400px;}
.ws43{word-spacing:-1.316700px;}
.ws37{word-spacing:-1.254000px;}
.ws1b{word-spacing:-1.128600px;}
.ws2f{word-spacing:-1.065900px;}
.ws3e{word-spacing:-1.003200px;}
.ws2b{word-spacing:-0.940500px;}
.ws23{word-spacing:-0.877800px;}
.ws38{word-spacing:-0.815100px;}
.ws2d{word-spacing:-0.752400px;}
.ws26{word-spacing:-0.627000px;}
.ws6{word-spacing:-0.564300px;}
.ws18{word-spacing:-0.438900px;}
.ws14{word-spacing:-0.376200px;}
.ws25{word-spacing:-0.313500px;}
.ws21{word-spacing:-0.250800px;}
.ws27{word-spacing:-0.188100px;}
.ws1c{word-spacing:-0.125400px;}
.ws3{word-spacing:-0.066000px;}
.ws7{word-spacing:-0.062700px;}
.ws0{word-spacing:0.000000px;}
.ws58{word-spacing:0.062700px;}
.ws48{word-spacing:0.250800px;}
.wse{word-spacing:0.313500px;}
.ws9{word-spacing:0.376200px;}
.ws8{word-spacing:0.438900px;}
.ws5a{word-spacing:0.752400px;}
.ws50{word-spacing:0.877800px;}
.ws5b{word-spacing:1.740000px;}
.ws4d{word-spacing:1.818300px;}
.ws5e{word-spacing:1.860000px;}
.ws55{word-spacing:2.445300px;}
.ws52{word-spacing:3.323100px;}
.ws5c{word-spacing:4.380000px;}
.ws51{word-spacing:4.577100px;}
.ws53{word-spacing:4.953300px;}
.wsd{word-spacing:5.204100px;}
.wsb{word-spacing:7.085100px;}
.ws5{word-spacing:7.273200px;}
.wsf{word-spacing:7.649400px;}
.ws54{word-spacing:8.088300px;}
.ws4f{word-spacing:8.401800px;}
.ws59{word-spacing:16.239300px;}
._1{margin-left:-11.310000px;}
._19{margin-left:-7.829430px;}
._2{margin-left:-6.090000px;}
._a{margin-left:-4.549500px;}
._3{margin-left:-3.024000px;}
._0{margin-left:-1.757400px;}
._4{width:1.719000px;}
._5{width:3.610500px;}
._16{width:5.029560px;}
._13{width:6.069360px;}
._9{width:7.354200px;}
._6{width:8.458230px;}
._7{width:9.731040px;}
._1b{width:12.330570px;}
._18{width:13.588950px;}
._1f{width:20.252100px;}
._21{width:21.526710px;}
._15{width:23.153310px;}
._14{width:24.272970px;}
._17{width:26.715630px;}
._1c{width:28.277700px;}
._1d{width:29.479740px;}
._20{width:33.767610px;}
._1e{width:50.617710px;}
._1a{width:55.759110px;}
._12{width:77.128350px;}
._e{width:475.794000px;}
._11{width:480.612000px;}
._10{width:482.790000px;}
._f{width:496.056000px;}
._c{width:504.702000px;}
._b{width:506.880000px;}
._d{width:508.134000px;}
._8{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);}
.fs9{font-size:42.000000px;}
.fs8{font-size:60.000000px;}
.fs5{font-size:61.500000px;}
.fs3{font-size:62.700000px;}
.fs4{font-size:66.000000px;}
.fs7{font-size:72.000000px;}
.fs6{font-size:78.000000px;}
.fs2{font-size:87.000000px;}
.fs1{font-size:126.000000px;}
.fs0{font-size:174.000000px;}
.y0{bottom:0.000000px;}
.y1c{bottom:48.435450px;}
.y29{bottom:48.837000px;}
.y184{bottom:49.498950px;}
.y214{bottom:91.891350px;}
.y213{bottom:104.491350px;}
.y212{bottom:117.091350px;}
.ye6{bottom:127.935150px;}
.y38{bottom:128.513850px;}
.y1ab{bottom:128.850975px;}
.y1f3{bottom:128.952150px;}
.y104{bottom:135.817950px;}
.y5e{bottom:136.982400px;}
.y1d0{bottom:139.077900px;}
.y211{bottom:142.291350px;}
.y120{bottom:143.876775px;}
.y143{bottom:144.842700px;}
.y1aa{bottom:151.344600px;}
.y1f2{bottom:151.445775px;}
.ye5{bottom:153.435150px;}
.y37{bottom:154.013850px;}
.y210{bottom:154.891350px;}
.y103{bottom:161.321175px;}
.y1cf{bottom:161.571525px;}
.y5d{bottom:162.482400px;}
.y11f{bottom:169.380000px;}
.y142{bottom:170.342700px;}
.y1a9{bottom:173.853450px;}
.y1f1{bottom:173.939400px;}
.y15f{bottom:178.947000px;}
.y36{bottom:179.506725px;}
.y1ce{bottom:184.065150px;}
.y102{bottom:186.824400px;}
.ye3{bottom:192.442800px;}
.y11e{bottom:194.880000px;}
.y141{bottom:195.839475px;}
.y1f0{bottom:196.456575px;}
.y5c{bottom:200.829525px;}
.y15e{bottom:204.443775px;}
.y35{bottom:205.012275px;}
.y1a8{bottom:209.764875px;}
.y101{bottom:212.327625px;}
.y7f{bottom:217.325550px;}
.y11d{bottom:220.380000px;}
.y140{bottom:221.342700px;}
.y1cd{bottom:222.860775px;}
.y5b{bottom:226.332750px;}
.y15d{bottom:229.947000px;}
.y34{bottom:230.515500px;}
.y1a7{bottom:232.258500px;}
.ye2{bottom:232.947000px;}
.y1ef{bottom:233.057700px;}
.y100{bottom:237.830850px;}
.y7e{bottom:242.825550px;}
.y1cc{bottom:245.354400px;}
.y11c{bottom:245.880000px;}
.y13f{bottom:246.833025px;}
.yc1{bottom:246.929850px;}
.y5a{bottom:251.832750px;}
.y15c{bottom:255.447000px;}
.y1ee{bottom:255.551325px;}
.ye1{bottom:258.447000px;}
.yff{bottom:263.330850px;}
.y1cb{bottom:267.854400px;}
.y7d{bottom:268.315875px;}
.y1a6{bottom:268.624500px;}
.y11b{bottom:271.380000px;}
.y33{bottom:271.772100px;}
.y13e{bottom:272.336250px;}
.yc0{bottom:272.429850px;}
.y59{bottom:277.326300px;}
.y1ed{bottom:278.044950px;}
.y15b{bottom:280.947000px;}
.ye0{bottom:283.947000px;}
.y99{bottom:285.562200px;}
.yfe{bottom:288.830850px;}
.y1ca{bottom:290.353125px;}
.y1a5{bottom:291.118125px;}
.y7c{bottom:293.819100px;}
.y26{bottom:295.632225px;}
.y11a{bottom:296.880000px;}
.y32{bottom:297.272100px;}
.y13d{bottom:297.839475px;}
.ybf{bottom:297.923400px;}
.y1ec{bottom:300.538575px;}
.y58{bottom:302.829525px;}
.y15a{bottom:306.442275px;}
.ydf{bottom:309.447000px;}
.y98{bottom:311.062200px;}
.y1a4{bottom:313.611750px;}
.yfd{bottom:314.330850px;}
.y7b{bottom:319.322325px;}
.y119{bottom:322.380000px;}
.y31{bottom:322.772100px;}
.y13c{bottom:323.342700px;}
.ybe{bottom:323.426625px;}
.y57{bottom:328.332750px;}
.y1c9{bottom:328.819575px;}
.y159{bottom:331.945500px;}
.yde{bottom:334.947000px;}
.y1eb{bottom:336.073800px;}
.y1a3{bottom:336.105375px;}
.y25{bottom:336.129975px;}
.y97{bottom:336.555750px;}
.yfc{bottom:339.830850px;}
.y7a{bottom:344.825550px;}
.y30{bottom:348.272100px;}
.y13b{bottom:348.842700px;}
.ybd{bottom:348.929850px;}
.y1c8{bottom:351.313200px;}
.y56{bottom:353.832750px;}
.y158{bottom:357.448725px;}
.y1ea{bottom:358.567425px;}
.ydd{bottom:360.447000px;}
.y96{bottom:362.058975px;}
.y118{bottom:362.853225px;}
.yfb{bottom:365.330850px;}
.y2f{bottom:373.772100px;}
.y1a2{bottom:374.336700px;}
.y13a{bottom:374.342700px;}
.ybc{bottom:374.429850px;}
.y24{bottom:376.627725px;}
.y55{bottom:379.329150px;}
.y77{bottom:381.327450px;}
.ydc{bottom:385.947000px;}
.y95{bottom:387.562200px;}
.y117{bottom:388.356450px;}
.y1c7{bottom:389.779650px;}
.yfa{bottom:390.825525px;}
.y1b{bottom:392.240400px;}
.y157{bottom:395.256825px;}
.y23{bottom:396.123225px;}
.y1e9{bottom:396.234450px;}
.y1a1{bottom:396.844575px;}
.y2e{bottom:399.265650px;}
.y139{bottom:399.842700px;}
.ybb{bottom:399.929850px;}
.y4{bottom:404.164650px;}
.y76{bottom:406.827450px;}
.ydb{bottom:411.447000px;}
.y1c6{bottom:412.275750px;}
.y94{bottom:413.062200px;}
.y116{bottom:413.856450px;}
.y1a{bottom:417.743625px;}
.y1e8{bottom:418.734450px;}
.y54{bottom:419.112300px;}
.y1a0{bottom:419.338200px;}
.y156{bottom:420.760050px;}
.y2d{bottom:424.768875px;}
.yba{bottom:425.429850px;}
.y106{bottom:429.653700px;}
.y75{bottom:432.327450px;}
.y22{bottom:435.129600px;}
.yda{bottom:436.938600px;}
.y93{bottom:438.562200px;}
.y115{bottom:439.356450px;}
.y138{bottom:439.663500px;}
.y1e7{bottom:441.239850px;}
.y19{bottom:443.246850px;}
.y53{bottom:444.612300px;}
.y155{bottom:446.260050px;}
.y2c{bottom:450.272100px;}
.y1c5{bottom:450.742200px;}
.yb9{bottom:450.929850px;}
.y21{bottom:454.625100px;}
.y19f{bottom:457.569525px;}
.y74{bottom:457.827450px;}
.y182{bottom:460.252275px;}
.yd9{bottom:462.441825px;}
.y105{bottom:463.328550px;}
.y1e6{bottom:463.733475px;}
.y92{bottom:464.055750px;}
.y114{bottom:464.856450px;}
.y137{bottom:465.163500px;}
.y52{bottom:470.102625px;}
.y154{bottom:471.756825px;}
.y1c4{bottom:473.285925px;}
.y20{bottom:474.120600px;}
.y2b{bottom:475.772100px;}
.yb8{bottom:476.429850px;}
.y19e{bottom:480.063150px;}
.y73{bottom:483.327450px;}
.y181{bottom:485.755500px;}
.yd8{bottom:487.945050px;}
.y18{bottom:489.049200px;}
.y91{bottom:489.558975px;}
.y113{bottom:490.339950px;}
.y136{bottom:490.663500px;}
.y51{bottom:495.605850px;}
.y153{bottom:497.260050px;}
.y1e5{bottom:499.268700px;}
.y19d{bottom:502.557450px;}
.y2a{bottom:507.100200px;}
.y72{bottom:508.827450px;}
.y180{bottom:511.258725px;}
.y1c3{bottom:512.081550px;}
.y3{bottom:512.688450px;}
.y1f{bottom:513.126975px;}
.y17{bottom:514.552425px;}
.y90{bottom:515.062200px;}
.y112{bottom:515.843175px;}
.y135{bottom:516.163500px;}
.yb7{bottom:516.288825px;}
.y50{bottom:521.109075px;}
.y1e4{bottom:521.762325px;}
.y152{bottom:522.760050px;}
.yf9{bottom:524.454900px;}
.yd7{bottom:525.972600px;}
.y1e{bottom:532.622475px;}
.y1c2{bottom:534.575175px;}
.y17f{bottom:536.761950px;}
.y19c{bottom:538.923450px;}
.y16{bottom:540.055650px;}
.y8f{bottom:540.559650px;}
.y111{bottom:541.346400px;}
.y134{bottom:541.663500px;}
.yb6{bottom:541.792050px;}
.y4f{bottom:546.612300px;}
.y151{bottom:548.260050px;}
.y71{bottom:549.040275px;}
.yf8{bottom:549.951675px;}
.yd6{bottom:551.472600px;}
.y1c1{bottom:557.068800px;}
.y1e3{bottom:559.758525px;}
.y19b{bottom:561.423450px;}
.y2{bottom:562.191450px;}
.y17e{bottom:562.255500px;}
.y15{bottom:565.558875px;}
.y133{bottom:567.163500px;}
.yb5{bottom:567.292050px;}
.y1d{bottom:571.628850px;}
.y4e{bottom:572.106675px;}
.y150{bottom:573.760050px;}
.y70{bottom:574.543500px;}
.yf7{bottom:575.454900px;}
.yd5{bottom:576.972600px;}
.y8e{bottom:578.900700px;}
.y1c0{bottom:579.562425px;}
.y1e2{bottom:582.252150px;}
.y110{bottom:582.555975px;}
.y19a{bottom:583.979850px;}
.y17d{bottom:587.758725px;}
.y14{bottom:591.062100px;}
.y132{bottom:592.663500px;}
.yb4{bottom:592.792050px;}
.y27{bottom:597.185550px;}
.y14f{bottom:599.260050px;}
.y6f{bottom:600.046725px;}
.yf6{bottom:600.954900px;}
.yd4{bottom:602.472600px;}
.y8d{bottom:604.400700px;}
.y1e1{bottom:604.753050px;}
.y204{bottom:605.591175px;}
.y199{bottom:606.473475px;}
.y10f{bottom:608.059200px;}
.y4d{bottom:611.153100px;}
.y1{bottom:611.694450px;}
.y17c{bottom:613.261950px;}
.y1bf{bottom:617.119725px;}
.y131{bottom:618.162300px;}
.yb3{bottom:618.288825px;}
.y14e{bottom:624.760050px;}
.y6e{bottom:625.549950px;}
.y1e0{bottom:627.246675px;}
.yd3{bottom:627.969375px;}
.y203{bottom:628.084800px;}
.y8c{bottom:629.900700px;}
.y10e{bottom:633.559200px;}
.y4c{bottom:636.656325px;}
.y13{bottom:636.958500px;}
.y17b{bottom:638.761950px;}
.yf5{bottom:638.986350px;}
.y1be{bottom:639.613350px;}
.yb2{bottom:643.792050px;}
.y198{bottom:644.328600px;}
.y14d{bottom:650.260050px;}
.y202{bottom:650.612175px;}
.y6d{bottom:651.049950px;}
.yd2{bottom:653.472600px;}
.y8b{bottom:655.400700px;}
.y130{bottom:656.174175px;}
.y10d{bottom:659.059200px;}
.y1bd{bottom:662.106975px;}
.y4b{bottom:662.159550px;}
.y12{bottom:662.461725px;}
.y17a{bottom:664.261950px;}
.yf4{bottom:664.486350px;}
.y1df{bottom:665.791500px;}
.y197{bottom:666.822225px;}
.yb1{bottom:669.292050px;}
.y201{bottom:673.105800px;}
.y6c{bottom:676.549950px;}
.yd1{bottom:678.972600px;}
.y8a{bottom:680.897475px;}
.y12f{bottom:681.677400px;}
.y10c{bottom:684.549525px;}
.y1bc{bottom:684.600600px;}
.y4a{bottom:687.659550px;}
.y1de{bottom:688.317750px;}
.y16c{bottom:688.760250px;}
.y196{bottom:689.315850px;}
.y179{bottom:689.761950px;}
.yf3{bottom:689.986350px;}
.yb0{bottom:694.778775px;}
.y6b{bottom:702.049950px;}
.yd0{bottom:704.472600px;}
.y89{bottom:706.400700px;}
.y1bb{bottom:707.106000px;}
.y12e{bottom:707.177400px;}
.y11{bottom:708.812700px;}
.y10b{bottom:710.052750px;}
.y1dd{bottom:710.811375px;}
.y195{bottom:711.809475px;}
.y49{bottom:713.159550px;}
.y200{bottom:714.033225px;}
.y16b{bottom:714.263475px;}
.y178{bottom:715.261950px;}
.yf2{bottom:715.486350px;}
.yaf{bottom:720.282000px;}
.y6a{bottom:727.546725px;}
.y88{bottom:731.900700px;}
.y5{bottom:732.300150px;}
.y12d{bottom:732.677400px;}
.y10{bottom:734.315925px;}
.y10a{bottom:735.555975px;}
.y1ff{bottom:736.526850px;}
.y48{bottom:738.659550px;}
.y16a{bottom:739.766700px;}
.y177{bottom:740.761950px;}
.ye4{bottom:740.907750px;}
.yf1{bottom:740.986350px;}
.y1ba{bottom:747.139950px;}
.y1dc{bottom:747.412500px;}
.y194{bottom:747.673875px;}
.y69{bottom:753.049950px;}
.y12c{bottom:758.177400px;}
.yae{bottom:758.231175px;}
.y1fe{bottom:759.020475px;}
.yf{bottom:759.819150px;}
.y109{bottom:761.059200px;}
.y47{bottom:764.159550px;}
.y169{bottom:765.269925px;}
.y176{bottom:766.260600px;}
.yf0{bottom:766.482975px;}
.y1b9{bottom:769.693575px;}
.y1db{bottom:769.906125px;}
.y20f{bottom:770.073900px;}
.y193{bottom:770.167500px;}
.y87{bottom:771.369975px;}
.y68{bottom:778.549950px;}
.y1fd{bottom:781.514100px;}
.y12b{bottom:783.677250px;}
.yad{bottom:783.734400px;}
.ye{bottom:785.319000px;}
.y108{bottom:786.559200px;}
.y20e{bottom:788.073900px;}
.y46{bottom:789.659550px;}
.y168{bottom:790.773150px;}
.yef{bottom:791.986200px;}
.y1b8{bottom:792.187200px;}
.y1da{bottom:792.399750px;}
.y192{bottom:792.661125px;}
.ycf{bottom:793.719375px;}
.y86{bottom:796.873200px;}
.y67{bottom:804.049950px;}
.y175{bottom:804.272475px;}
.y20d{bottom:806.073900px;}
.y12a{bottom:809.177250px;}
.yac{bottom:809.237625px;}
.yd{bottom:810.811200px;}
.y107{bottom:812.059200px;}
.y1d9{bottom:814.928325px;}
.y191{bottom:815.154750px;}
.y45{bottom:815.159550px;}
.y167{bottom:816.276375px;}
.yee{bottom:817.486200px;}
.yce{bottom:819.222600px;}
.y85{bottom:822.373200px;}
.y1fc{bottom:822.441525px;}
.y20c{bottom:824.073900px;}
.y1b7{bottom:829.195875px;}
.y66{bottom:829.549950px;}
.y174{bottom:829.775700px;}
.yab{bottom:834.740850px;}
.y166{bottom:841.779600px;}
.yed{bottom:842.986200px;}
.ycd{bottom:844.722600px;}
.y1fb{bottom:844.935150px;}
.y84{bottom:847.873200px;}
.y1d8{bottom:850.463550px;}
.y190{bottom:850.893750px;}
.y1b6{bottom:851.689500px;}
.y128{bottom:852.311100px;}
.y14a{bottom:854.047350px;}
.y44{bottom:854.206800px;}
.y65{bottom:855.049950px;}
.y173{bottom:855.275700px;}
.yc{bottom:857.162175px;}
.yaa{bottom:860.240850px;}
.y165{bottom:867.282825px;}
.y1fa{bottom:867.437325px;}
.yec{bottom:868.486200px;}
.ycc{bottom:870.222600px;}
.y1d7{bottom:872.957175px;}
.y83{bottom:873.373200px;}
.y18f{bottom:873.393750px;}
.y1b5{bottom:874.183125px;}
.y127{bottom:877.811100px;}
.y149{bottom:879.547350px;}
.y43{bottom:879.693900px;}
.y64{bottom:880.556475px;}
.y172{bottom:880.772475px;}
.yb{bottom:882.665400px;}
.ya9{bottom:885.740850px;}
.y1f9{bottom:889.930950px;}
.y164{bottom:892.786050px;}
.yeb{bottom:893.982975px;}
.ycb{bottom:895.722600px;}
.y18e{bottom:895.900125px;}
.y1b4{bottom:896.676750px;}
.y82{bottom:898.873200px;}
.y126{bottom:903.311100px;}
.y20b{bottom:904.053900px;}
.y148{bottom:905.044125px;}
.y42{bottom:905.197125px;}
.y171{bottom:906.275700px;}
.ya{bottom:908.163750px;}
.y1d6{bottom:912.991125px;}
.y79{bottom:913.450800px;}
.y163{bottom:918.286050px;}
.y18d{bottom:918.393750px;}
.y1b3{bottom:919.170375px;}
.yea{bottom:919.486200px;}
.yca{bottom:921.222600px;}
.y20a{bottom:922.053900px;}
.y81{bottom:924.373200px;}
.ya8{bottom:924.767025px;}
.y125{bottom:928.811100px;}
.y147{bottom:930.547350px;}
.y41{bottom:930.700350px;}
.y206{bottom:931.214700px;}
.y170{bottom:931.775700px;}
.y1d5{bottom:935.484750px;}
.y209{bottom:940.053900px;}
.y18c{bottom:940.936125px;}
.y1b2{bottom:941.664000px;}
.y162{bottom:943.786050px;}
.ye9{bottom:944.986200px;}
.y80{bottom:949.873200px;}
.ya7{bottom:950.270250px;}
.y78{bottom:951.312900px;}
.y9{bottom:952.586700px;}
.y205{bottom:953.717250px;}
.y124{bottom:954.311100px;}
.y146{bottom:956.047350px;}
.y40{bottom:956.203575px;}
.y16f{bottom:957.275700px;}
.y1d4{bottom:957.978375px;}
.y208{bottom:958.053900px;}
.yc9{bottom:959.614200px;}
.y161{bottom:969.286050px;}
.ya6{bottom:975.770250px;}
.y207{bottom:976.053900px;}
.y8{bottom:978.083475px;}
.y18b{bottom:978.791250px;}
.y123{bottom:979.811100px;}
.y1b1{bottom:980.130450px;}
.y145{bottom:981.544125px;}
.y3f{bottom:981.706800px;}
.ye8{bottom:983.315775px;}
.yc8{bottom:985.114200px;}
.y9f{bottom:987.830700px;}
.y1f8{bottom:994.639950px;}
.y160{bottom:994.786050px;}
.y183{bottom:995.614200px;}
.y1d3{bottom:998.012325px;}
.ya5{bottom:1001.270250px;}
.y18a{bottom:1001.284875px;}
.y1b0{bottom:1002.624075px;}
.y7{bottom:1003.586700px;}
.y122{bottom:1005.311100px;}
.y144{bottom:1007.047350px;}
.y3e{bottom:1007.206800px;}
.ye7{bottom:1008.819000px;}
.yc7{bottom:1010.614200px;}
.y9e{bottom:1013.324250px;}
.y1f7{bottom:1017.157275px;}
.y1d2{bottom:1020.505950px;}
.y63{bottom:1021.114200px;}
.y189{bottom:1023.778500px;}
.ya4{bottom:1026.770250px;}
.y121{bottom:1030.811100px;}
.y3d{bottom:1032.706800px;}
.y16d{bottom:1032.897600px;}
.yc6{bottom:1036.110975px;}
.y9d{bottom:1038.827475px;}
.y1f6{bottom:1039.650900px;}
.y1af{bottom:1042.658025px;}
.y1d1{bottom:1043.027400px;}
.y188{bottom:1046.272125px;}
.y14c{bottom:1046.610975px;}
.y62{bottom:1046.614200px;}
.y6{bottom:1051.401000px;}
.ya3{bottom:1052.270250px;}
.y3c{bottom:1058.204025px;}
.yc5{bottom:1061.614200px;}
.y1f5{bottom:1062.144525px;}
.y9c{bottom:1064.330700px;}
.y1ae{bottom:1065.151650px;}
.y129{bottom:1072.110975px;}
.y61{bottom:1072.114200px;}
.ya2{bottom:1077.770250px;}
.y187{bottom:1081.133325px;}
.yc4{bottom:1087.110975px;}
.y1ad{bottom:1087.647750px;}
.y9b{bottom:1089.830700px;}
.y16e{bottom:1097.607750px;}
.y3b{bottom:1097.610975px;}
.y60{bottom:1097.614200px;}
.ya1{bottom:1103.270250px;}
.y1f4{bottom:1103.620575px;}
.y186{bottom:1103.626950px;}
.yc3{bottom:1112.614200px;}
.y9a{bottom:1115.330700px;}
.y5f{bottom:1123.110975px;}
.y3a{bottom:1123.114200px;}
.y1ac{bottom:1126.114200px;}
.y185{bottom:1126.120575px;}
.yc2{bottom:1146.643650px;}
.y14b{bottom:1148.611950px;}
.y39{bottom:1148.614200px;}
.ya0{bottom:1149.342000px;}
.y28{bottom:1195.814850px;}
.h1e{height:34.719727px;}
.hb{height:45.325500px;}
.h16{height:48.402686px;}
.h1c{height:48.750000px;}
.hc{height:49.434000px;}
.h1d{height:49.599609px;}
.hf{height:49.968750px;}
.he{height:50.839600px;}
.h5{height:50.943750px;}
.h19{height:50.949150px;}
.h7{height:50.950350px;}
.h18{height:50.952750px;}
.h14{height:50.953950px;}
.h6{height:50.956650px;}
.h12{height:50.958150px;}
.h11{height:50.966250px;}
.h1a{height:50.969550px;}
.h8{height:50.974950px;}
.h17{height:50.982450px;}
.h10{height:50.995350px;}
.h1b{height:51.770361px;}
.h9{height:51.831592px;}
.hd{height:52.921080px;}
.ha{height:55.704000px;}
.h15{height:60.770618px;}
.h13{height:65.834836px;}
.h4{height:73.431164px;}
.h3{height:94.374000px;}
.h2{height:146.862327px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:34.015800px;}
.xe{left:43.996050px;}
.x9{left:49.100550px;}
.x4{left:54.758100px;}
.x1{left:68.147100px;}
.x7{left:73.300800px;}
.x14{left:77.598450px;}
.xb{left:84.001800px;}
.xa{left:94.779675px;}
.xc{left:105.265425px;}
.x8{left:108.617175px;}
.xd{left:112.276425px;}
.x2{left:127.698600px;}
.x16{left:162.588450px;}
.x10{left:170.078700px;}
.x15{left:198.693450px;}
.x17{left:209.565300px;}
.x5{left:219.188850px;}
.x12{left:251.929050px;}
.x11{left:260.433000px;}
.x13{left:276.386550px;}
.xf{left:574.621650px;}
.x3{left:597.062100px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.055733pt;}
.ls1{letter-spacing:0.111467pt;}
.ls3{letter-spacing:0.167200pt;}
.ls5{letter-spacing:0.222933pt;}
.ls6{letter-spacing:0.278667pt;}
.ls4{letter-spacing:0.334400pt;}
.ls9{letter-spacing:0.668800pt;}
.ls8{letter-spacing:0.947467pt;}
.ls7{letter-spacing:1.226133pt;}
.ws4{word-spacing:-15.326667pt;}
.ws56{word-spacing:-15.103733pt;}
.ws57{word-spacing:-14.546400pt;}
.ws2{word-spacing:-14.213333pt;}
.ws4c{word-spacing:-14.044800pt;}
.ws1{word-spacing:-13.877600pt;}
.ws22{word-spacing:-13.376000pt;}
.ws15{word-spacing:-13.097333pt;}
.ws16{word-spacing:-13.041600pt;}
.ws10{word-spacing:-4.180000pt;}
.ws46{word-spacing:-4.124267pt;}
.ws13{word-spacing:-4.100000pt;}
.ws3f{word-spacing:-3.957067pt;}
.ws41{word-spacing:-3.901333pt;}
.ws47{word-spacing:-3.845600pt;}
.ws40{word-spacing:-3.789867pt;}
.ws29{word-spacing:-3.734133pt;}
.ws20{word-spacing:-3.678400pt;}
.ws42{word-spacing:-3.622667pt;}
.ws3c{word-spacing:-3.511200pt;}
.ws30{word-spacing:-3.344000pt;}
.ws1e{word-spacing:-3.288267pt;}
.ws32{word-spacing:-3.232533pt;}
.ws34{word-spacing:-3.176800pt;}
.ws4a{word-spacing:-3.121067pt;}
.ws12{word-spacing:-3.065333pt;}
.ws1d{word-spacing:-3.009600pt;}
.ws2c{word-spacing:-2.953867pt;}
.ws39{word-spacing:-2.842400pt;}
.ws35{word-spacing:-2.786667pt;}
.ws3b{word-spacing:-2.730933pt;}
.ws36{word-spacing:-2.675200pt;}
.ws3a{word-spacing:-2.619467pt;}
.ws2e{word-spacing:-2.508000pt;}
.ws4b{word-spacing:-2.452267pt;}
.ws33{word-spacing:-2.285067pt;}
.ws4e{word-spacing:-2.229333pt;}
.ws45{word-spacing:-2.173600pt;}
.ws31{word-spacing:-2.117867pt;}
.ws11{word-spacing:-2.062133pt;}
.wsa{word-spacing:-2.006400pt;}
.ws3d{word-spacing:-1.950667pt;}
.ws24{word-spacing:-1.894933pt;}
.ws44{word-spacing:-1.839200pt;}
.ws1f{word-spacing:-1.783467pt;}
.ws28{word-spacing:-1.727733pt;}
.ws5d{word-spacing:-1.706667pt;}
.ws49{word-spacing:-1.672000pt;}
.ws19{word-spacing:-1.616267pt;}
.ws2a{word-spacing:-1.504800pt;}
.ws1a{word-spacing:-1.337600pt;}
.ws17{word-spacing:-1.281867pt;}
.wsc{word-spacing:-1.226133pt;}
.ws43{word-spacing:-1.170400pt;}
.ws37{word-spacing:-1.114667pt;}
.ws1b{word-spacing:-1.003200pt;}
.ws2f{word-spacing:-0.947467pt;}
.ws3e{word-spacing:-0.891733pt;}
.ws2b{word-spacing:-0.836000pt;}
.ws23{word-spacing:-0.780267pt;}
.ws38{word-spacing:-0.724533pt;}
.ws2d{word-spacing:-0.668800pt;}
.ws26{word-spacing:-0.557333pt;}
.ws6{word-spacing:-0.501600pt;}
.ws18{word-spacing:-0.390133pt;}
.ws14{word-spacing:-0.334400pt;}
.ws25{word-spacing:-0.278667pt;}
.ws21{word-spacing:-0.222933pt;}
.ws27{word-spacing:-0.167200pt;}
.ws1c{word-spacing:-0.111467pt;}
.ws3{word-spacing:-0.058667pt;}
.ws7{word-spacing:-0.055733pt;}
.ws0{word-spacing:0.000000pt;}
.ws58{word-spacing:0.055733pt;}
.ws48{word-spacing:0.222933pt;}
.wse{word-spacing:0.278667pt;}
.ws9{word-spacing:0.334400pt;}
.ws8{word-spacing:0.390133pt;}
.ws5a{word-spacing:0.668800pt;}
.ws50{word-spacing:0.780267pt;}
.ws5b{word-spacing:1.546667pt;}
.ws4d{word-spacing:1.616267pt;}
.ws5e{word-spacing:1.653333pt;}
.ws55{word-spacing:2.173600pt;}
.ws52{word-spacing:2.953867pt;}
.ws5c{word-spacing:3.893333pt;}
.ws51{word-spacing:4.068533pt;}
.ws53{word-spacing:4.402933pt;}
.wsd{word-spacing:4.625867pt;}
.wsb{word-spacing:6.297867pt;}
.ws5{word-spacing:6.465067pt;}
.wsf{word-spacing:6.799467pt;}
.ws54{word-spacing:7.189600pt;}
.ws4f{word-spacing:7.468267pt;}
.ws59{word-spacing:14.434933pt;}
._1{margin-left:-10.053333pt;}
._19{margin-left:-6.959493pt;}
._2{margin-left:-5.413333pt;}
._a{margin-left:-4.044000pt;}
._3{margin-left:-2.688000pt;}
._0{margin-left:-1.562133pt;}
._4{width:1.528000pt;}
._5{width:3.209333pt;}
._16{width:4.470720pt;}
._13{width:5.394987pt;}
._9{width:6.537067pt;}
._6{width:7.518427pt;}
._7{width:8.649813pt;}
._1b{width:10.960507pt;}
._18{width:12.079067pt;}
._1f{width:18.001867pt;}
._21{width:19.134853pt;}
._15{width:20.580720pt;}
._14{width:21.575973pt;}
._17{width:23.747227pt;}
._1c{width:25.135733pt;}
._1d{width:26.204213pt;}
._20{width:30.015653pt;}
._1e{width:44.993520pt;}
._1a{width:49.563653pt;}
._12{width:68.558533pt;}
._e{width:422.928000pt;}
._11{width:427.210667pt;}
._10{width:429.146667pt;}
._f{width:440.938667pt;}
._c{width:448.624000pt;}
._b{width:450.560000pt;}
._d{width:451.674667pt;}
._8{width:462.352000pt;}
.fs9{font-size:37.333333pt;}
.fs8{font-size:53.333333pt;}
.fs5{font-size:54.666667pt;}
.fs3{font-size:55.733333pt;}
.fs4{font-size:58.666667pt;}
.fs7{font-size:64.000000pt;}
.fs6{font-size:69.333333pt;}
.fs2{font-size:77.333333pt;}
.fs1{font-size:112.000000pt;}
.fs0{font-size:154.666667pt;}
.y0{bottom:0.000000pt;}
.y1c{bottom:43.053733pt;}
.y29{bottom:43.410667pt;}
.y184{bottom:43.999067pt;}
.y214{bottom:81.681200pt;}
.y213{bottom:92.881200pt;}
.y212{bottom:104.081200pt;}
.ye6{bottom:113.720133pt;}
.y38{bottom:114.234533pt;}
.y1ab{bottom:114.534200pt;}
.y1f3{bottom:114.624133pt;}
.y104{bottom:120.727067pt;}
.y5e{bottom:121.762133pt;}
.y1d0{bottom:123.624800pt;}
.y211{bottom:126.481200pt;}
.y120{bottom:127.890467pt;}
.y143{bottom:128.749067pt;}
.y1aa{bottom:134.528533pt;}
.y1f2{bottom:134.618467pt;}
.ye5{bottom:136.386800pt;}
.y37{bottom:136.901200pt;}
.y210{bottom:137.681200pt;}
.y103{bottom:143.396600pt;}
.y1cf{bottom:143.619133pt;}
.y5d{bottom:144.428800pt;}
.y11f{bottom:150.560000pt;}
.y142{bottom:151.415733pt;}
.y1a9{bottom:154.536400pt;}
.y1f1{bottom:154.612800pt;}
.y15f{bottom:159.064000pt;}
.y36{bottom:159.561533pt;}
.y1ce{bottom:163.613467pt;}
.y102{bottom:166.066133pt;}
.ye3{bottom:171.060267pt;}
.y11e{bottom:173.226667pt;}
.y141{bottom:174.079533pt;}
.y1f0{bottom:174.628067pt;}
.y5c{bottom:178.515133pt;}
.y15e{bottom:181.727800pt;}
.y35{bottom:182.233133pt;}
.y1a8{bottom:186.457667pt;}
.y101{bottom:188.735667pt;}
.y7f{bottom:193.178267pt;}
.y11d{bottom:195.893333pt;}
.y140{bottom:196.749067pt;}
.y1cd{bottom:198.098467pt;}
.y5b{bottom:201.184667pt;}
.y15d{bottom:204.397333pt;}
.y34{bottom:204.902667pt;}
.y1a7{bottom:206.452000pt;}
.ye2{bottom:207.064000pt;}
.y1ef{bottom:207.162400pt;}
.y100{bottom:211.405200pt;}
.y7e{bottom:215.844933pt;}
.y1cc{bottom:218.092800pt;}
.y11c{bottom:218.560000pt;}
.y13f{bottom:219.407133pt;}
.yc1{bottom:219.493200pt;}
.y5a{bottom:223.851333pt;}
.y15c{bottom:227.064000pt;}
.y1ee{bottom:227.156733pt;}
.ye1{bottom:229.730667pt;}
.yff{bottom:234.071867pt;}
.y1cb{bottom:238.092800pt;}
.y7d{bottom:238.503000pt;}
.y1a6{bottom:238.777333pt;}
.y11b{bottom:241.226667pt;}
.y33{bottom:241.575200pt;}
.y13e{bottom:242.076667pt;}
.yc0{bottom:242.159867pt;}
.y59{bottom:246.512267pt;}
.y1ed{bottom:247.151067pt;}
.y15b{bottom:249.730667pt;}
.ye0{bottom:252.397333pt;}
.y99{bottom:253.833067pt;}
.yfe{bottom:256.738533pt;}
.y1ca{bottom:258.091667pt;}
.y1a5{bottom:258.771667pt;}
.y7c{bottom:261.172533pt;}
.y26{bottom:262.784200pt;}
.y11a{bottom:263.893333pt;}
.y32{bottom:264.241867pt;}
.y13d{bottom:264.746200pt;}
.ybf{bottom:264.820800pt;}
.y1ec{bottom:267.145400pt;}
.y58{bottom:269.181800pt;}
.y15a{bottom:272.393133pt;}
.ydf{bottom:275.064000pt;}
.y98{bottom:276.499733pt;}
.y1a4{bottom:278.766000pt;}
.yfd{bottom:279.405200pt;}
.y7b{bottom:283.842067pt;}
.y119{bottom:286.560000pt;}
.y31{bottom:286.908533pt;}
.y13c{bottom:287.415733pt;}
.ybe{bottom:287.490333pt;}
.y57{bottom:291.851333pt;}
.y1c9{bottom:292.284067pt;}
.y159{bottom:295.062667pt;}
.yde{bottom:297.730667pt;}
.y1eb{bottom:298.732267pt;}
.y1a3{bottom:298.760333pt;}
.y25{bottom:298.782200pt;}
.y97{bottom:299.160667pt;}
.yfc{bottom:302.071867pt;}
.y7a{bottom:306.511600pt;}
.y30{bottom:309.575200pt;}
.y13b{bottom:310.082400pt;}
.ybd{bottom:310.159867pt;}
.y1c8{bottom:312.278400pt;}
.y56{bottom:314.518000pt;}
.y158{bottom:317.732200pt;}
.y1ea{bottom:318.726600pt;}
.ydd{bottom:320.397333pt;}
.y96{bottom:321.830200pt;}
.y118{bottom:322.536200pt;}
.yfb{bottom:324.738533pt;}
.y2f{bottom:332.241867pt;}
.y1a2{bottom:332.743733pt;}
.y13a{bottom:332.749067pt;}
.ybc{bottom:332.826533pt;}
.y24{bottom:334.780200pt;}
.y55{bottom:337.181467pt;}
.y77{bottom:338.957733pt;}
.ydc{bottom:343.064000pt;}
.y95{bottom:344.499733pt;}
.y117{bottom:345.205733pt;}
.y1c7{bottom:346.470800pt;}
.yfa{bottom:347.400467pt;}
.y1b{bottom:348.658133pt;}
.y157{bottom:351.339400pt;}
.y23{bottom:352.109533pt;}
.y1e9{bottom:352.208400pt;}
.y1a1{bottom:352.750733pt;}
.y2e{bottom:354.902800pt;}
.y139{bottom:355.415733pt;}
.ybb{bottom:355.493200pt;}
.y4{bottom:359.257467pt;}
.y76{bottom:361.624400pt;}
.ydb{bottom:365.730667pt;}
.y1c6{bottom:366.467333pt;}
.y94{bottom:367.166400pt;}
.y116{bottom:367.872400pt;}
.y1a{bottom:371.327667pt;}
.y1e8{bottom:372.208400pt;}
.y54{bottom:372.544267pt;}
.y1a0{bottom:372.745067pt;}
.y156{bottom:374.008933pt;}
.y2d{bottom:377.572333pt;}
.yba{bottom:378.159867pt;}
.y106{bottom:381.914400pt;}
.y75{bottom:384.291067pt;}
.y22{bottom:386.781867pt;}
.yda{bottom:388.389867pt;}
.y93{bottom:389.833067pt;}
.y115{bottom:390.539067pt;}
.y138{bottom:390.812000pt;}
.y1e7{bottom:392.213200pt;}
.y19{bottom:393.997200pt;}
.y53{bottom:395.210933pt;}
.y155{bottom:396.675600pt;}
.y2c{bottom:400.241867pt;}
.y1c5{bottom:400.659733pt;}
.yb9{bottom:400.826533pt;}
.y21{bottom:404.111200pt;}
.y19f{bottom:406.728467pt;}
.y74{bottom:406.957733pt;}
.y182{bottom:409.113133pt;}
.yd9{bottom:411.059400pt;}
.y105{bottom:411.847600pt;}
.y1e6{bottom:412.207533pt;}
.y92{bottom:412.494000pt;}
.y114{bottom:413.205733pt;}
.y137{bottom:413.478667pt;}
.y52{bottom:417.869000pt;}
.y154{bottom:419.339400pt;}
.y1c4{bottom:420.698600pt;}
.y20{bottom:421.440533pt;}
.y2b{bottom:422.908533pt;}
.yb8{bottom:423.493200pt;}
.y19e{bottom:426.722800pt;}
.y73{bottom:429.624400pt;}
.y181{bottom:431.782667pt;}
.yd8{bottom:433.728933pt;}
.y18{bottom:434.710400pt;}
.y91{bottom:435.163533pt;}
.y113{bottom:435.857733pt;}
.y136{bottom:436.145333pt;}
.y51{bottom:440.538533pt;}
.y153{bottom:442.008933pt;}
.y1e5{bottom:443.794400pt;}
.y19d{bottom:446.717733pt;}
.y2a{bottom:450.755733pt;}
.y72{bottom:452.291067pt;}
.y180{bottom:454.452200pt;}
.y1c3{bottom:455.183600pt;}
.y3{bottom:455.723067pt;}
.y1f{bottom:456.112867pt;}
.y17{bottom:457.379933pt;}
.y90{bottom:457.833067pt;}
.y112{bottom:458.527267pt;}
.y135{bottom:458.812000pt;}
.yb7{bottom:458.923400pt;}
.y50{bottom:463.208067pt;}
.y1e4{bottom:463.788733pt;}
.y152{bottom:464.675600pt;}
.yf9{bottom:466.182133pt;}
.yd7{bottom:467.531200pt;}
.y1e{bottom:473.442200pt;}
.y1c2{bottom:475.177933pt;}
.y17f{bottom:477.121733pt;}
.y19c{bottom:479.043067pt;}
.y16{bottom:480.049467pt;}
.y8f{bottom:480.497467pt;}
.y111{bottom:481.196800pt;}
.y134{bottom:481.478667pt;}
.yb6{bottom:481.592933pt;}
.y4f{bottom:485.877600pt;}
.y151{bottom:487.342267pt;}
.y71{bottom:488.035800pt;}
.yf8{bottom:488.845933pt;}
.yd6{bottom:490.197867pt;}
.y1c1{bottom:495.172267pt;}
.y1e3{bottom:497.563133pt;}
.y19b{bottom:499.043067pt;}
.y2{bottom:499.725733pt;}
.y17e{bottom:499.782667pt;}
.y15{bottom:502.719000pt;}
.y133{bottom:504.145333pt;}
.yb5{bottom:504.259600pt;}
.y1d{bottom:508.114533pt;}
.y4e{bottom:508.539267pt;}
.y150{bottom:510.008933pt;}
.y70{bottom:510.705333pt;}
.yf7{bottom:511.515467pt;}
.yd5{bottom:512.864533pt;}
.y8e{bottom:514.578400pt;}
.y1c0{bottom:515.166600pt;}
.y1e2{bottom:517.557467pt;}
.y110{bottom:517.827533pt;}
.y19a{bottom:519.093200pt;}
.y17d{bottom:522.452200pt;}
.y14{bottom:525.388533pt;}
.y132{bottom:526.812000pt;}
.yb4{bottom:526.926267pt;}
.y27{bottom:530.831600pt;}
.y14f{bottom:532.675600pt;}
.y6f{bottom:533.374867pt;}
.yf6{bottom:534.182133pt;}
.yd4{bottom:535.531200pt;}
.y8d{bottom:537.245067pt;}
.y1e1{bottom:537.558267pt;}
.y204{bottom:538.303267pt;}
.y199{bottom:539.087533pt;}
.y10f{bottom:540.497067pt;}
.y4d{bottom:543.247200pt;}
.y1{bottom:543.728400pt;}
.y17c{bottom:545.121733pt;}
.y1bf{bottom:548.550867pt;}
.y131{bottom:549.477600pt;}
.yb3{bottom:549.590067pt;}
.y14e{bottom:555.342267pt;}
.y6e{bottom:556.044400pt;}
.y1e0{bottom:557.552600pt;}
.yd3{bottom:558.195000pt;}
.y203{bottom:558.297600pt;}
.y8c{bottom:559.911733pt;}
.y10e{bottom:563.163733pt;}
.y4c{bottom:565.916733pt;}
.y13{bottom:566.185333pt;}
.y17b{bottom:567.788400pt;}
.yf5{bottom:567.987867pt;}
.y1be{bottom:568.545200pt;}
.yb2{bottom:572.259600pt;}
.y198{bottom:572.736533pt;}
.y14d{bottom:578.008933pt;}
.y202{bottom:578.321933pt;}
.y6d{bottom:578.711067pt;}
.yd2{bottom:580.864533pt;}
.y8b{bottom:582.578400pt;}
.y130{bottom:583.265933pt;}
.y10d{bottom:585.830400pt;}
.y1bd{bottom:588.539533pt;}
.y4b{bottom:588.586267pt;}
.y12{bottom:588.854867pt;}
.y17a{bottom:590.455067pt;}
.yf4{bottom:590.654533pt;}
.y1df{bottom:591.814667pt;}
.y197{bottom:592.730867pt;}
.yb1{bottom:594.926267pt;}
.y201{bottom:598.316267pt;}
.y6c{bottom:601.377733pt;}
.yd1{bottom:603.531200pt;}
.y8a{bottom:605.242200pt;}
.y12f{bottom:605.935467pt;}
.y10c{bottom:608.488467pt;}
.y1bc{bottom:608.533867pt;}
.y4a{bottom:611.252933pt;}
.y1de{bottom:611.838000pt;}
.y16c{bottom:612.231333pt;}
.y196{bottom:612.725200pt;}
.y179{bottom:613.121733pt;}
.yf3{bottom:613.321200pt;}
.yb0{bottom:617.581133pt;}
.y6b{bottom:624.044400pt;}
.yd0{bottom:626.197867pt;}
.y89{bottom:627.911733pt;}
.y1bb{bottom:628.538667pt;}
.y12e{bottom:628.602133pt;}
.y11{bottom:630.055733pt;}
.y10b{bottom:631.158000pt;}
.y1dd{bottom:631.832333pt;}
.y195{bottom:632.719533pt;}
.y49{bottom:633.919600pt;}
.y200{bottom:634.696200pt;}
.y16b{bottom:634.900867pt;}
.y178{bottom:635.788400pt;}
.yf2{bottom:635.987867pt;}
.yaf{bottom:640.250667pt;}
.y6a{bottom:646.708200pt;}
.y88{bottom:650.578400pt;}
.y5{bottom:650.933467pt;}
.y12d{bottom:651.268800pt;}
.y10{bottom:652.725267pt;}
.y10a{bottom:653.827533pt;}
.y1ff{bottom:654.690533pt;}
.y48{bottom:656.586267pt;}
.y16a{bottom:657.570400pt;}
.y177{bottom:658.455067pt;}
.ye4{bottom:658.584667pt;}
.yf1{bottom:658.654533pt;}
.y1ba{bottom:664.124400pt;}
.y1dc{bottom:664.366667pt;}
.y194{bottom:664.599000pt;}
.y69{bottom:669.377733pt;}
.y12c{bottom:673.935467pt;}
.yae{bottom:673.983267pt;}
.y1fe{bottom:674.684867pt;}
.yf{bottom:675.394800pt;}
.y109{bottom:676.497067pt;}
.y47{bottom:679.252933pt;}
.y169{bottom:680.239933pt;}
.y176{bottom:681.120533pt;}
.yf0{bottom:681.318200pt;}
.y1b9{bottom:684.172067pt;}
.y1db{bottom:684.361000pt;}
.y20f{bottom:684.510133pt;}
.y193{bottom:684.593333pt;}
.y87{bottom:685.662200pt;}
.y68{bottom:692.044400pt;}
.y1fd{bottom:694.679200pt;}
.y12b{bottom:696.602000pt;}
.yad{bottom:696.652800pt;}
.ye{bottom:698.061333pt;}
.y108{bottom:699.163733pt;}
.y20e{bottom:700.510133pt;}
.y46{bottom:701.919600pt;}
.y168{bottom:702.909467pt;}
.yef{bottom:703.987733pt;}
.y1b8{bottom:704.166400pt;}
.y1da{bottom:704.355333pt;}
.y192{bottom:704.587667pt;}
.ycf{bottom:705.528333pt;}
.y86{bottom:708.331733pt;}
.y67{bottom:714.711067pt;}
.y175{bottom:714.908867pt;}
.y20d{bottom:716.510133pt;}
.y12a{bottom:719.268667pt;}
.yac{bottom:719.322333pt;}
.yd{bottom:720.721067pt;}
.y107{bottom:721.830400pt;}
.y1d9{bottom:724.380733pt;}
.y191{bottom:724.582000pt;}
.y45{bottom:724.586267pt;}
.y167{bottom:725.579000pt;}
.yee{bottom:726.654400pt;}
.yce{bottom:728.197867pt;}
.y85{bottom:730.998400pt;}
.y1fc{bottom:731.059133pt;}
.y20c{bottom:732.510133pt;}
.y1b7{bottom:737.063000pt;}
.y66{bottom:737.377733pt;}
.y174{bottom:737.578400pt;}
.yab{bottom:741.991867pt;}
.y166{bottom:748.248533pt;}
.yed{bottom:749.321067pt;}
.ycd{bottom:750.864533pt;}
.y1fb{bottom:751.053467pt;}
.y84{bottom:753.665067pt;}
.y1d8{bottom:755.967600pt;}
.y190{bottom:756.350000pt;}
.y1b6{bottom:757.057333pt;}
.y128{bottom:757.609867pt;}
.y14a{bottom:759.153200pt;}
.y44{bottom:759.294933pt;}
.y65{bottom:760.044400pt;}
.y173{bottom:760.245067pt;}
.yc{bottom:761.921933pt;}
.yaa{bottom:764.658533pt;}
.y165{bottom:770.918067pt;}
.y1fa{bottom:771.055400pt;}
.yec{bottom:771.987733pt;}
.ycc{bottom:773.531200pt;}
.y1d7{bottom:775.961933pt;}
.y83{bottom:776.331733pt;}
.y18f{bottom:776.350000pt;}
.y1b5{bottom:777.051667pt;}
.y127{bottom:780.276533pt;}
.y149{bottom:781.819867pt;}
.y43{bottom:781.950133pt;}
.y64{bottom:782.716867pt;}
.y172{bottom:782.908867pt;}
.yb{bottom:784.591467pt;}
.ya9{bottom:787.325200pt;}
.y1f9{bottom:791.049733pt;}
.y164{bottom:793.587600pt;}
.yeb{bottom:794.651533pt;}
.ycb{bottom:796.197867pt;}
.y18e{bottom:796.355667pt;}
.y1b4{bottom:797.046000pt;}
.y82{bottom:798.998400pt;}
.y126{bottom:802.943200pt;}
.y20b{bottom:803.603467pt;}
.y148{bottom:804.483667pt;}
.y42{bottom:804.619667pt;}
.y171{bottom:805.578400pt;}
.ya{bottom:807.256667pt;}
.y1d6{bottom:811.547667pt;}
.y79{bottom:811.956267pt;}
.y163{bottom:816.254267pt;}
.y18d{bottom:816.350000pt;}
.y1b3{bottom:817.040333pt;}
.yea{bottom:817.321067pt;}
.yca{bottom:818.864533pt;}
.y20a{bottom:819.603467pt;}
.y81{bottom:821.665067pt;}
.ya8{bottom:822.015133pt;}
.y125{bottom:825.609867pt;}
.y147{bottom:827.153200pt;}
.y41{bottom:827.289200pt;}
.y206{bottom:827.746400pt;}
.y170{bottom:828.245067pt;}
.y1d5{bottom:831.542000pt;}
.y209{bottom:835.603467pt;}
.y18c{bottom:836.387667pt;}
.y1b2{bottom:837.034667pt;}
.y162{bottom:838.920933pt;}
.ye9{bottom:839.987733pt;}
.y80{bottom:844.331733pt;}
.ya7{bottom:844.684667pt;}
.y78{bottom:845.611467pt;}
.y9{bottom:846.743733pt;}
.y205{bottom:847.748667pt;}
.y124{bottom:848.276533pt;}
.y146{bottom:849.819867pt;}
.y40{bottom:849.958733pt;}
.y16f{bottom:850.911733pt;}
.y1d4{bottom:851.536333pt;}
.y208{bottom:851.603467pt;}
.yc9{bottom:852.990400pt;}
.y161{bottom:861.587600pt;}
.ya6{bottom:867.351333pt;}
.y207{bottom:867.603467pt;}
.y8{bottom:869.407533pt;}
.y18b{bottom:870.036667pt;}
.y123{bottom:870.943200pt;}
.y1b1{bottom:871.227067pt;}
.y145{bottom:872.483667pt;}
.y3f{bottom:872.628267pt;}
.ye8{bottom:874.058467pt;}
.yc8{bottom:875.657067pt;}
.y9f{bottom:878.071733pt;}
.y1f8{bottom:884.124400pt;}
.y160{bottom:884.254267pt;}
.y183{bottom:884.990400pt;}
.y1d3{bottom:887.122067pt;}
.ya5{bottom:890.018000pt;}
.y18a{bottom:890.031000pt;}
.y1b0{bottom:891.221400pt;}
.y7{bottom:892.077067pt;}
.y122{bottom:893.609867pt;}
.y144{bottom:895.153200pt;}
.y3e{bottom:895.294933pt;}
.ye7{bottom:896.728000pt;}
.yc7{bottom:898.323733pt;}
.y9e{bottom:900.732667pt;}
.y1f7{bottom:904.139800pt;}
.y1d2{bottom:907.116400pt;}
.y63{bottom:907.657067pt;}
.y189{bottom:910.025333pt;}
.ya4{bottom:912.684667pt;}
.y121{bottom:916.276533pt;}
.y3d{bottom:917.961600pt;}
.y16d{bottom:918.131200pt;}
.yc6{bottom:920.987533pt;}
.y9d{bottom:923.402200pt;}
.y1f6{bottom:924.134133pt;}
.y1af{bottom:926.807133pt;}
.y1d1{bottom:927.135467pt;}
.y188{bottom:930.019667pt;}
.y14c{bottom:930.320867pt;}
.y62{bottom:930.323733pt;}
.y6{bottom:934.578667pt;}
.ya3{bottom:935.351333pt;}
.y3c{bottom:940.625800pt;}
.yc5{bottom:943.657067pt;}
.y1f5{bottom:944.128467pt;}
.y9c{bottom:946.071733pt;}
.y1ae{bottom:946.801467pt;}
.y129{bottom:952.987533pt;}
.y61{bottom:952.990400pt;}
.ya2{bottom:958.018000pt;}
.y187{bottom:961.007400pt;}
.yc4{bottom:966.320867pt;}
.y1ad{bottom:966.798000pt;}
.y9b{bottom:968.738400pt;}
.y16e{bottom:975.651333pt;}
.y3b{bottom:975.654200pt;}
.y60{bottom:975.657067pt;}
.ya1{bottom:980.684667pt;}
.y1f4{bottom:980.996067pt;}
.y186{bottom:981.001733pt;}
.yc3{bottom:988.990400pt;}
.y9a{bottom:991.405067pt;}
.y5f{bottom:998.320867pt;}
.y3a{bottom:998.323733pt;}
.y1ac{bottom:1000.990400pt;}
.y185{bottom:1000.996067pt;}
.yc2{bottom:1019.238800pt;}
.y14b{bottom:1020.988400pt;}
.y39{bottom:1020.990400pt;}
.ya0{bottom:1021.637333pt;}
.y28{bottom:1062.946533pt;}
.h1e{height:30.861979pt;}
.hb{height:40.289333pt;}
.h16{height:43.024609pt;}
.h1c{height:43.333333pt;}
.hc{height:43.941333pt;}
.h1d{height:44.088542pt;}
.hf{height:44.416667pt;}
.he{height:45.190755pt;}
.h5{height:45.283333pt;}
.h19{height:45.288133pt;}
.h7{height:45.289200pt;}
.h18{height:45.291333pt;}
.h14{height:45.292400pt;}
.h6{height:45.294800pt;}
.h12{height:45.296133pt;}
.h11{height:45.303333pt;}
.h1a{height:45.306267pt;}
.h8{height:45.311067pt;}
.h17{height:45.317733pt;}
.h10{height:45.329200pt;}
.h1b{height:46.018099pt;}
.h9{height:46.072526pt;}
.hd{height:47.040960pt;}
.ha{height:49.514667pt;}
.h15{height:54.018327pt;}
.h13{height:58.519855pt;}
.h4{height:65.272145pt;}
.h3{height:83.888000pt;}
.h2{height:130.544291pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:30.236267pt;}
.xe{left:39.107600pt;}
.x9{left:43.644933pt;}
.x4{left:48.673867pt;}
.x1{left:60.575200pt;}
.x7{left:65.156267pt;}
.x14{left:68.976400pt;}
.xb{left:74.668267pt;}
.xa{left:84.248600pt;}
.xc{left:93.569267pt;}
.x8{left:96.548600pt;}
.xd{left:99.801267pt;}
.x2{left:113.509867pt;}
.x16{left:144.523067pt;}
.x10{left:151.181067pt;}
.x15{left:176.616400pt;}
.x17{left:186.280267pt;}
.x5{left:194.834533pt;}
.x12{left:223.936933pt;}
.x11{left:231.496000pt;}
.x13{left:245.676933pt;}
.xf{left:510.774800pt;}
.x3{left:530.721867pt;}
}




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