
    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_f66451565def619b2492d2b5.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.311035;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_ce2c99c98732be8cfa18e315.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284668;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_5d5c0b5697f56617998b2172.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.575000;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_a979997bacb514f60798c17c.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.432129;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_bd7dcae150078c884b6bf06d.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284180;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_f0eb0dfcffe342920fd49499.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.284668;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_aa7f23259af467b353e249ed.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.311035;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_bfdae9d8aa1cc2828c2b3ee2.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.432129;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_c4fe3805ee5be14a5c58974d.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.284180;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_22ac4effd1e6bcc874f3b0fd.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.284180;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_fb963912cca7fdf00ba99b32.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.284668;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_a2edd519b57d4e231abd0be2.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.284180;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_49ae76542f4b5859da273ed9.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.432129;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_40b6d4447e139a8424cbb3dc.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_ca24d7afbea69bc624eb1abc.woff2')format("woff");}.fff{font-family:fff;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_41d3586496e53777df5027fc.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_add3f00daeffd4e54c5faa9b.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_bc314ddb88933374fab73ac0.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_bf61a1a5100127543ca143b9.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_4501b38e9bd8be3b185e4e5a.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_c1aa714343b2544536ad3aa8.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_0c082f65d2605a1f7e84be55.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_d42b70514802daba33f271f5.woff2')format("woff");}.ff17{font-family:ff17;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url('chunks/assets/font_b9ba4b38c77bf273a994aa18.woff2')format("woff");}.ff18{font-family:ff18;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19;src:url('chunks/assets/font_cbca797a16785b89a8c83bf7.woff2')format("woff");}.ff19{font-family:ff19;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a;src:url('chunks/assets/font_2fe07420e2f81013caa9e7ae.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:1.432129;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:ff1b;src:url('chunks/assets/font_c463eaff58e1f209fd5d77be.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:1.284180;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:ff1c;src:url('chunks/assets/font_0eab07fda29742a67d9a03d1.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:1.284668;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:ff1d;src:url('chunks/assets/font_fee81ccd3c1039200cb5ef72.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:1.284180;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:ff1e;src:url('chunks/assets/font_086551219c8dfabd0ec89373.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:1.432129;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:ff1f;src:url('chunks/assets/font_a3c4fb8d405d4cdee98c06fc.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:1.284668;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:ff20;src:url('chunks/assets/font_abf4bc3548e1b6a232f02ea5.woff2')format("woff");}.ff20{font-family:ff20;line-height:1.284180;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:ff21;src:url('chunks/assets/font_6917b39366fba2749d9077e3.woff2')format("woff");}.ff21{font-family:ff21;line-height:1.311035;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:ff22;src:url('chunks/assets/font_223e554b9c9844f07dc93b84.woff2')format("woff");}.ff22{font-family:ff22;line-height:1.284668;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:ff23;src:url('chunks/assets/font_de99de1606c6fb4b186d7cde.woff2')format("woff");}.ff23{font-family:ff23;line-height:1.284180;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:ff24;src:url('chunks/assets/font_1f70082321a05c878c111d97.woff2')format("woff");}.ff24{font-family:ff24;line-height:1.284668;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:ff25;src:url('chunks/assets/font_d9dfd0ff8f3a1fa7fbec1b5b.woff2')format("woff");}.ff25{font-family:ff25;line-height:1.284180;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;}
.m37{transform:matrix(0.022500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.022500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.022500,0.000000,0.000000,0.250000,0,0);}
.m59{transform:matrix(0.045000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.045000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.045000,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.070000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.070000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.070000,0.000000,0.000000,0.250000,0,0);}
.m36{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.m5e{transform:matrix(0.107500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107500,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.132500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132500,0.000000,0.000000,0.250000,0,0);}
.m4a{transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);}
.m50{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m55{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m3e{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m47{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m51{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m56{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m64{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m4d{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m5f{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m34{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m46{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m42{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m45{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m52{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m40{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m2{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);}
.m1{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m3a{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);}
.m5d{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m43{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m38{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m35{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m31{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m30{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m3b{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m44{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m3f{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m39{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m3c{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m5b{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m53{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.m3d{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m4f{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m32{transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m41{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m5c{transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);}
.m5a{transform:matrix(0.412500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412500,0.000000,0.000000,0.250000,0,0);}
.m63{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m58{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.425000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425000,0.000000,0.000000,0.250000,0,0);}
.m62{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m33{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m57{transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);}
.m61{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m54{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m60{transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);}
.m66{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m4e{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m65{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m4c{transform:matrix(0.552500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552500,0.000000,0.000000,0.250000,0,0);}
.m49{transform:matrix(0.802500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.802500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.802500,0.000000,0.000000,0.250000,0,0);}
.m48{transform:matrix(1.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.202500,0.000000,0.000000,0.250000,0,0);}
.m4b{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.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;}
}
.ws0{word-spacing:0.000000px;}
._0{margin-left:-27.134469px;}
.fc0{color:transparent;}
.fs8{font-size:24.000000px;}
.fs2{font-size:36.000000px;}
.fs9{font-size:42.000000px;}
.fs6{font-size:48.000000px;}
.fs1{font-size:54.000000px;}
.fs3{font-size:60.000000px;}
.fs5{font-size:66.000000px;}
.fs7{font-size:72.000000px;}
.fs4{font-size:78.000000px;}
.fsa{font-size:84.000000px;}
.fs0{font-size:126.000000px;}
.y0{bottom:0.000000px;}
.y160{bottom:14.398500px;}
.y67{bottom:95.098500px;}
.y66{bottom:95.173500px;}
.y15f{bottom:95.398500px;}
.y15e{bottom:95.775000px;}
.y65{bottom:95.848500px;}
.y15d{bottom:96.073500px;}
.y15c{bottom:96.823500px;}
.y210{bottom:98.250000px;}
.y211{bottom:98.625000px;}
.y212{bottom:99.000000px;}
.y38{bottom:99.073500px;}
.y213{bottom:99.298500px;}
.y214{bottom:99.375000px;}
.y39{bottom:99.448500px;}
.y1ad{bottom:100.798500px;}
.y121{bottom:100.875000px;}
.y1ae{bottom:101.173500px;}
.y1af{bottom:101.548500px;}
.y1d2{bottom:101.773500px;}
.y1b0{bottom:101.848500px;}
.y1b1{bottom:102.223500px;}
.y140{bottom:104.023500px;}
.ya6{bottom:104.098500px;}
.ya7{bottom:104.398500px;}
.ya8{bottom:104.473500px;}
.yd9{bottom:104.625000px;}
.ya9{bottom:104.773500px;}
.yaa{bottom:104.848500px;}
.yab{bottom:105.523500px;}
.yd8{bottom:105.750000px;}
.yac{bottom:105.898500px;}
.yd7{bottom:106.048500px;}
.yd6{bottom:106.423500px;}
.y64{bottom:110.625000px;}
.y63{bottom:111.375000px;}
.y62{bottom:112.125000px;}
.y15b{bottom:112.650000px;}
.y61{bottom:112.798500px;}
.y15a{bottom:113.025000px;}
.y100{bottom:113.548500px;}
.y34{bottom:114.900000px;}
.y20a{bottom:115.198500px;}
.y20b{bottom:115.500000px;}
.y20c{bottom:115.573500px;}
.y35{bottom:115.650000px;}
.y20d{bottom:115.875000px;}
.y20e{bottom:116.250000px;}
.y36{bottom:116.323500px;}
.y20f{bottom:116.625000px;}
.y37{bottom:116.698500px;}
.y1a8{bottom:118.048500px;}
.y1a9{bottom:118.423500px;}
.y1aa{bottom:119.173500px;}
.y1ab{bottom:119.848500px;}
.y13f{bottom:120.223500px;}
.y1ac{bottom:120.598500px;}
.y13e{bottom:120.973500px;}
.ya4{bottom:121.048500px;}
.ya5{bottom:121.348500px;}
.y1d1{bottom:121.500000px;}
.y120{bottom:121.723500px;}
.yd5{bottom:123.000000px;}
.yd4{bottom:124.048500px;}
.yfc{bottom:128.698500px;}
.yfd{bottom:129.073500px;}
.y60{bottom:129.375000px;}
.y159{bottom:129.598500px;}
.y158{bottom:129.973500px;}
.y157{bottom:130.275000px;}
.yfe{bottom:130.500000px;}
.yff{bottom:131.625000px;}
.y207{bottom:132.150000px;}
.y32{bottom:132.900000px;}
.y208{bottom:133.198500px;}
.y33{bottom:133.275000px;}
.y209{bottom:133.573500px;}
.y1a7{bottom:136.423500px;}
.y13d{bottom:137.848500px;}
.ya1{bottom:138.298500px;}
.ya2{bottom:139.048500px;}
.ya3{bottom:139.723500px;}
.yd3{bottom:140.250000px;}
.yd2{bottom:141.000000px;}
.y11f{bottom:141.150000px;}
.y1d0{bottom:142.125000px;}
.yf9{bottom:145.275000px;}
.yfa{bottom:145.650000px;}
.yfb{bottom:145.948500px;}
.y5f{bottom:146.250000px;}
.y5e{bottom:146.625000px;}
.y202{bottom:149.025000px;}
.y203{bottom:149.400000px;}
.y204{bottom:149.775000px;}
.y31{bottom:149.848500px;}
.y205{bottom:150.150000px;}
.y206{bottom:150.525000px;}
.y1a1{bottom:151.573500px;}
.y1a2{bottom:152.625000px;}
.y1a3{bottom:153.298500px;}
.y1a4{bottom:153.375000px;}
.y1a5{bottom:153.750000px;}
.y1a6{bottom:154.423500px;}
.y9c{bottom:154.798500px;}
.y9e{bottom:155.173500px;}
.y9d{bottom:155.250000px;}
.y9f{bottom:155.923500px;}
.ya0{bottom:156.298500px;}
.yd1{bottom:156.823500px;}
.yd0{bottom:157.948500px;}
.y11e{bottom:161.323500px;}
.y1cf{bottom:162.598500px;}
.y5d{bottom:162.823500px;}
.yf8{bottom:163.650000px;}
.y5c{bottom:164.323500px;}
.y5b{bottom:165.000000px;}
.y1fd{bottom:165.973500px;}
.y1fe{bottom:166.275000px;}
.y1ff{bottom:166.650000px;}
.y200{bottom:167.025000px;}
.y2e{bottom:167.098500px;}
.y30{bottom:167.400000px;}
.y2f{bottom:167.473500px;}
.y201{bottom:167.775000px;}
.y19f{bottom:169.573500px;}
.y1a0{bottom:171.000000px;}
.y13c{bottom:171.673500px;}
.y13b{bottom:172.423500px;}
.y9b{bottom:172.500000px;}
.y5a{bottom:179.400000px;}
.y59{bottom:180.448500px;}
.yf3{bottom:180.525000px;}
.y58{bottom:180.823500px;}
.yf4{bottom:181.275000px;}
.y11d{bottom:181.500000px;}
.yf5{bottom:181.573500px;}
.yf6{bottom:181.650000px;}
.yf7{bottom:181.948500px;}
.y1ce{bottom:182.698500px;}
.y156{bottom:183.223500px;}
.y2c{bottom:183.973500px;}
.y2d{bottom:184.348500px;}
.y19e{bottom:186.823500px;}
.y13a{bottom:188.698500px;}
.y97{bottom:189.000000px;}
.y139{bottom:189.375000px;}
.y98{bottom:189.750000px;}
.y99{bottom:190.125000px;}
.y9a{bottom:190.500000px;}
.y2b{bottom:200.923500px;}
.y2a{bottom:201.298500px;}
.y11c{bottom:201.673500px;}
.y1cd{bottom:202.875000px;}
.y155{bottom:203.400000px;}
.y19d{bottom:203.698500px;}
.ycf{bottom:205.423500px;}
.y138{bottom:205.573500px;}
.y137{bottom:205.948500px;}
.y136{bottom:206.250000px;}
.y94{bottom:206.698500px;}
.y95{bottom:207.073500px;}
.y96{bottom:207.448500px;}
.y28{bottom:218.173500px;}
.y29{bottom:218.250000px;}
.y19c{bottom:220.650000px;}
.y1fc{bottom:220.723500px;}
.y11a{bottom:221.473500px;}
.y11b{bottom:221.848500px;}
.y1cc{bottom:222.750000px;}
.y154{bottom:223.198500px;}
.y8e{bottom:223.275000px;}
.y8f{bottom:223.650000px;}
.y90{bottom:223.948500px;}
.y91{bottom:224.323500px;}
.y93{bottom:224.698500px;}
.y92{bottom:225.073500px;}
.yce{bottom:225.598500px;}
.y57{bottom:229.125000px;}
.y56{bottom:230.173500px;}
.y55{bottom:230.848500px;}
.yef{bottom:233.775000px;}
.yf0{bottom:234.598500px;}
.yf1{bottom:234.900000px;}
.yf2{bottom:235.573500px;}
.y19b{bottom:237.598500px;}
.y1fb{bottom:239.775000px;}
.y119{bottom:241.948500px;}
.y1cb{bottom:242.848500px;}
.y153{bottom:243.375000px;}
.ycd{bottom:245.775000px;}
.y54{bottom:250.648500px;}
.y19a{bottom:254.548500px;}
.yee{bottom:254.698500px;}
.y135{bottom:257.400000px;}
.y134{bottom:258.073500px;}
.y8a{bottom:258.150000px;}
.y8b{bottom:259.275000px;}
.y8c{bottom:259.573500px;}
.y8d{bottom:259.648500px;}
.y1fa{bottom:261.000000px;}
.y27{bottom:261.073500px;}
.y26{bottom:261.448500px;}
.y118{bottom:262.500000px;}
.y1ca{bottom:263.098500px;}
.y152{bottom:263.848500px;}
.ycc{bottom:265.573500px;}
.y53{bottom:270.823500px;}
.y199{bottom:271.423500px;}
.yed{bottom:275.173500px;}
.y133{bottom:278.323500px;}
.y89{bottom:279.000000px;}
.y1f9{bottom:281.098500px;}
.y24{bottom:281.548500px;}
.y25{bottom:281.923500px;}
.y117{bottom:282.298500px;}
.y1c9{bottom:283.500000px;}
.y151{bottom:284.023500px;}
.ycb{bottom:285.750000px;}
.y198{bottom:288.375000px;}
.y52{bottom:291.000000px;}
.yec{bottom:295.348500px;}
.y86{bottom:298.198500px;}
.y85{bottom:298.500000px;}
.y132{bottom:298.798500px;}
.y87{bottom:298.875000px;}
.y88{bottom:299.548500px;}
.y1f8{bottom:301.273500px;}
.y22{bottom:301.723500px;}
.y23{bottom:302.098500px;}
.y116{bottom:302.473500px;}
.y1c8{bottom:303.673500px;}
.y191{bottom:303.823500px;}
.y150{bottom:304.198500px;}
.y192{bottom:304.573500px;}
.y193{bottom:305.250000px;}
.y194{bottom:305.625000px;}
.y195{bottom:306.000000px;}
.yca{bottom:306.223500px;}
.y196{bottom:306.375000px;}
.y197{bottom:306.750000px;}
.y51{bottom:311.173500px;}
.yeb{bottom:315.148500px;}
.y81{bottom:318.598500px;}
.y80{bottom:318.673500px;}
.y82{bottom:318.973500px;}
.y84{bottom:319.348500px;}
.y83{bottom:319.723500px;}
.y18c{bottom:321.148500px;}
.y21{bottom:321.898500px;}
.y115{bottom:322.273500px;}
.y18d{bottom:322.573500px;}
.y18e{bottom:322.948500px;}
.y18f{bottom:323.250000px;}
.y190{bottom:323.625000px;}
.y1c7{bottom:323.848500px;}
.y14f{bottom:324.000000px;}
.yc9{bottom:326.023500px;}
.y50{bottom:331.648500px;}
.ye8{bottom:334.573500px;}
.ye9{bottom:335.023500px;}
.yea{bottom:336.073500px;}
.y18b{bottom:338.698500px;}
.y7c{bottom:338.773500px;}
.y131{bottom:339.073500px;}
.y7d{bottom:339.148500px;}
.y7e{bottom:339.523500px;}
.y7f{bottom:339.898500px;}
.y1f5{bottom:341.250000px;}
.y20{bottom:342.073500px;}
.y1f6{bottom:342.298500px;}
.y1f7{bottom:342.375000px;}
.y114{bottom:342.750000px;}
.y1c6{bottom:344.023500px;}
.y1c5{bottom:344.398500px;}
.yc8{bottom:346.198500px;}
.y4f{bottom:351.448500px;}
.ye7{bottom:355.198500px;}
.y18a{bottom:355.648500px;}
.y130{bottom:359.250000px;}
.y78{bottom:359.323500px;}
.y79{bottom:359.398500px;}
.y7a{bottom:359.698500px;}
.y7b{bottom:360.073500px;}
.y1f4{bottom:361.500000px;}
.y1e{bottom:361.875000px;}
.y1f{bottom:362.173500px;}
.y113{bottom:362.548500px;}
.y112{bottom:362.923500px;}
.yc7{bottom:366.375000px;}
.y4e{bottom:371.250000px;}
.y4d{bottom:372.375000px;}
.y189{bottom:372.598500px;}
.y12f{bottom:379.423500px;}
.y77{bottom:379.798500px;}
.y12e{bottom:380.173500px;}
.y1d{bottom:382.348500px;}
.y1f3{bottom:383.398500px;}
.y188{bottom:389.473500px;}
.y4c{bottom:390.000000px;}
.y4b{bottom:391.798500px;}
.y76{bottom:399.673500px;}
.y1c{bottom:402.148500px;}
.y1b{bottom:402.523500px;}
.y1f2{bottom:403.875000px;}
.y184{bottom:405.375000px;}
.y185{bottom:406.125000px;}
.y186{bottom:407.173500px;}
.y187{bottom:407.548500px;}
.y4a{bottom:411.598500px;}
.y74{bottom:419.773500px;}
.y75{bottom:419.848500px;}
.y19{bottom:422.698500px;}
.y1a{bottom:423.000000px;}
.y1f1{bottom:424.048500px;}
.y183{bottom:424.798500px;}
.yb3{bottom:430.423500px;}
.yb8{bottom:436.875000px;}
.yb6{bottom:437.250000px;}
.yb7{bottom:437.323500px;}
.y182{bottom:440.625000px;}
.y17{bottom:442.798500px;}
.y16{bottom:442.875000px;}
.y18{bottom:443.173500px;}
.y1ee{bottom:443.848500px;}
.y1ef{bottom:444.223500px;}
.y1f0{bottom:444.598500px;}
.yb4{bottom:446.250000px;}
.yb5{bottom:446.323500px;}
.y17f{bottom:456.448500px;}
.y180{bottom:457.948500px;}
.y181{bottom:459.000000px;}
.y15{bottom:463.048500px;}
.y1ed{bottom:464.098500px;}
.y17e{bottom:474.148500px;}
.yb2{bottom:480.073500px;}
.y12{bottom:483.148500px;}
.y14{bottom:483.223500px;}
.y13{bottom:483.523500px;}
.y1ec{bottom:484.573500px;}
.y17d{bottom:491.023500px;}
.y10{bottom:503.323500px;}
.y11{bottom:503.698500px;}
.y1eb{bottom:506.548500px;}
.y17c{bottom:508.348500px;}
.yb1{bottom:519.375000px;}
.yf{bottom:523.798500px;}
.y17a{bottom:524.098500px;}
.y17b{bottom:525.598500px;}
.yb0{bottom:526.198500px;}
.y1ea{bottom:527.023500px;}
.yaf{bottom:537.673500px;}
.yd{bottom:543.973500px;}
.ye{bottom:544.348500px;}
.y1e9{bottom:547.198500px;}
.yae{bottom:551.398500px;}
.yad{bottom:563.250000px;}
.yb{bottom:564.148500px;}
.yc{bottom:564.523500px;}
.y1e8{bottom:567.298500px;}
.y179{bottom:579.598500px;}
.ya{bottom:584.325000px;}
.y1e7{bottom:587.473500px;}
.y178{bottom:599.773500px;}
.y9{bottom:604.500000px;}
.y1e6{bottom:607.648500px;}
.y177{bottom:618.825000px;}
.y7{bottom:624.298500px;}
.y8{bottom:624.598500px;}
.y1e5{bottom:627.898500px;}
.y176{bottom:640.048500px;}
.y1e4{bottom:648.673500px;}
.y175{bottom:660.223500px;}
.y6{bottom:661.348500px;}
.y5{bottom:661.723500px;}
.y14e{bottom:669.223500px;}
.y1e3{bottom:670.650000px;}
.y4{bottom:679.348500px;}
.y173{bottom:679.650000px;}
.y174{bottom:681.073500px;}
.y14d{bottom:690.150000px;}
.y1e2{bottom:690.823500px;}
.y111{bottom:695.923500px;}
.y1c4{bottom:697.875000px;}
.y1c3{bottom:697.948500px;}
.y171{bottom:700.948500px;}
.y172{bottom:702.375000px;}
.y14c{bottom:710.250000px;}
.y1e1{bottom:711.375000px;}
.y110{bottom:716.400000px;}
.y3{bottom:717.223500px;}
.y1c2{bottom:718.423500px;}
.y170{bottom:721.423500px;}
.yc6{bottom:723.525000px;}
.y14b{bottom:730.423500px;}
.y1e0{bottom:731.548500px;}
.y49{bottom:731.698500px;}
.y1c1{bottom:731.775000px;}
.y10e{bottom:734.848500px;}
.y10f{bottom:736.650000px;}
.y1c0{bottom:738.598500px;}
.y16c{bottom:740.473500px;}
.y16d{bottom:740.848500px;}
.y16e{bottom:741.298500px;}
.y16f{bottom:742.275000px;}
.yc5{bottom:743.250000px;}
.y14a{bottom:750.598500px;}
.y1df{bottom:752.025000px;}
.y48{bottom:752.173500px;}
.y21c{bottom:753.823500px;}
.y2{bottom:754.948500px;}
.y10c{bottom:756.448500px;}
.y10d{bottom:757.198500px;}
.y1bf{bottom:759.073500px;}
.y16b{bottom:761.775000px;}
.yc4{bottom:763.423500px;}
.y149{bottom:771.073500px;}
.y47{bottom:771.300000px;}
.y1de{bottom:772.500000px;}
.y46{bottom:773.098500px;}
.y45{bottom:773.400000px;}
.y109{bottom:776.925000px;}
.y10a{bottom:777.300000px;}
.y10b{bottom:778.348500px;}
.y1bc{bottom:778.948500px;}
.y1be{bottom:779.250000px;}
.y1bd{bottom:780.000000px;}
.y16a{bottom:781.948500px;}
.y12d{bottom:782.250000px;}
.y73{bottom:783.073500px;}
.yc3{bottom:783.598500px;}
.ye6{bottom:788.625000px;}
.y148{bottom:791.250000px;}
.y21b{bottom:791.625000px;}
.y1dd{bottom:792.675000px;}
.y1{bottom:792.750000px;}
.y44{bottom:792.823500px;}
.y108{bottom:797.473500px;}
.y1bb{bottom:798.750000px;}
.y12c{bottom:802.425000px;}
.y169{bottom:802.500000px;}
.y12b{bottom:803.175000px;}
.y72{bottom:803.250000px;}
.y12a{bottom:803.550000px;}
.yc2{bottom:804.073500px;}
.ye4{bottom:808.723500px;}
.ye5{bottom:809.098500px;}
.y147{bottom:811.425000px;}
.y43{bottom:813.000000px;}
.y1dc{bottom:813.223500px;}
.y107{bottom:817.573500px;}
.y1ba{bottom:819.598500px;}
.y168{bottom:822.973500px;}
.y129{bottom:823.275000px;}
.y71{bottom:823.348500px;}
.y6f{bottom:823.723500px;}
.y70{bottom:824.098500px;}
.yc1{bottom:824.250000px;}
.ye3{bottom:829.573500px;}
.y146{bottom:831.598500px;}
.y42{bottom:831.750000px;}
.y41{bottom:832.800000px;}
.y1db{bottom:833.098500px;}
.y40{bottom:833.925000px;}
.y106{bottom:837.448500px;}
.y1b9{bottom:839.400000px;}
.y1b7{bottom:840.073500px;}
.y1b8{bottom:840.823500px;}
.y167{bottom:843.073500px;}
.y128{bottom:843.448500px;}
.y6e{bottom:843.900000px;}
.y127{bottom:844.500000px;}
.y126{bottom:844.573500px;}
.yc0{bottom:845.098500px;}
.ye2{bottom:849.823500px;}
.y21a{bottom:851.775000px;}
.y145{bottom:852.073500px;}
.y1da{bottom:853.573500px;}
.y3f{bottom:854.025000px;}
.y105{bottom:858.300000px;}
.y1b6{bottom:860.250000px;}
.y166{bottom:863.625000px;}
.y125{bottom:863.698500px;}
.y6d{bottom:864.000000px;}
.y6c{bottom:864.375000px;}
.ybf{bottom:864.598500px;}
.ye1{bottom:870.300000px;}
.y218{bottom:871.573500px;}
.y219{bottom:871.875000px;}
.y144{bottom:872.250000px;}
.y1d9{bottom:873.750000px;}
.y3e{bottom:873.823500px;}
.y104{bottom:878.775000px;}
.y1b5{bottom:880.425000px;}
.y165{bottom:883.050000px;}
.y124{bottom:884.473500px;}
.y6b{bottom:884.550000px;}
.ybe{bottom:885.073500px;}
.ye0{bottom:890.775000px;}
.y217{bottom:892.050000px;}
.y143{bottom:892.425000px;}
.y1d8{bottom:894.223500px;}
.y3d{bottom:894.375000px;}
.y1d7{bottom:894.598500px;}
.y103{bottom:898.948500px;}
.y1b4{bottom:900.598500px;}
.y164{bottom:903.973500px;}
.y6a{bottom:904.723500px;}
.y123{bottom:905.025000px;}
.ybd{bottom:905.250000px;}
.ybb{bottom:905.625000px;}
.ybc{bottom:906.000000px;}
.ydf{bottom:910.948500px;}
.y216{bottom:912.223500px;}
.y3c{bottom:912.375000px;}
.y142{bottom:912.900000px;}
.y1d6{bottom:914.400000px;}
.y3b{bottom:914.473500px;}
.y1d5{bottom:914.698500px;}
.y1d4{bottom:914.775000px;}
.y102{bottom:919.125000px;}
.y1b3{bottom:920.775000px;}
.y163{bottom:924.448500px;}
.y69{bottom:924.900000px;}
.y122{bottom:925.198500px;}
.yba{bottom:925.800000px;}
.ydd{bottom:930.750000px;}
.yde{bottom:930.823500px;}
.ydc{bottom:931.500000px;}
.y162{bottom:936.750000px;}
.y215{bottom:949.650000px;}
.y141{bottom:950.025000px;}
.y3a{bottom:951.223500px;}
.y1d3{bottom:951.823500px;}
.y101{bottom:956.250000px;}
.y1b2{bottom:958.573500px;}
.y161{bottom:961.198500px;}
.y68{bottom:961.948500px;}
.yb9{bottom:962.473500px;}
.ydb{bottom:968.175000px;}
.yda{bottom:968.250000px;}
.h14{height:25.031250px;}
.h3{height:35.332031px;}
.h1f{height:41.220703px;}
.h17{height:42.328125px;}
.ha{height:47.085938px;}
.hf{height:47.109375px;}
.h15{height:48.375000px;}
.h1a{height:50.062500px;}
.h9{height:52.971680px;}
.h2{height:52.998047px;}
.h19{height:56.320312px;}
.h4{height:57.618000px;}
.hc{height:58.857422px;}
.h5{height:58.886719px;}
.h6{height:62.578125px;}
.h11{height:64.743164px;}
.h8{height:64.775391px;}
.h22{height:66.515625px;}
.h20{height:68.835938px;}
.h12{height:70.628906px;}
.hb{height:70.664062px;}
.he{height:72.562500px;}
.h16{height:75.093750px;}
.h7{height:76.514648px;}
.h1b{height:82.400391px;}
.h1{height:126.984375px;}
.hd{height:1011.000000px;}
.h1d{height:1017.000000px;}
.h0{height:1018.500000px;}
.h13{height:1023.000000px;}
.h1c{height:1026.000000px;}
.h10{height:1027.500000px;}
.h18{height:1030.500000px;}
.h21{height:1032.000000px;}
.h1e{height:1035.000000px;}
.w4{width:667.500000px;}
.w9{width:669.000000px;}
.wa{width:670.500000px;}
.w8{width:672.000000px;}
.w7{width:673.500000px;}
.w3{width:678.000000px;}
.w6{width:681.000000px;}
.w5{width:682.500000px;}
.w2{width:684.000000px;}
.w1{width:687.000000px;}
.w0{width:693.000000px;}
.x0{left:0.000000px;}
.xcf{left:52.575000px;}
.xd3{left:54.000000px;}
.xd4{left:55.050000px;}
.xb7{left:58.650000px;}
.xa2{left:60.450000px;}
.xa3{left:61.575000px;}
.xa6{left:62.625000px;}
.xa9{left:63.750000px;}
.xa7{left:64.800000px;}
.x8d{left:66.225000px;}
.x8f{left:67.350000px;}
.x49{left:70.575000px;}
.x40{left:71.625000px;}
.x3f{left:72.750000px;}
.xba{left:80.625000px;}
.xd0{left:83.850000px;}
.x93{left:86.400000px;}
.x51{left:87.450000px;}
.x52{left:88.575000px;}
.x5f{left:89.625000px;}
.x6a{left:90.750000px;}
.x98{left:92.175000px;}
.x9a{left:93.225000px;}
.x1{left:94.650000px;}
.x11{left:96.448500px;}
.x4a{left:97.573500px;}
.xad{left:98.625000px;}
.x48{left:99.750000px;}
.x46{left:101.550000px;}
.x3d{left:103.350000px;}
.x2{left:108.375000px;}
.x54{left:111.600000px;}
.x94{left:114.823500px;}
.x5e{left:119.175000px;}
.x35{left:120.225000px;}
.xbc{left:121.650000px;}
.xbf{left:122.775000px;}
.x23{left:123.825000px;}
.xa{left:126.375000px;}
.xa8{left:128.175000px;}
.xb1{left:129.225000px;}
.xd5{left:131.400000px;}
.x1f{left:132.450000px;}
.x1e{left:135.000000px;}
.x3{left:138.600000px;}
.xcb{left:146.175000px;}
.x67{left:147.600000px;}
.x88{left:150.825000px;}
.x77{left:152.250000px;}
.x28{left:153.750000px;}
.x62{left:155.175000px;}
.xbb{left:156.225000px;}
.x32{left:157.650000px;}
.x34{left:158.775000px;}
.x4b{left:160.950000px;}
.xe0{left:162.000000px;}
.x9c{left:163.050000px;}
.x90{left:164.175000px;}
.x22{left:165.225000px;}
.xb2{left:167.775000px;}
.x89{left:169.200000px;}
.xb6{left:171.000000px;}
.xae{left:175.350000px;}
.x36{left:177.450000px;}
.x29{left:178.950000px;}
.x80{left:181.050000px;}
.x7b{left:182.175000px;}
.xab{left:183.600000px;}
.xb3{left:186.450000px;}
.x68{left:189.750000px;}
.xd6{left:194.773500px;}
.xd1{left:195.825000px;}
.x26{left:196.950000px;}
.xc{left:203.773500px;}
.x44{left:205.200000px;}
.x45{left:206.250000px;}
.x8a{left:207.375000px;}
.x55{left:208.425000px;}
.x5a{left:209.850000px;}
.xb8{left:211.350000px;}
.x9e{left:213.825000px;}
.x19{left:214.950000px;}
.x8b{left:216.000000px;}
.x42{left:218.550000px;}
.x78{left:219.600000px;}
.x37{left:222.450000px;}
.xac{left:226.800000px;}
.x8e{left:228.600000px;}
.x95{left:232.575000px;}
.x5b{left:234.375000px;}
.xcc{left:237.225000px;}
.x65{left:238.350000px;}
.x20{left:239.400000px;}
.x63{left:241.950000px;}
.x81{left:243.375000px;}
.x4c{left:244.425000px;}
.x30{left:247.650000px;}
.x87{left:248.775000px;}
.x2a{left:250.950000px;}
.x56{left:252.375000px;}
.x7e{left:254.850000px;}
.x85{left:259.200000px;}
.xd{left:260.625000px;}
.xd2{left:263.550000px;}
.xb9{left:266.025000px;}
.xbd{left:268.950000px;}
.x33{left:271.050000px;}
.x17{left:272.175000px;}
.x86{left:273.600000px;}
.x82{left:275.025000px;}
.x1a{left:276.825000px;}
.x4f{left:279.750000px;}
.xa1{left:283.650000px;}
.xdd{left:286.200000px;}
.x4{left:288.000000px;}
.x8c{left:290.850000px;}
.x96{left:294.450000px;}
.xe1{left:295.575000px;}
.x3b{left:297.375000px;}
.x21{left:298.425000px;}
.x69{left:299.550000px;}
.x79{left:301.350000px;}
.x9b{left:304.200000px;}
.x1b{left:305.625000px;}
.x3c{left:312.450000px;}
.x66{left:314.250000px;}
.x18{left:315.750000px;}
.x27{left:317.175000px;}
.x2b{left:318.975000px;}
.x5c{left:320.400000px;}
.xc0{left:321.450000px;}
.xaa{left:322.950000px;}
.xe{left:324.000000px;}
.x41{left:325.800000px;}
.x50{left:328.350000px;}
.x6e{left:330.825000px;}
.x6b{left:333.375000px;}
.x7f{left:335.550000px;}
.xb4{left:341.250000px;}
.xaf{left:343.800000px;}
.x5{left:344.850000px;}
.x60{left:347.775000px;}
.x5d{left:349.200000px;}
.xc9{left:350.250000px;}
.x6{left:351.375000px;}
.x83{left:353.175000px;}
.xf{left:354.600000px;}
.x2c{left:356.775000px;}
.xd7{left:358.200000px;}
.x7c{left:362.550000px;}
.x7{left:366.825000px;}
.x9d{left:371.175000px;}
.x2d{left:373.350000px;}
.x8{left:375.825000px;}
.x1c{left:378.375000px;}
.x57{left:384.150000px;}
.x99{left:387.750000px;}
.xb0{left:389.850000px;}
.x12{left:390.975000px;}
.x9{left:393.825000px;}
.x75{left:402.450000px;}
.x6f{left:405.375000px;}
.xdf{left:406.798500px;}
.x3a{left:409.350000px;}
.xca{left:413.250000px;}
.xcd{left:423.000000px;}
.x70{left:425.850000px;}
.xdb{left:427.350000px;}
.xa0{left:429.825000px;}
.x10{left:432.750000px;}
.x14{left:441.000000px;}
.xc2{left:442.798500px;}
.xd8{left:444.225000px;}
.xc5{left:448.950000px;}
.x2e{left:450.375000px;}
.x7d{left:451.423500px;}
.x7a{left:453.975000px;}
.x71{left:456.150000px;}
.x61{left:459.375000px;}
.x47{left:462.600000px;}
.xc3{left:465.150000px;}
.xc4{left:468.000000px;}
.xd9{left:475.950000px;}
.x31{left:477.000000px;}
.x76{left:480.975000px;}
.x1d{left:484.950000px;}
.x4d{left:486.750000px;}
.x84{left:488.550000px;}
.x6c{left:489.600000px;}
.x24{left:490.650000px;}
.x58{left:493.575000px;}
.x91{left:495.375000px;}
.xde{left:500.025000px;}
.xc6{left:506.550000px;}
.x72{left:507.975000px;}
.xdc{left:509.025000px;}
.x97{left:513.375000px;}
.x38{left:515.175000px;}
.xa5{left:529.575000px;}
.x64{left:531.000000px;}
.x15{left:532.050000px;}
.x13{left:534.225000px;}
.xda{left:535.650000px;}
.x73{left:539.250000px;}
.x4e{left:540.375000px;}
.xc7{left:548.250000px;}
.x43{left:554.775000px;}
.x92{left:557.625000px;}
.xa4{left:560.850000px;}
.x6d{left:564.450000px;}
.xc1{left:568.425000px;}
.x39{left:571.350000px;}
.x3e{left:575.625000px;}
.xbe{left:577.800000px;}
.xb{left:580.350000px;}
.x53{left:582.150000px;}
.xb5{left:587.175000px;}
.x25{left:591.825000px;}
.x2f{left:593.250000px;}
.x74{left:595.050000px;}
.x59{left:597.225000px;}
.xce{left:599.400000px;}
.x16{left:601.575000px;}
.xc8{left:602.625000px;}
.x9f{left:606.600000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws0{word-spacing:0.000000pt;}
._0{margin-left:-24.119528pt;}
.fs8{font-size:21.333333pt;}
.fs2{font-size:32.000000pt;}
.fs9{font-size:37.333333pt;}
.fs6{font-size:42.666667pt;}
.fs1{font-size:48.000000pt;}
.fs3{font-size:53.333333pt;}
.fs5{font-size:58.666667pt;}
.fs7{font-size:64.000000pt;}
.fs4{font-size:69.333333pt;}
.fsa{font-size:74.666667pt;}
.fs0{font-size:112.000000pt;}
.y0{bottom:0.000000pt;}
.y160{bottom:12.798667pt;}
.y67{bottom:84.532000pt;}
.y66{bottom:84.598667pt;}
.y15f{bottom:84.798667pt;}
.y15e{bottom:85.133333pt;}
.y65{bottom:85.198667pt;}
.y15d{bottom:85.398667pt;}
.y15c{bottom:86.065333pt;}
.y210{bottom:87.333333pt;}
.y211{bottom:87.666667pt;}
.y212{bottom:88.000000pt;}
.y38{bottom:88.065333pt;}
.y213{bottom:88.265333pt;}
.y214{bottom:88.333333pt;}
.y39{bottom:88.398667pt;}
.y1ad{bottom:89.598667pt;}
.y121{bottom:89.666667pt;}
.y1ae{bottom:89.932000pt;}
.y1af{bottom:90.265333pt;}
.y1d2{bottom:90.465333pt;}
.y1b0{bottom:90.532000pt;}
.y1b1{bottom:90.865333pt;}
.y140{bottom:92.465333pt;}
.ya6{bottom:92.532000pt;}
.ya7{bottom:92.798667pt;}
.ya8{bottom:92.865333pt;}
.yd9{bottom:93.000000pt;}
.ya9{bottom:93.132000pt;}
.yaa{bottom:93.198667pt;}
.yab{bottom:93.798667pt;}
.yd8{bottom:94.000000pt;}
.yac{bottom:94.132000pt;}
.yd7{bottom:94.265333pt;}
.yd6{bottom:94.598667pt;}
.y64{bottom:98.333333pt;}
.y63{bottom:99.000000pt;}
.y62{bottom:99.666667pt;}
.y15b{bottom:100.133333pt;}
.y61{bottom:100.265333pt;}
.y15a{bottom:100.466667pt;}
.y100{bottom:100.932000pt;}
.y34{bottom:102.133333pt;}
.y20a{bottom:102.398667pt;}
.y20b{bottom:102.666667pt;}
.y20c{bottom:102.732000pt;}
.y35{bottom:102.800000pt;}
.y20d{bottom:103.000000pt;}
.y20e{bottom:103.333333pt;}
.y36{bottom:103.398667pt;}
.y20f{bottom:103.666667pt;}
.y37{bottom:103.732000pt;}
.y1a8{bottom:104.932000pt;}
.y1a9{bottom:105.265333pt;}
.y1aa{bottom:105.932000pt;}
.y1ab{bottom:106.532000pt;}
.y13f{bottom:106.865333pt;}
.y1ac{bottom:107.198667pt;}
.y13e{bottom:107.532000pt;}
.ya4{bottom:107.598667pt;}
.ya5{bottom:107.865333pt;}
.y1d1{bottom:108.000000pt;}
.y120{bottom:108.198667pt;}
.yd5{bottom:109.333333pt;}
.yd4{bottom:110.265333pt;}
.yfc{bottom:114.398667pt;}
.yfd{bottom:114.732000pt;}
.y60{bottom:115.000000pt;}
.y159{bottom:115.198667pt;}
.y158{bottom:115.532000pt;}
.y157{bottom:115.800000pt;}
.yfe{bottom:116.000000pt;}
.yff{bottom:117.000000pt;}
.y207{bottom:117.466667pt;}
.y32{bottom:118.133333pt;}
.y208{bottom:118.398667pt;}
.y33{bottom:118.466667pt;}
.y209{bottom:118.732000pt;}
.y1a7{bottom:121.265333pt;}
.y13d{bottom:122.532000pt;}
.ya1{bottom:122.932000pt;}
.ya2{bottom:123.598667pt;}
.ya3{bottom:124.198667pt;}
.yd3{bottom:124.666667pt;}
.yd2{bottom:125.333333pt;}
.y11f{bottom:125.466667pt;}
.y1d0{bottom:126.333333pt;}
.yf9{bottom:129.133333pt;}
.yfa{bottom:129.466667pt;}
.yfb{bottom:129.732000pt;}
.y5f{bottom:130.000000pt;}
.y5e{bottom:130.333333pt;}
.y202{bottom:132.466667pt;}
.y203{bottom:132.800000pt;}
.y204{bottom:133.133333pt;}
.y31{bottom:133.198667pt;}
.y205{bottom:133.466667pt;}
.y206{bottom:133.800000pt;}
.y1a1{bottom:134.732000pt;}
.y1a2{bottom:135.666667pt;}
.y1a3{bottom:136.265333pt;}
.y1a4{bottom:136.333333pt;}
.y1a5{bottom:136.666667pt;}
.y1a6{bottom:137.265333pt;}
.y9c{bottom:137.598667pt;}
.y9e{bottom:137.932000pt;}
.y9d{bottom:138.000000pt;}
.y9f{bottom:138.598667pt;}
.ya0{bottom:138.932000pt;}
.yd1{bottom:139.398667pt;}
.yd0{bottom:140.398667pt;}
.y11e{bottom:143.398667pt;}
.y1cf{bottom:144.532000pt;}
.y5d{bottom:144.732000pt;}
.yf8{bottom:145.466667pt;}
.y5c{bottom:146.065333pt;}
.y5b{bottom:146.666667pt;}
.y1fd{bottom:147.532000pt;}
.y1fe{bottom:147.800000pt;}
.y1ff{bottom:148.133333pt;}
.y200{bottom:148.466667pt;}
.y2e{bottom:148.532000pt;}
.y30{bottom:148.800000pt;}
.y2f{bottom:148.865333pt;}
.y201{bottom:149.133333pt;}
.y19f{bottom:150.732000pt;}
.y1a0{bottom:152.000000pt;}
.y13c{bottom:152.598667pt;}
.y13b{bottom:153.265333pt;}
.y9b{bottom:153.333333pt;}
.y5a{bottom:159.466667pt;}
.y59{bottom:160.398667pt;}
.yf3{bottom:160.466667pt;}
.y58{bottom:160.732000pt;}
.yf4{bottom:161.133333pt;}
.y11d{bottom:161.333333pt;}
.yf5{bottom:161.398667pt;}
.yf6{bottom:161.466667pt;}
.yf7{bottom:161.732000pt;}
.y1ce{bottom:162.398667pt;}
.y156{bottom:162.865333pt;}
.y2c{bottom:163.532000pt;}
.y2d{bottom:163.865333pt;}
.y19e{bottom:166.065333pt;}
.y13a{bottom:167.732000pt;}
.y97{bottom:168.000000pt;}
.y139{bottom:168.333333pt;}
.y98{bottom:168.666667pt;}
.y99{bottom:169.000000pt;}
.y9a{bottom:169.333333pt;}
.y2b{bottom:178.598667pt;}
.y2a{bottom:178.932000pt;}
.y11c{bottom:179.265333pt;}
.y1cd{bottom:180.333333pt;}
.y155{bottom:180.800000pt;}
.y19d{bottom:181.065333pt;}
.ycf{bottom:182.598667pt;}
.y138{bottom:182.732000pt;}
.y137{bottom:183.065333pt;}
.y136{bottom:183.333333pt;}
.y94{bottom:183.732000pt;}
.y95{bottom:184.065333pt;}
.y96{bottom:184.398667pt;}
.y28{bottom:193.932000pt;}
.y29{bottom:194.000000pt;}
.y19c{bottom:196.133333pt;}
.y1fc{bottom:196.198667pt;}
.y11a{bottom:196.865333pt;}
.y11b{bottom:197.198667pt;}
.y1cc{bottom:198.000000pt;}
.y154{bottom:198.398667pt;}
.y8e{bottom:198.466667pt;}
.y8f{bottom:198.800000pt;}
.y90{bottom:199.065333pt;}
.y91{bottom:199.398667pt;}
.y93{bottom:199.732000pt;}
.y92{bottom:200.065333pt;}
.yce{bottom:200.532000pt;}
.y57{bottom:203.666667pt;}
.y56{bottom:204.598667pt;}
.y55{bottom:205.198667pt;}
.yef{bottom:207.800000pt;}
.yf0{bottom:208.532000pt;}
.yf1{bottom:208.800000pt;}
.yf2{bottom:209.398667pt;}
.y19b{bottom:211.198667pt;}
.y1fb{bottom:213.133333pt;}
.y119{bottom:215.065333pt;}
.y1cb{bottom:215.865333pt;}
.y153{bottom:216.333333pt;}
.ycd{bottom:218.466667pt;}
.y54{bottom:222.798667pt;}
.y19a{bottom:226.265333pt;}
.yee{bottom:226.398667pt;}
.y135{bottom:228.800000pt;}
.y134{bottom:229.398667pt;}
.y8a{bottom:229.466667pt;}
.y8b{bottom:230.466667pt;}
.y8c{bottom:230.732000pt;}
.y8d{bottom:230.798667pt;}
.y1fa{bottom:232.000000pt;}
.y27{bottom:232.065333pt;}
.y26{bottom:232.398667pt;}
.y118{bottom:233.333333pt;}
.y1ca{bottom:233.865333pt;}
.y152{bottom:234.532000pt;}
.ycc{bottom:236.065333pt;}
.y53{bottom:240.732000pt;}
.y199{bottom:241.265333pt;}
.yed{bottom:244.598667pt;}
.y133{bottom:247.398667pt;}
.y89{bottom:248.000000pt;}
.y1f9{bottom:249.865333pt;}
.y24{bottom:250.265333pt;}
.y25{bottom:250.598667pt;}
.y117{bottom:250.932000pt;}
.y1c9{bottom:252.000000pt;}
.y151{bottom:252.465333pt;}
.ycb{bottom:254.000000pt;}
.y198{bottom:256.333333pt;}
.y52{bottom:258.666667pt;}
.yec{bottom:262.532000pt;}
.y86{bottom:265.065333pt;}
.y85{bottom:265.333333pt;}
.y132{bottom:265.598667pt;}
.y87{bottom:265.666667pt;}
.y88{bottom:266.265333pt;}
.y1f8{bottom:267.798667pt;}
.y22{bottom:268.198667pt;}
.y23{bottom:268.532000pt;}
.y116{bottom:268.865333pt;}
.y1c8{bottom:269.932000pt;}
.y191{bottom:270.065333pt;}
.y150{bottom:270.398667pt;}
.y192{bottom:270.732000pt;}
.y193{bottom:271.333333pt;}
.y194{bottom:271.666667pt;}
.y195{bottom:272.000000pt;}
.yca{bottom:272.198667pt;}
.y196{bottom:272.333333pt;}
.y197{bottom:272.666667pt;}
.y51{bottom:276.598667pt;}
.yeb{bottom:280.132000pt;}
.y81{bottom:283.198667pt;}
.y80{bottom:283.265333pt;}
.y82{bottom:283.532000pt;}
.y84{bottom:283.865333pt;}
.y83{bottom:284.198667pt;}
.y18c{bottom:285.465333pt;}
.y21{bottom:286.132000pt;}
.y115{bottom:286.465333pt;}
.y18d{bottom:286.732000pt;}
.y18e{bottom:287.065333pt;}
.y18f{bottom:287.333333pt;}
.y190{bottom:287.666667pt;}
.y1c7{bottom:287.865333pt;}
.y14f{bottom:288.000000pt;}
.yc9{bottom:289.798667pt;}
.y50{bottom:294.798667pt;}
.ye8{bottom:297.398667pt;}
.ye9{bottom:297.798667pt;}
.yea{bottom:298.732000pt;}
.y18b{bottom:301.065333pt;}
.y7c{bottom:301.132000pt;}
.y131{bottom:301.398667pt;}
.y7d{bottom:301.465333pt;}
.y7e{bottom:301.798667pt;}
.y7f{bottom:302.132000pt;}
.y1f5{bottom:303.333333pt;}
.y20{bottom:304.065333pt;}
.y1f6{bottom:304.265333pt;}
.y1f7{bottom:304.333333pt;}
.y114{bottom:304.666667pt;}
.y1c6{bottom:305.798667pt;}
.y1c5{bottom:306.132000pt;}
.yc8{bottom:307.732000pt;}
.y4f{bottom:312.398667pt;}
.ye7{bottom:315.732000pt;}
.y18a{bottom:316.132000pt;}
.y130{bottom:319.333333pt;}
.y78{bottom:319.398667pt;}
.y79{bottom:319.465333pt;}
.y7a{bottom:319.732000pt;}
.y7b{bottom:320.065333pt;}
.y1f4{bottom:321.333333pt;}
.y1e{bottom:321.666667pt;}
.y1f{bottom:321.932000pt;}
.y113{bottom:322.265333pt;}
.y112{bottom:322.598667pt;}
.yc7{bottom:325.666667pt;}
.y4e{bottom:330.000000pt;}
.y4d{bottom:331.000000pt;}
.y189{bottom:331.198667pt;}
.y12f{bottom:337.265333pt;}
.y77{bottom:337.598667pt;}
.y12e{bottom:337.932000pt;}
.y1d{bottom:339.865333pt;}
.y1f3{bottom:340.798667pt;}
.y188{bottom:346.198667pt;}
.y4c{bottom:346.666667pt;}
.y4b{bottom:348.265333pt;}
.y76{bottom:355.265333pt;}
.y1c{bottom:357.465333pt;}
.y1b{bottom:357.798667pt;}
.y1f2{bottom:359.000000pt;}
.y184{bottom:360.333333pt;}
.y185{bottom:361.000000pt;}
.y186{bottom:361.932000pt;}
.y187{bottom:362.265333pt;}
.y4a{bottom:365.865333pt;}
.y74{bottom:373.132000pt;}
.y75{bottom:373.198667pt;}
.y19{bottom:375.732000pt;}
.y1a{bottom:376.000000pt;}
.y1f1{bottom:376.932000pt;}
.y183{bottom:377.598667pt;}
.yb3{bottom:382.598667pt;}
.yb8{bottom:388.333333pt;}
.yb6{bottom:388.666667pt;}
.yb7{bottom:388.732000pt;}
.y182{bottom:391.666667pt;}
.y17{bottom:393.598667pt;}
.y16{bottom:393.666667pt;}
.y18{bottom:393.932000pt;}
.y1ee{bottom:394.532000pt;}
.y1ef{bottom:394.865333pt;}
.y1f0{bottom:395.198667pt;}
.yb4{bottom:396.666667pt;}
.yb5{bottom:396.732000pt;}
.y17f{bottom:405.732000pt;}
.y180{bottom:407.065333pt;}
.y181{bottom:408.000000pt;}
.y15{bottom:411.598667pt;}
.y1ed{bottom:412.532000pt;}
.y17e{bottom:421.465333pt;}
.yb2{bottom:426.732000pt;}
.y12{bottom:429.465333pt;}
.y14{bottom:429.532000pt;}
.y13{bottom:429.798667pt;}
.y1ec{bottom:430.732000pt;}
.y17d{bottom:436.465333pt;}
.y10{bottom:447.398667pt;}
.y11{bottom:447.732000pt;}
.y1eb{bottom:450.265333pt;}
.y17c{bottom:451.865333pt;}
.yb1{bottom:461.666667pt;}
.yf{bottom:465.598667pt;}
.y17a{bottom:465.865333pt;}
.y17b{bottom:467.198667pt;}
.yb0{bottom:467.732000pt;}
.y1ea{bottom:468.465333pt;}
.yaf{bottom:477.932000pt;}
.yd{bottom:483.532000pt;}
.ye{bottom:483.865333pt;}
.y1e9{bottom:486.398667pt;}
.yae{bottom:490.132000pt;}
.yad{bottom:500.666667pt;}
.yb{bottom:501.465333pt;}
.yc{bottom:501.798667pt;}
.y1e8{bottom:504.265333pt;}
.y179{bottom:515.198667pt;}
.ya{bottom:519.400000pt;}
.y1e7{bottom:522.198667pt;}
.y178{bottom:533.132000pt;}
.y9{bottom:537.333333pt;}
.y1e6{bottom:540.132000pt;}
.y177{bottom:550.066667pt;}
.y7{bottom:554.932000pt;}
.y8{bottom:555.198667pt;}
.y1e5{bottom:558.132000pt;}
.y176{bottom:568.932000pt;}
.y1e4{bottom:576.598667pt;}
.y175{bottom:586.865333pt;}
.y6{bottom:587.865333pt;}
.y5{bottom:588.198667pt;}
.y14e{bottom:594.865333pt;}
.y1e3{bottom:596.133333pt;}
.y4{bottom:603.865333pt;}
.y173{bottom:604.133333pt;}
.y174{bottom:605.398667pt;}
.y14d{bottom:613.466667pt;}
.y1e2{bottom:614.065333pt;}
.y111{bottom:618.598667pt;}
.y1c4{bottom:620.333333pt;}
.y1c3{bottom:620.398667pt;}
.y171{bottom:623.065333pt;}
.y172{bottom:624.333333pt;}
.y14c{bottom:631.333333pt;}
.y1e1{bottom:632.333333pt;}
.y110{bottom:636.800000pt;}
.y3{bottom:637.532000pt;}
.y1c2{bottom:638.598667pt;}
.y170{bottom:641.265333pt;}
.yc6{bottom:643.133333pt;}
.y14b{bottom:649.265333pt;}
.y1e0{bottom:650.265333pt;}
.y49{bottom:650.398667pt;}
.y1c1{bottom:650.466667pt;}
.y10e{bottom:653.198667pt;}
.y10f{bottom:654.800000pt;}
.y1c0{bottom:656.532000pt;}
.y16c{bottom:658.198667pt;}
.y16d{bottom:658.532000pt;}
.y16e{bottom:658.932000pt;}
.y16f{bottom:659.800000pt;}
.yc5{bottom:660.666667pt;}
.y14a{bottom:667.198667pt;}
.y1df{bottom:668.466667pt;}
.y48{bottom:668.598667pt;}
.y21c{bottom:670.065333pt;}
.y2{bottom:671.065333pt;}
.y10c{bottom:672.398667pt;}
.y10d{bottom:673.065333pt;}
.y1bf{bottom:674.732000pt;}
.y16b{bottom:677.133333pt;}
.yc4{bottom:678.598667pt;}
.y149{bottom:685.398667pt;}
.y47{bottom:685.600000pt;}
.y1de{bottom:686.666667pt;}
.y46{bottom:687.198667pt;}
.y45{bottom:687.466667pt;}
.y109{bottom:690.600000pt;}
.y10a{bottom:690.933333pt;}
.y10b{bottom:691.865333pt;}
.y1bc{bottom:692.398667pt;}
.y1be{bottom:692.666667pt;}
.y1bd{bottom:693.333333pt;}
.y16a{bottom:695.065333pt;}
.y12d{bottom:695.333333pt;}
.y73{bottom:696.065333pt;}
.yc3{bottom:696.532000pt;}
.ye6{bottom:701.000000pt;}
.y148{bottom:703.333333pt;}
.y21b{bottom:703.666667pt;}
.y1dd{bottom:704.600000pt;}
.y1{bottom:704.666667pt;}
.y44{bottom:704.732000pt;}
.y108{bottom:708.865333pt;}
.y1bb{bottom:710.000000pt;}
.y12c{bottom:713.266667pt;}
.y169{bottom:713.333333pt;}
.y12b{bottom:713.933333pt;}
.y72{bottom:714.000000pt;}
.y12a{bottom:714.266667pt;}
.yc2{bottom:714.732000pt;}
.ye4{bottom:718.865333pt;}
.ye5{bottom:719.198667pt;}
.y147{bottom:721.266667pt;}
.y43{bottom:722.666667pt;}
.y1dc{bottom:722.865333pt;}
.y107{bottom:726.732000pt;}
.y1ba{bottom:728.532000pt;}
.y168{bottom:731.532000pt;}
.y129{bottom:731.800000pt;}
.y71{bottom:731.865333pt;}
.y6f{bottom:732.198667pt;}
.y70{bottom:732.532000pt;}
.yc1{bottom:732.666667pt;}
.ye3{bottom:737.398667pt;}
.y146{bottom:739.198667pt;}
.y42{bottom:739.333333pt;}
.y41{bottom:740.266667pt;}
.y1db{bottom:740.532000pt;}
.y40{bottom:741.266667pt;}
.y106{bottom:744.398667pt;}
.y1b9{bottom:746.133333pt;}
.y1b7{bottom:746.732000pt;}
.y1b8{bottom:747.398667pt;}
.y167{bottom:749.398667pt;}
.y128{bottom:749.732000pt;}
.y6e{bottom:750.133333pt;}
.y127{bottom:750.666667pt;}
.y126{bottom:750.732000pt;}
.yc0{bottom:751.198667pt;}
.ye2{bottom:755.398667pt;}
.y21a{bottom:757.133333pt;}
.y145{bottom:757.398667pt;}
.y1da{bottom:758.732000pt;}
.y3f{bottom:759.133333pt;}
.y105{bottom:762.933333pt;}
.y1b6{bottom:764.666667pt;}
.y166{bottom:767.666667pt;}
.y125{bottom:767.732000pt;}
.y6d{bottom:768.000000pt;}
.y6c{bottom:768.333333pt;}
.ybf{bottom:768.532000pt;}
.ye1{bottom:773.600000pt;}
.y218{bottom:774.732000pt;}
.y219{bottom:775.000000pt;}
.y144{bottom:775.333333pt;}
.y1d9{bottom:776.666667pt;}
.y3e{bottom:776.732000pt;}
.y104{bottom:781.133333pt;}
.y1b5{bottom:782.600000pt;}
.y165{bottom:784.933333pt;}
.y124{bottom:786.198667pt;}
.y6b{bottom:786.266667pt;}
.ybe{bottom:786.732000pt;}
.ye0{bottom:791.800000pt;}
.y217{bottom:792.933333pt;}
.y143{bottom:793.266667pt;}
.y1d8{bottom:794.865333pt;}
.y3d{bottom:795.000000pt;}
.y1d7{bottom:795.198667pt;}
.y103{bottom:799.065333pt;}
.y1b4{bottom:800.532000pt;}
.y164{bottom:803.532000pt;}
.y6a{bottom:804.198667pt;}
.y123{bottom:804.466667pt;}
.ybd{bottom:804.666667pt;}
.ybb{bottom:805.000000pt;}
.ybc{bottom:805.333333pt;}
.ydf{bottom:809.732000pt;}
.y216{bottom:810.865333pt;}
.y3c{bottom:811.000000pt;}
.y142{bottom:811.466667pt;}
.y1d6{bottom:812.800000pt;}
.y3b{bottom:812.865333pt;}
.y1d5{bottom:813.065333pt;}
.y1d4{bottom:813.133333pt;}
.y102{bottom:817.000000pt;}
.y1b3{bottom:818.466667pt;}
.y163{bottom:821.732000pt;}
.y69{bottom:822.133333pt;}
.y122{bottom:822.398667pt;}
.yba{bottom:822.933333pt;}
.ydd{bottom:827.333333pt;}
.yde{bottom:827.398667pt;}
.ydc{bottom:828.000000pt;}
.y162{bottom:832.666667pt;}
.y215{bottom:844.133333pt;}
.y141{bottom:844.466667pt;}
.y3a{bottom:845.532000pt;}
.y1d3{bottom:846.065333pt;}
.y101{bottom:850.000000pt;}
.y1b2{bottom:852.065333pt;}
.y161{bottom:854.398667pt;}
.y68{bottom:855.065333pt;}
.yb9{bottom:855.532000pt;}
.ydb{bottom:860.600000pt;}
.yda{bottom:860.666667pt;}
.h14{height:22.250000pt;}
.h3{height:31.406250pt;}
.h1f{height:36.640625pt;}
.h17{height:37.625000pt;}
.ha{height:41.854167pt;}
.hf{height:41.875000pt;}
.h15{height:43.000000pt;}
.h1a{height:44.500000pt;}
.h9{height:47.085938pt;}
.h2{height:47.109375pt;}
.h19{height:50.062500pt;}
.h4{height:51.216000pt;}
.hc{height:52.317708pt;}
.h5{height:52.343750pt;}
.h6{height:55.625000pt;}
.h11{height:57.549479pt;}
.h8{height:57.578125pt;}
.h22{height:59.125000pt;}
.h20{height:61.187500pt;}
.h12{height:62.781250pt;}
.hb{height:62.812500pt;}
.he{height:64.500000pt;}
.h16{height:66.750000pt;}
.h7{height:68.013021pt;}
.h1b{height:73.244792pt;}
.h1{height:112.875000pt;}
.hd{height:898.666667pt;}
.h1d{height:904.000000pt;}
.h0{height:905.333333pt;}
.h13{height:909.333333pt;}
.h1c{height:912.000000pt;}
.h10{height:913.333333pt;}
.h18{height:916.000000pt;}
.h21{height:917.333333pt;}
.h1e{height:920.000000pt;}
.w4{width:593.333333pt;}
.w9{width:594.666667pt;}
.wa{width:596.000000pt;}
.w8{width:597.333333pt;}
.w7{width:598.666667pt;}
.w3{width:602.666667pt;}
.w6{width:605.333333pt;}
.w5{width:606.666667pt;}
.w2{width:608.000000pt;}
.w1{width:610.666667pt;}
.w0{width:616.000000pt;}
.x0{left:0.000000pt;}
.xcf{left:46.733333pt;}
.xd3{left:48.000000pt;}
.xd4{left:48.933333pt;}
.xb7{left:52.133333pt;}
.xa2{left:53.733333pt;}
.xa3{left:54.733333pt;}
.xa6{left:55.666667pt;}
.xa9{left:56.666667pt;}
.xa7{left:57.600000pt;}
.x8d{left:58.866667pt;}
.x8f{left:59.866667pt;}
.x49{left:62.733333pt;}
.x40{left:63.666667pt;}
.x3f{left:64.666667pt;}
.xba{left:71.666667pt;}
.xd0{left:74.533333pt;}
.x93{left:76.800000pt;}
.x51{left:77.733333pt;}
.x52{left:78.733333pt;}
.x5f{left:79.666667pt;}
.x6a{left:80.666667pt;}
.x98{left:81.933333pt;}
.x9a{left:82.866667pt;}
.x1{left:84.133333pt;}
.x11{left:85.732000pt;}
.x4a{left:86.732000pt;}
.xad{left:87.666667pt;}
.x48{left:88.666667pt;}
.x46{left:90.266667pt;}
.x3d{left:91.866667pt;}
.x2{left:96.333333pt;}
.x54{left:99.200000pt;}
.x94{left:102.065333pt;}
.x5e{left:105.933333pt;}
.x35{left:106.866667pt;}
.xbc{left:108.133333pt;}
.xbf{left:109.133333pt;}
.x23{left:110.066667pt;}
.xa{left:112.333333pt;}
.xa8{left:113.933333pt;}
.xb1{left:114.866667pt;}
.xd5{left:116.800000pt;}
.x1f{left:117.733333pt;}
.x1e{left:120.000000pt;}
.x3{left:123.200000pt;}
.xcb{left:129.933333pt;}
.x67{left:131.200000pt;}
.x88{left:134.066667pt;}
.x77{left:135.333333pt;}
.x28{left:136.666667pt;}
.x62{left:137.933333pt;}
.xbb{left:138.866667pt;}
.x32{left:140.133333pt;}
.x34{left:141.133333pt;}
.x4b{left:143.066667pt;}
.xe0{left:144.000000pt;}
.x9c{left:144.933333pt;}
.x90{left:145.933333pt;}
.x22{left:146.866667pt;}
.xb2{left:149.133333pt;}
.x89{left:150.400000pt;}
.xb6{left:152.000000pt;}
.xae{left:155.866667pt;}
.x36{left:157.733333pt;}
.x29{left:159.066667pt;}
.x80{left:160.933333pt;}
.x7b{left:161.933333pt;}
.xab{left:163.200000pt;}
.xb3{left:165.733333pt;}
.x68{left:168.666667pt;}
.xd6{left:173.132000pt;}
.xd1{left:174.066667pt;}
.x26{left:175.066667pt;}
.xc{left:181.132000pt;}
.x44{left:182.400000pt;}
.x45{left:183.333333pt;}
.x8a{left:184.333333pt;}
.x55{left:185.266667pt;}
.x5a{left:186.533333pt;}
.xb8{left:187.866667pt;}
.x9e{left:190.066667pt;}
.x19{left:191.066667pt;}
.x8b{left:192.000000pt;}
.x42{left:194.266667pt;}
.x78{left:195.200000pt;}
.x37{left:197.733333pt;}
.xac{left:201.600000pt;}
.x8e{left:203.200000pt;}
.x95{left:206.733333pt;}
.x5b{left:208.333333pt;}
.xcc{left:210.866667pt;}
.x65{left:211.866667pt;}
.x20{left:212.800000pt;}
.x63{left:215.066667pt;}
.x81{left:216.333333pt;}
.x4c{left:217.266667pt;}
.x30{left:220.133333pt;}
.x87{left:221.133333pt;}
.x2a{left:223.066667pt;}
.x56{left:224.333333pt;}
.x7e{left:226.533333pt;}
.x85{left:230.400000pt;}
.xd{left:231.666667pt;}
.xd2{left:234.266667pt;}
.xb9{left:236.466667pt;}
.xbd{left:239.066667pt;}
.x33{left:240.933333pt;}
.x17{left:241.933333pt;}
.x86{left:243.200000pt;}
.x82{left:244.466667pt;}
.x1a{left:246.066667pt;}
.x4f{left:248.666667pt;}
.xa1{left:252.133333pt;}
.xdd{left:254.400000pt;}
.x4{left:256.000000pt;}
.x8c{left:258.533333pt;}
.x96{left:261.733333pt;}
.xe1{left:262.733333pt;}
.x3b{left:264.333333pt;}
.x21{left:265.266667pt;}
.x69{left:266.266667pt;}
.x79{left:267.866667pt;}
.x9b{left:270.400000pt;}
.x1b{left:271.666667pt;}
.x3c{left:277.733333pt;}
.x66{left:279.333333pt;}
.x18{left:280.666667pt;}
.x27{left:281.933333pt;}
.x2b{left:283.533333pt;}
.x5c{left:284.800000pt;}
.xc0{left:285.733333pt;}
.xaa{left:287.066667pt;}
.xe{left:288.000000pt;}
.x41{left:289.600000pt;}
.x50{left:291.866667pt;}
.x6e{left:294.066667pt;}
.x6b{left:296.333333pt;}
.x7f{left:298.266667pt;}
.xb4{left:303.333333pt;}
.xaf{left:305.600000pt;}
.x5{left:306.533333pt;}
.x60{left:309.133333pt;}
.x5d{left:310.400000pt;}
.xc9{left:311.333333pt;}
.x6{left:312.333333pt;}
.x83{left:313.933333pt;}
.xf{left:315.200000pt;}
.x2c{left:317.133333pt;}
.xd7{left:318.400000pt;}
.x7c{left:322.266667pt;}
.x7{left:326.066667pt;}
.x9d{left:329.933333pt;}
.x2d{left:331.866667pt;}
.x8{left:334.066667pt;}
.x1c{left:336.333333pt;}
.x57{left:341.466667pt;}
.x99{left:344.666667pt;}
.xb0{left:346.533333pt;}
.x12{left:347.533333pt;}
.x9{left:350.066667pt;}
.x75{left:357.733333pt;}
.x6f{left:360.333333pt;}
.xdf{left:361.598667pt;}
.x3a{left:363.866667pt;}
.xca{left:367.333333pt;}
.xcd{left:376.000000pt;}
.x70{left:378.533333pt;}
.xdb{left:379.866667pt;}
.xa0{left:382.066667pt;}
.x10{left:384.666667pt;}
.x14{left:392.000000pt;}
.xc2{left:393.598667pt;}
.xd8{left:394.866667pt;}
.xc5{left:399.066667pt;}
.x2e{left:400.333333pt;}
.x7d{left:401.265333pt;}
.x7a{left:403.533333pt;}
.x71{left:405.466667pt;}
.x61{left:408.333333pt;}
.x47{left:411.200000pt;}
.xc3{left:413.466667pt;}
.xc4{left:416.000000pt;}
.xd9{left:423.066667pt;}
.x31{left:424.000000pt;}
.x76{left:427.533333pt;}
.x1d{left:431.066667pt;}
.x4d{left:432.666667pt;}
.x84{left:434.266667pt;}
.x6c{left:435.200000pt;}
.x24{left:436.133333pt;}
.x58{left:438.733333pt;}
.x91{left:440.333333pt;}
.xde{left:444.466667pt;}
.xc6{left:450.266667pt;}
.x72{left:451.533333pt;}
.xdc{left:452.466667pt;}
.x97{left:456.333333pt;}
.x38{left:457.933333pt;}
.xa5{left:470.733333pt;}
.x64{left:472.000000pt;}
.x15{left:472.933333pt;}
.x13{left:474.866667pt;}
.xda{left:476.133333pt;}
.x73{left:479.333333pt;}
.x4e{left:480.333333pt;}
.xc7{left:487.333333pt;}
.x43{left:493.133333pt;}
.x92{left:495.666667pt;}
.xa4{left:498.533333pt;}
.x6d{left:501.733333pt;}
.xc1{left:505.266667pt;}
.x39{left:507.866667pt;}
.x3e{left:511.666667pt;}
.xbe{left:513.600000pt;}
.xb{left:515.866667pt;}
.x53{left:517.466667pt;}
.xb5{left:521.933333pt;}
.x25{left:526.066667pt;}
.x2f{left:527.333333pt;}
.x74{left:528.933333pt;}
.x59{left:530.866667pt;}
.xce{left:532.800000pt;}
.x16{left:534.733333pt;}
.xc8{left:535.666667pt;}
.x9f{left:539.200000pt;}
}




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