
    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_4d4c8f4d5f5782f09b8e0cd4.woff')format("woff");}.ff1{font-family:ff1;line-height:1.402354;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_2709db5e467adc5e9671e772.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_17ca9ff2547a961a36389803.woff')format("woff");}.ff3{font-family:ff3;line-height:1.402354;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_246ecc063f415fb0f1e29255.woff')format("woff");}.ff4{font-family:ff4;line-height:1.402354;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_c31a1964868f5537c6180718.woff')format("woff");}.ff5{font-family:ff5;line-height:1.402354;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_b8a1f394e0ffc0dfd7ccbec9.woff')format("woff");}.ff6{font-family:ff6;line-height:1.402354;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_6e9352fe3c2e095879606dd7.woff')format("woff");}.ff7{font-family:ff7;line-height:1.402354;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_3bf41b845640f5afd2df48d8.woff')format("woff");}.ff8{font-family:ff8;line-height:1.402354;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_2f320d88343cf618d0376c6c.woff')format("woff");}.ff9{font-family:ff9;line-height:1.402354;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_092b732638009af13482e680.woff')format("woff");}.ffa{font-family:ffa;line-height:1.402354;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_3e7bf7baf75758fb33e9ddbd.woff')format("woff");}.ffb{font-family:ffb;line-height:1.402354;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_695132f00611b54bd551f25e.woff')format("woff");}.ffc{font-family:ffc;line-height:1.402354;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_cef31df2ca7c4186c43d09f6.woff')format("woff");}.ffd{font-family:ffd;line-height:1.402354;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_296ba5e225fa10954db3daf4.woff')format("woff");}.ffe{font-family:ffe;line-height:1.402354;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_be50e9454c3363193d50f65b.woff')format("woff");}.fff{font-family:fff;line-height:1.402354;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_5fa4c210dc7955f2f52d4297.woff')format("woff");}.ff10{font-family:ff10;line-height:1.402354;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_13f5b7721d3df1903f7e841a.woff')format("woff");}.ff11{font-family:ff11;line-height:1.402354;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_c9e30a24f9be8e83ad1d3312.woff')format("woff");}.ff12{font-family:ff12;line-height:1.402354;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_0e84a2aab3a0d7f5690edfa4.woff')format("woff");}.ff13{font-family:ff13;line-height:1.402354;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_3bb0f2413d3b4516f6d7a506.woff')format("woff");}.ff14{font-family:ff14;line-height:1.402354;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_2883ebb934efdd6b9a4c9ac5.woff')format("woff");}.ff15{font-family:ff15;line-height:1.402354;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_efc51984c13916acf1c6de01.woff')format("woff");}.ff16{font-family:ff16;line-height:1.402354;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_d13b881f4bf68bcb472f2f16.woff')format("woff");}.ff17{font-family:ff17;line-height:1.402354;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_ceb70b219675a4cc70d51637.woff')format("woff");}.ff18{font-family:ff18;line-height:1.402354;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_b16cdd7f647a249848f60f3b.woff')format("woff");}.ff19{font-family:ff19;line-height:1.402354;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_3cfb1a28a4d086aa33fbfccd.woff')format("woff");}.ff1a{font-family:ff1a;line-height:1.402354;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_79fd47679db99a3e36775e79.woff')format("woff");}.ff1b{font-family:ff1b;line-height:1.402354;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_0cc37af232e978f3b16fa7d6.woff')format("woff");}.ff1c{font-family:ff1c;line-height:1.402354;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_b55fcc7ffab1068c0d0ae193.woff')format("woff");}.ff1d{font-family:ff1d;line-height:1.402354;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_db0a97aeb7bea3488bc37ae6.woff')format("woff");}.ff1e{font-family:ff1e;line-height:1.402354;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_4b5d045de2f7d00281aa37b2.woff')format("woff");}.ff1f{font-family:ff1f;line-height:1.402354;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_dc9a022152bfc6c1f3606f7e.woff')format("woff");}.ff20{font-family:ff20;line-height:1.402354;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;}
.m44{transform:matrix(0.002500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.002500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.002500,0.000000,0.000000,0.250000,0,0);}
.m4c{transform:matrix(0.050000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.050000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.050000,0.000000,0.000000,0.250000,0,0);}
.m32{transform:matrix(0.062500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.062500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.062500,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.082500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.082500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.082500,0.000000,0.000000,0.250000,0,0);}
.m7b{transform:matrix(0.092500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.092500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.092500,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.m78{transform:matrix(0.105000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105000,0.000000,0.000000,0.250000,0,0);}
.m55{transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);}
.m6f{transform:matrix(0.115000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115000,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);}
.m40{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);}
.m52{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);}
.m6e{transform:matrix(0.142500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142500,0.000000,0.000000,0.250000,0,0);}
.m6b{transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m63{transform:matrix(0.152500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152500,0.000000,0.000000,0.250000,0,0);}
.m61{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.m71{transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m5f{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m5a{transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);}
.m50{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.m4f{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.m65{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m59{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.m3d{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m4e{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.m73{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m37{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m4d{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);}
.m51{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);}
.m43{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m22{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);}
.m29{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);}
.m35{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m4b{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);}
.m3f{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);}
.m20{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);}
.m56{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);}
.m2c{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);}
.m28{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);}
.m15{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);}
.m30{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);}
.m3b{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);}
.m2d{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);}
.m31{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);}
.m25{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);}
.m26{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);}
.m60{transform:matrix(0.248742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248742,0.000000,0.000000,0.250000,0,0);}
.m45{transform:matrix(0.249472,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249472,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249472,0.000000,0.000000,0.250000,0,0);}
.m46{transform:matrix(0.249666,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249666,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249666,0.000000,0.000000,0.250000,0,0);}
.m57{transform:matrix(0.249684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249684,0.000000,0.000000,0.250000,0,0);}
.m8{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);}
.m64{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);}
.m48{transform:matrix(0.250417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250417,0.000000,0.000000,0.250000,0,0);}
.m47{transform:matrix(0.251471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251471,0.000000,0.000000,0.250000,0,0);}
.m54{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);}
.m58{transform:matrix(0.254546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254546,0.000000,0.000000,0.250000,0,0);}
.m2e{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);}
.m21{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);}
.m33{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m36{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);}
.m38{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);}
.me{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);}
.m1a{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);}
.m17{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);}
.mf{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);}
.m23{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);}
.m41{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);}
.mb{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);}
.ma{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);}
.m3{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);}
.m9{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);}
.m27{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);}
.m5d{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);}
.m12{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);}
.m14{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);}
.m1c{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);}
.m2{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);}
.m70{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);}
.m2f{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);}
.m6a{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);}
.m2b{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);}
.m10{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);}
.m69{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);}
.m53{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);}
.m5c{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);}
.m5{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);}
.m13{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);}
.m0{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);}
.m6c{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);}
.m1f{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);}
.m6{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);}
.m4a{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);}
.m19{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);}
.m4{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);}
.m11{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m77{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);}
.m3a{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);}
.m7c{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);}
.m49{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);}
.m6d{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);}
.m39{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m42{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);}
.m7d{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);}
.m1{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);}
.m76{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);}
.m79{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.m66{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m67{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);}
.m18{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);}
.m75{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);}
.m72{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);}
.m7a{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);}
.m34{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);}
.m5e{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m3c{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m7e{transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.500000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.500000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.500000,0.000000,0.000000,0.250000,0,0);}
.m5b{transform:matrix(0.562500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562500,0.000000,0.000000,0.250000,0,0);}
.m74{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m3e{transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);}
.m68{transform:matrix(0.665000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665000,0.000000,0.000000,0.250000,0,0);}
.m62{transform:matrix(0.687500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687500,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-6.000000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:6.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:3.720000px;}
.ls1{letter-spacing:7.560000px;}
.ls3{letter-spacing:15.000000px;}
.ls5{letter-spacing:18.666667px;}
.ls4{letter-spacing:33.000000px;}
.ls6{letter-spacing:264.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;}
}
.ws5d{word-spacing:-288.000000px;}
.ws17{word-spacing:-42.000000px;}
.wsd{word-spacing:-30.720000px;}
.wsa{word-spacing:-27.000000px;}
.ws2e{word-spacing:-24.000000px;}
.ws50{word-spacing:-21.000000px;}
.ws25{word-spacing:-15.599528px;}
.ws5a{word-spacing:-14.217687px;}
.ws3e{word-spacing:-13.689554px;}
.ws26{word-spacing:-13.668617px;}
.ws76{word-spacing:-13.256635px;}
.ws23{word-spacing:-12.823716px;}
.ws12{word-spacing:-12.725898px;}
.ws3a{word-spacing:-12.399284px;}
.ws16{word-spacing:-12.000000px;}
.ws39{word-spacing:-11.181270px;}
.ws49{word-spacing:-9.000000px;}
.ws2a{word-spacing:-8.946722px;}
.wsb{word-spacing:-8.427985px;}
.wsc{word-spacing:-7.953981px;}
.ws38{word-spacing:-7.740833px;}
.ws55{word-spacing:-6.814302px;}
.ws22{word-spacing:-6.674556px;}
.ws1d{word-spacing:-6.512861px;}
.ws4{word-spacing:-6.000000px;}
.ws6f{word-spacing:-5.591716px;}
.ws51{word-spacing:-5.528926px;}
.ws45{word-spacing:-5.035714px;}
.ws27{word-spacing:-4.717416px;}
.ws78{word-spacing:-4.387755px;}
.ws64{word-spacing:-3.333333px;}
.ws62{word-spacing:-3.084246px;}
.ws43{word-spacing:-3.000000px;}
.ws5e{word-spacing:-2.991124px;}
.ws6c{word-spacing:-2.882353px;}
.ws4b{word-spacing:-2.503401px;}
.ws20{word-spacing:-2.366010px;}
.wse{word-spacing:-1.127219px;}
.ws59{word-spacing:-1.088133px;}
.ws77{word-spacing:-0.240000px;}
.ws3{word-spacing:0.000000px;}
.ws11{word-spacing:1.054422px;}
.ws2d{word-spacing:1.186519px;}
.ws3f{word-spacing:1.785488px;}
.ws37{word-spacing:2.884660px;}
.ws0{word-spacing:3.000000px;}
.ws21{word-spacing:4.205548px;}
.ws67{word-spacing:4.420118px;}
.ws3c{word-spacing:4.567443px;}
.ws60{word-spacing:5.421550px;}
.wsf{word-spacing:6.000000px;}
.ws61{word-spacing:8.945141px;}
.ws1a{word-spacing:9.000000px;}
.ws5{word-spacing:10.000000px;}
.ws2{word-spacing:10.853186px;}
.ws46{word-spacing:11.600716px;}
.ws58{word-spacing:11.864583px;}
.ws5f{word-spacing:11.975207px;}
.ws2c{word-spacing:12.000000px;}
.ws1b{word-spacing:12.510397px;}
.ws24{word-spacing:12.822917px;}
.ws54{word-spacing:13.974280px;}
.ws34{word-spacing:15.000000px;}
.ws5b{word-spacing:15.466787px;}
.ws6{word-spacing:15.556787px;}
.ws74{word-spacing:15.872576px;}
.ws4d{word-spacing:16.576560px;}
.ws35{word-spacing:17.380952px;}
.ws4a{word-spacing:18.000000px;}
.ws4f{word-spacing:19.333333px;}
.ws44{word-spacing:19.599244px;}
.ws3b{word-spacing:19.723140px;}
.ws75{word-spacing:19.928028px;}
.ws1f{word-spacing:19.958678px;}
.ws71{word-spacing:20.093750px;}
.ws40{word-spacing:20.642722px;}
.ws42{word-spacing:21.000000px;}
.ws63{word-spacing:21.179267px;}
.ws10{word-spacing:21.825713px;}
.ws65{word-spacing:22.113573px;}
.ws15{word-spacing:22.472159px;}
.ws36{word-spacing:23.665406px;}
.ws30{word-spacing:24.000000px;}
.ws2f{word-spacing:24.465374px;}
.ws8{word-spacing:26.802636px;}
.ws4c{word-spacing:27.471074px;}
.ws6e{word-spacing:27.628547px;}
.ws19{word-spacing:27.706612px;}
.ws14{word-spacing:27.942149px;}
.ws29{word-spacing:29.192837px;}
.ws6a{word-spacing:31.051922px;}
.ws52{word-spacing:32.329067px;}
.ws56{word-spacing:34.820416px;}
.ws13{word-spacing:35.219008px;}
.ws2b{word-spacing:35.454545px;}
.ws48{word-spacing:35.690083px;}
.ws53{word-spacing:37.035756px;}
.ws1e{word-spacing:37.333333px;}
.ws72{word-spacing:39.000000px;}
.ws41{word-spacing:40.437005px;}
.ws32{word-spacing:42.000000px;}
.ws3d{word-spacing:43.438017px;}
.ws68{word-spacing:43.673554px;}
.ws28{word-spacing:44.416667px;}
.ws7c{word-spacing:45.333333px;}
.ws69{word-spacing:46.468490px;}
.ws79{word-spacing:50.556755px;}
.ws33{word-spacing:51.421488px;}
.ws9{word-spacing:51.657025px;}
.ws6b{word-spacing:54.065572px;}
.ws66{word-spacing:57.275257px;}
.ws47{word-spacing:58.666667px;}
.ws5c{word-spacing:67.395008px;}
.ws70{word-spacing:68.062196px;}
.ws7{word-spacing:69.375000px;}
.ws73{word-spacing:74.113510px;}
.ws6d{word-spacing:75.371901px;}
.ws4e{word-spacing:77.514758px;}
.ws1{word-spacing:84.233260px;}
.ws1c{word-spacing:90.000000px;}
.ws18{word-spacing:234.000000px;}
.ws7a{word-spacing:240.000000px;}
.ws31{word-spacing:330.000000px;}
.ws7b{word-spacing:336.000000px;}
.ws57{word-spacing:1392.000000px;}
._12{margin-left:-264.000000px;}
._18{margin-left:-58.773148px;}
._5{margin-left:-15.000000px;}
._10{margin-left:-10.033593px;}
._6{margin-left:-7.083176px;}
._13{margin-left:-5.726803px;}
._2{margin-left:-4.560000px;}
._c{margin-left:-3.000000px;}
._f{margin-left:-1.731678px;}
._a{width:2.436442px;}
._4{width:3.720000px;}
._1{width:5.200378px;}
._11{width:6.402239px;}
._9{width:7.933413px;}
._3{width:9.000000px;}
._15{width:10.333333px;}
._0{width:15.000000px;}
._8{width:19.046019px;}
._14{width:21.000000px;}
._e{width:23.915754px;}
._19{width:27.000000px;}
._1a{width:30.000000px;}
._17{width:33.000000px;}
._7{width:36.000000px;}
._d{width:39.000000px;}
._16{width:42.000000px;}
._b{width:77.556755px;}
.fc1{color:rgb(0,0,0);}
.fc0{color:transparent;}
.fsd{font-size:36.000000px;}
.fs1{font-size:42.000000px;}
.fs8{font-size:47.999539px;}
.fsb{font-size:47.999568px;}
.fs5{font-size:47.999827px;}
.fs4{font-size:48.000000px;}
.fs3{font-size:54.000000px;}
.fs9{font-size:59.999424px;}
.fsc{font-size:59.999460px;}
.fs6{font-size:59.999784px;}
.fs2{font-size:60.000000px;}
.fsa{font-size:60.000037px;}
.fs7{font-size:60.051741px;}
.fs0{font-size:78.000000px;}
.y0{bottom:0.000000px;}
.y30{bottom:3.630728px;}
.y68{bottom:3.638102px;}
.y66{bottom:3.995212px;}
.y9c{bottom:3.995214px;}
.y2e{bottom:3.995236px;}
.y6a{bottom:3.995250px;}
.y65{bottom:5.096201px;}
.y9b{bottom:5.096204px;}
.y2d{bottom:5.096232px;}
.yd7{bottom:5.096250px;}
.y1fc{bottom:105.248040px;}
.y166{bottom:109.748040px;}
.y2b{bottom:111.248040px;}
.y1ad{bottom:120.248040px;}
.y1ae{bottom:121.748040px;}
.y1af{bottom:123.248040px;}
.y1b0{bottom:124.748040px;}
.y19f{bottom:126.248040px;}
.ybf{bottom:130.748040px;}
.yea{bottom:132.248040px;}
.y2a{bottom:133.748040px;}
.y123{bottom:135.248040px;}
.y10b{bottom:136.748040px;}
.y63{bottom:138.248040px;}
.y1ac{bottom:139.748040px;}
.y1e3{bottom:141.248040px;}
.y1e4{bottom:142.748040px;}
.y18c{bottom:144.248040px;}
.y19e{bottom:145.748040px;}
.ybd{bottom:147.248040px;}
.ybe{bottom:148.748040px;}
.y29{bottom:150.248040px;}
.y109{bottom:151.748040px;}
.y10a{bottom:153.248040px;}
.y62{bottom:154.748040px;}
.y1ab{bottom:156.248040px;}
.y177{bottom:157.748040px;}
.y178{bottom:159.248040px;}
.y1d8{bottom:162.248040px;}
.ybc{bottom:163.748040px;}
.y28{bottom:165.248040px;}
.y27{bottom:166.748040px;}
.y122{bottom:168.248040px;}
.y60{bottom:169.748040px;}
.y61{bottom:171.248040px;}
.y1aa{bottom:172.748040px;}
.y1e2{bottom:174.248040px;}
.y1fa{bottom:175.748040px;}
.y176{bottom:177.248040px;}
.yb9{bottom:178.748040px;}
.yba{bottom:180.248040px;}
.ybb{bottom:181.748040px;}
.yd5{bottom:183.248040px;}
.y121{bottom:184.748040px;}
.y160{bottom:186.248040px;}
.y99{bottom:187.748040px;}
.y98{bottom:189.248040px;}
.y18f{bottom:190.748040px;}
.yb7{bottom:195.248040px;}
.yb8{bottom:196.748040px;}
.yd4{bottom:198.248040px;}
.y26{bottom:199.748040px;}
.y14a{bottom:201.248040px;}
.y15f{bottom:202.748040px;}
.y5f{bottom:204.248040px;}
.y5e{bottom:205.748040px;}
.y97{bottom:207.248040px;}
.y96{bottom:208.748040px;}
.y13d{bottom:210.248040px;}
.yb5{bottom:211.748040px;}
.yb6{bottom:213.248040px;}
.ye9{bottom:214.748040px;}
.y120{bottom:216.248040px;}
.y149{bottom:217.748040px;}
.y25{bottom:219.248040px;}
.y24{bottom:220.748040px;}
.y18b{bottom:222.248040px;}
.y5c{bottom:223.748040px;}
.y5d{bottom:225.248040px;}
.y95{bottom:226.748040px;}
.y94{bottom:228.248040px;}
.yb4{bottom:229.748040px;}
.ye8{bottom:231.248040px;}
.y11f{bottom:232.748040px;}
.y148{bottom:234.248040px;}
.y174{bottom:235.748040px;}
.y175{bottom:237.248040px;}
.y23{bottom:238.748040px;}
.y22{bottom:240.248040px;}
.yd3{bottom:241.748040px;}
.y5a{bottom:243.248040px;}
.y5b{bottom:244.748040px;}
.yb3{bottom:246.248040px;}
.ye7{bottom:247.748040px;}
.y11e{bottom:249.248040px;}
.y147{bottom:250.748040px;}
.y1a8{bottom:252.248040px;}
.y1a9{bottom:253.748040px;}
.y172{bottom:255.248040px;}
.y173{bottom:256.748040px;}
.y21{bottom:258.248040px;}
.y20{bottom:259.748040px;}
.y93{bottom:261.248040px;}
.y59{bottom:262.748040px;}
.y58{bottom:264.248040px;}
.y107{bottom:265.748040px;}
.y108{bottom:267.248040px;}
.y13c{bottom:268.748040px;}
.y1e0{bottom:271.748040px;}
.y1e1{bottom:273.248040px;}
.y1f9{bottom:274.748040px;}
.yb2{bottom:276.248040px;}
.y1f{bottom:277.748040px;}
.y1e{bottom:279.248040px;}
.y92{bottom:280.748040px;}
.y57{bottom:282.248040px;}
.y56{bottom:283.748040px;}
.y105{bottom:285.248040px;}
.y106{bottom:286.748040px;}
.y129{bottom:288.248040px;}
.y1de{bottom:291.248040px;}
.y1df{bottom:292.748040px;}
.y1f8{bottom:294.248040px;}
.yb1{bottom:295.748040px;}
.y1d{bottom:297.248040px;}
.y1c{bottom:298.748040px;}
.y91{bottom:300.248040px;}
.y55{bottom:301.748040px;}
.y54{bottom:303.248040px;}
.y103{bottom:304.748040px;}
.y104{bottom:306.248040px;}
.y128{bottom:307.748040px;}
.y13b{bottom:309.248040px;}
.y11d{bottom:310.748040px;}
.y11c{bottom:312.248040px;}
.y11b{bottom:313.748040px;}
.yb0{bottom:315.248040px;}
.ye6{bottom:316.748040px;}
.y90{bottom:318.248040px;}
.y8f{bottom:319.748040px;}
.y53{bottom:321.248040px;}
.y52{bottom:322.748040px;}
.y150{bottom:324.248040px;}
.y102{bottom:325.748040px;}
.y127{bottom:327.248040px;}
.y13a{bottom:328.748040px;}
.y159{bottom:330.248040px;}
.y15a{bottom:331.748040px;}
.y1f7{bottom:333.248040px;}
.y1b{bottom:334.748040px;}
.ye5{bottom:336.248040px;}
.y8e{bottom:337.748040px;}
.y8d{bottom:339.248040px;}
.y51{bottom:340.748040px;}
.y50{bottom:342.248040px;}
.yd2{bottom:343.748040px;}
.y101{bottom:345.248040px;}
.y139{bottom:346.748040px;}
.y138{bottom:348.248040px;}
.y157{bottom:349.748040px;}
.y158{bottom:351.248040px;}
.y1c1{bottom:352.748040px;}
.yae{bottom:354.248040px;}
.yaf{bottom:355.748040px;}
.y8c{bottom:357.248040px;}
.y8b{bottom:358.748040px;}
.y4f{bottom:360.248040px;}
.y4e{bottom:361.748040px;}
.yd1{bottom:363.248040px;}
.yff{bottom:364.748040px;}
.y100{bottom:366.248040px;}
.y137{bottom:367.748040px;}
.y15e{bottom:369.248040px;}
.y156{bottom:370.748040px;}
.yad{bottom:373.748040px;}
.y1d9{bottom:375.248040px;}
.y8a{bottom:376.748040px;}
.y89{bottom:378.248040px;}
.y1a{bottom:379.748040px;}
.y4d{bottom:381.248040px;}
.yd0{bottom:382.748040px;}
.yfd{bottom:384.248040px;}
.yfe{bottom:385.748040px;}
.y126{bottom:387.248040px;}
.y15d{bottom:388.748040px;}
.y155{bottom:390.248040px;}
.y1e9{bottom:391.748040px;}
.yac{bottom:393.248040px;}
.y1f6{bottom:394.748040px;}
.y88{bottom:396.248040px;}
.y19{bottom:397.748040px;}
.y18{bottom:399.248040px;}
.y4c{bottom:400.748040px;}
.ycf{bottom:402.248040px;}
.y14f{bottom:403.748040px;}
.yfc{bottom:405.248040px;}
.y11a{bottom:406.748040px;}
.y15c{bottom:408.248040px;}
.y154{bottom:409.748040px;}
.y1c0{bottom:411.248040px;}
.yab{bottom:412.748040px;}
.y1f5{bottom:414.248040px;}
.y87{bottom:415.748040px;}
.y86{bottom:417.248040px;}
.y17{bottom:418.748040px;}
.y4b{bottom:420.248040px;}
.yce{bottom:421.748040px;}
.y161{bottom:423.248040px;}
.yfb{bottom:424.748040px;}
.y136{bottom:426.248040px;}
.y15b{bottom:427.748040px;}
.y153{bottom:429.248040px;}
.y1bf{bottom:430.748040px;}
.yaa{bottom:432.248040px;}
.y1f4{bottom:433.748040px;}
.y1a7{bottom:435.248040px;}
.y16{bottom:436.748040px;}
.y15{bottom:438.248040px;}
.y4a{bottom:439.748040px;}
.ycd{bottom:441.248040px;}
.y1fb{bottom:442.748040px;}
.yfa{bottom:444.248040px;}
.y119{bottom:445.748040px;}
.y85{bottom:447.248040px;}
.y84{bottom:448.748040px;}
.ya9{bottom:451.748040px;}
.y1a5{bottom:453.248040px;}
.y1a6{bottom:454.748040px;}
.y1d7{bottom:456.248040px;}
.y14{bottom:457.748040px;}
.y49{bottom:459.248040px;}
.ycc{bottom:460.748040px;}
.y118{bottom:462.248040px;}
.yf9{bottom:463.748040px;}
.y117{bottom:465.248040px;}
.y165{bottom:466.748040px;}
.y164{bottom:468.248040px;}
.y1a4{bottom:472.748040px;}
.ya8{bottom:474.248040px;}
.y1d6{bottom:475.748040px;}
.y13{bottom:477.248040px;}
.y48{bottom:478.748040px;}
.ycb{bottom:480.248040px;}
.y116{bottom:481.748040px;}
.yf8{bottom:483.248040px;}
.y115{bottom:484.748040px;}
.y163{bottom:486.248040px;}
.y83{bottom:487.748040px;}
.y1dd{bottom:492.248040px;}
.ya7{bottom:493.748040px;}
.y1d5{bottom:495.248040px;}
.y12{bottom:496.748040px;}
.y47{bottom:498.248040px;}
.yca{bottom:499.748040px;}
.y114{bottom:501.248040px;}
.yf7{bottom:502.748040px;}
.y113{bottom:504.248040px;}
.y162{bottom:505.748040px;}
.y82{bottom:507.248040px;}
.y1f3{bottom:511.748040px;}
.ya6{bottom:513.248040px;}
.y11{bottom:514.748040px;}
.y10{bottom:516.248040px;}
.y46{bottom:517.748040px;}
.yc9{bottom:519.248040px;}
.ye4{bottom:520.748040px;}
.yf6{bottom:522.248040px;}
.y112{bottom:523.748040px;}
.y81{bottom:526.748040px;}
.y1f2{bottom:531.248040px;}
.y18a{bottom:532.748040px;}
.y1d4{bottom:534.248040px;}
.yf{bottom:535.748040px;}
.y45{bottom:537.248040px;}
.yc8{bottom:538.748040px;}
.yc7{bottom:540.248040px;}
.ye3{bottom:541.748040px;}
.y111{bottom:543.248040px;}
.y19d{bottom:544.748040px;}
.y80{bottom:546.248040px;}
.y1a3{bottom:547.748040px;}
.y171{bottom:549.248040px;}
.y1f1{bottom:550.748040px;}
.y189{bottom:552.248040px;}
.y1d3{bottom:553.748040px;}
.ye{bottom:555.248040px;}
.y44{bottom:556.748040px;}
.yc6{bottom:558.248040px;}
.yc5{bottom:559.748040px;}
.ye2{bottom:561.248040px;}
.y110{bottom:562.748040px;}
.y135{bottom:564.248040px;}
.y7f{bottom:565.748040px;}
.y1a1{bottom:567.248040px;}
.y1a2{bottom:568.748040px;}
.y1f0{bottom:570.248040px;}
.y152{bottom:571.748040px;}
.y1d2{bottom:573.248040px;}
.yd{bottom:574.748040px;}
.y43{bottom:576.248040px;}
.yc4{bottom:577.748040px;}
.yc3{bottom:579.248040px;}
.ye1{bottom:580.748040px;}
.y10f{bottom:582.248040px;}
.y134{bottom:583.748040px;}
.y1dc{bottom:585.248040px;}
.y170{bottom:588.248040px;}
.y1ef{bottom:589.748040px;}
.y188{bottom:591.248040px;}
.y1d1{bottom:592.748040px;}
.y41{bottom:594.248040px;}
.y42{bottom:595.748040px;}
.y7d{bottom:597.248040px;}
.y7e{bottom:598.748040px;}
.ydf{bottom:600.248040px;}
.ye0{bottom:601.748040px;}
.y146{bottom:603.248040px;}
.y19c{bottom:604.748040px;}
.y1db{bottom:606.248040px;}
.y16f{bottom:607.748040px;}
.y1e8{bottom:609.248040px;}
.y1d0{bottom:610.748040px;}
.y1cf{bottom:612.248040px;}
.yc{bottom:613.748040px;}
.y1be{bottom:615.248040px;}
.y7b{bottom:616.748040px;}
.y7c{bottom:618.248040px;}
.ydd{bottom:619.748040px;}
.yde{bottom:621.248040px;}
.y145{bottom:622.748040px;}
.y40{bottom:624.248040px;}
.y16e{bottom:627.248040px;}
.y1e7{bottom:628.748040px;}
.y1ce{bottom:631.748040px;}
.y131{bottom:633.248040px;}
.y1bd{bottom:634.748040px;}
.y7a{bottom:636.248040px;}
.yc2{bottom:637.748040px;}
.yf5{bottom:639.248040px;}
.y10e{bottom:640.748040px;}
.y144{bottom:642.248040px;}
.y3f{bottom:643.748040px;}
.y16d{bottom:645.248040px;}
.y16c{bottom:646.748040px;}
.y1e6{bottom:648.248040px;}
.y130{bottom:649.748040px;}
.yb{bottom:651.248040px;}
.y1cd{bottom:652.748040px;}
.y1bc{bottom:654.248040px;}
.y79{bottom:655.748040px;}
.yc1{bottom:657.248040px;}
.ydc{bottom:658.748040px;}
.y10d{bottom:660.248040px;}
.y143{bottom:661.748040px;}
.y3e{bottom:663.248040px;}
.y1da{bottom:664.748040px;}
.ya{bottom:666.248040px;}
.y9{bottom:667.748040px;}
.y1cc{bottom:670.748040px;}
.y1cb{bottom:672.248040px;}
.y1bb{bottom:673.748040px;}
.y77{bottom:675.248040px;}
.y78{bottom:676.748040px;}
.yf4{bottom:678.248040px;}
.y10c{bottom:679.748040px;}
.y16b{bottom:681.248040px;}
.y8{bottom:682.748040px;}
.y7{bottom:684.248040px;}
.y186{bottom:685.748040px;}
.y187{bottom:687.248040px;}
.y19b{bottom:688.748040px;}
.y1ca{bottom:690.248040px;}
.y1c9{bottom:691.748040px;}
.y1ba{bottom:693.248040px;}
.y75{bottom:694.748040px;}
.y76{bottom:696.248040px;}
.y6{bottom:697.748040px;}
.y5{bottom:699.248040px;}
.y4{bottom:700.748040px;}
.y3d{bottom:702.248040px;}
.y199{bottom:705.248040px;}
.y19a{bottom:706.748040px;}
.y1c8{bottom:709.748040px;}
.y1c7{bottom:711.248040px;}
.y1b9{bottom:712.748040px;}
.y74{bottom:714.248040px;}
.y73{bottom:715.748040px;}
.ydb{bottom:717.248040px;}
.yf3{bottom:718.748040px;}
.y141{bottom:720.248040px;}
.y1ee{bottom:721.748040px;}
.y185{bottom:723.248040px;}
.y198{bottom:724.748040px;}
.y142{bottom:726.248040px;}
.y3c{bottom:727.748040px;}
.y1c6{bottom:729.248040px;}
.y12f{bottom:730.748040px;}
.y133{bottom:732.248040px;}
.ya5{bottom:733.748040px;}
.y72{bottom:735.248040px;}
.yda{bottom:736.748040px;}
.yf2{bottom:738.248040px;}
.y140{bottom:739.748040px;}
.y3{bottom:741.248040px;}
.y183{bottom:742.748040px;}
.y184{bottom:744.248040px;}
.y197{bottom:745.748040px;}
.y12e{bottom:747.248040px;}
.y3b{bottom:748.748040px;}
.y1c5{bottom:750.248040px;}
.y1c4{bottom:751.748040px;}
.ya4{bottom:753.248040px;}
.y71{bottom:754.748040px;}
.yd9{bottom:756.248040px;}
.yf1{bottom:757.748040px;}
.y13f{bottom:759.248040px;}
.y16a{bottom:760.748040px;}
.y1ed{bottom:762.248040px;}
.y12d{bottom:763.748040px;}
.y196{bottom:765.248040px;}
.y2{bottom:766.748040px;}
.y1{bottom:768.248040px;}
.y1b7{bottom:769.748040px;}
.y1b8{bottom:771.248040px;}
.y14e{bottom:772.748040px;}
.y70{bottom:774.248040px;}
.yc0{bottom:775.748040px;}
.yf0{bottom:777.248040px;}
.y13e{bottom:778.748040px;}
.y12c{bottom:780.248040px;}
.y182{bottom:783.248040px;}
.y194{bottom:784.748040px;}
.y195{bottom:786.248040px;}
.y1e5{bottom:787.748040px;}
.y1c3{bottom:789.248040px;}
.y1b6{bottom:790.748040px;}
.y14d{bottom:792.248040px;}
.y6f{bottom:793.748040px;}
.ya3{bottom:795.248040px;}
.y3a{bottom:796.748040px;}
.yef{bottom:798.248040px;}
.y169{bottom:799.748040px;}
.y168{bottom:801.248040px;}
.y181{bottom:802.748040px;}
.y192{bottom:804.248040px;}
.y193{bottom:805.748040px;}
.y1b4{bottom:808.748040px;}
.y1b5{bottom:810.248040px;}
.y12b{bottom:811.748040px;}
.y6e{bottom:813.248040px;}
.ya2{bottom:814.748040px;}
.y39{bottom:816.248040px;}
.y38{bottom:817.748040px;}
.yee{bottom:819.248040px;}
.y17f{bottom:822.248040px;}
.y180{bottom:823.748040px;}
.y1ec{bottom:826.748040px;}
.y12a{bottom:828.248040px;}
.y132{bottom:829.748040px;}
.y6d{bottom:832.748040px;}
.ya1{bottom:834.248040px;}
.y37{bottom:835.748040px;}
.y36{bottom:837.248040px;}
.yed{bottom:838.748040px;}
.y17d{bottom:841.748040px;}
.y17e{bottom:843.248040px;}
.y191{bottom:844.748040px;}
.y1eb{bottom:846.248040px;}
.y1b2{bottom:847.748040px;}
.y1b3{bottom:849.248040px;}
.y6c{bottom:852.248040px;}
.ya0{bottom:853.748040px;}
.y35{bottom:855.248040px;}
.y33{bottom:856.748040px;}
.y34{bottom:858.248040px;}
.y17b{bottom:861.248040px;}
.y17c{bottom:862.748040px;}
.y1a0{bottom:876.248040px;}
.y190{bottom:877.748040px;}
.y1ea{bottom:879.248040px;}
.y1c2{bottom:882.248040px;}
.y1b1{bottom:883.748040px;}
.y151{bottom:885.248040px;}
.y6b{bottom:886.748040px;}
.y9f{bottom:888.248040px;}
.y32{bottom:889.748040px;}
.y31{bottom:891.248040px;}
.y167{bottom:892.748040px;}
.y179{bottom:894.248040px;}
.y17a{bottom:895.748040px;}
.y124{bottom:978.995850px;}
.y125{bottom:979.710137px;}
.yeb{bottom:980.495850px;}
.yec{bottom:981.210137px;}
.y2c{bottom:981.995839px;}
.yd6{bottom:981.995850px;}
.yd8{bottom:982.710137px;}
.y2f{bottom:982.712722px;}
.y14b{bottom:983.495850px;}
.y14c{bottom:984.210137px;}
.y69{bottom:984.995850px;}
.y64{bottom:984.995956px;}
.y67{bottom:985.710137px;}
.y9e{bottom:986.495850px;}
.y9a{bottom:986.496048px;}
.y9d{bottom:987.210137px;}
.y18d{bottom:987.995850px;}
.y18e{bottom:988.710137px;}
.ha{height:18.280801px;}
.h12{height:18.286061px;}
.hf{height:19.000168px;}
.h18{height:19.000179px;}
.h7{height:19.000282px;}
.h14{height:19.000350px;}
.h1b{height:37.002327px;}
.h3{height:43.169382px;}
.h24{height:49.169382px;}
.h6{height:49.336436px;}
.h10{height:50.062019px;}
.h19{height:50.062049px;}
.h8{height:50.062320px;}
.h1c{height:50.062500px;}
.h23{height:55.336436px;}
.h5{height:55.503491px;}
.he{height:61.503491px;}
.h4{height:61.670545px;}
.h11{height:62.577524px;}
.h1a{height:62.577562px;}
.h9{height:62.577900px;}
.h15{height:62.578125px;}
.h13{height:62.578164px;}
.hb{height:62.632089px;}
.h2{height:80.171709px;}
.h1f{height:1000.996080px;}
.h20{height:1001.250000px;}
.h1d{height:1002.496080px;}
.h1e{height:1002.750000px;}
.h0{height:1003.996080px;}
.h1{height:1004.250000px;}
.h21{height:1005.496080px;}
.h22{height:1005.750000px;}
.hc{height:1006.996080px;}
.hd{height:1007.250000px;}
.h16{height:1008.496080px;}
.h17{height:1008.750000px;}
.h25{height:1009.996080px;}
.h26{height:1010.250000px;}
.w14{width:72.572400px;}
.w3{width:72.580403px;}
.w9{width:73.891216px;}
.w4{width:75.389042px;}
.wa{width:75.429600px;}
.w8{width:182.341511px;}
.w10{width:182.364109px;}
.w13{width:182.573700px;}
.w2{width:182.586441px;}
.w5{width:183.278047px;}
.wb{width:183.287985px;}
.w0{width:688.996080px;}
.w1{width:689.250000px;}
.w11{width:690.496080px;}
.w12{width:690.750000px;}
.w17{width:691.996080px;}
.w18{width:692.250000px;}
.w19{width:693.496080px;}
.w1a{width:693.750000px;}
.w1b{width:694.996080px;}
.w1c{width:695.250000px;}
.w15{width:696.496080px;}
.w16{width:696.750000px;}
.wc{width:699.496080px;}
.wd{width:699.750000px;}
.w1d{width:700.996080px;}
.w1e{width:701.250000px;}
.we{width:705.496080px;}
.wf{width:705.750000px;}
.w1f{width:706.996080px;}
.w20{width:707.250000px;}
.w6{width:708.496080px;}
.w7{width:708.750000px;}
.x0{left:0.000000px;}
.xc1{left:3.020249px;}
.xbe{left:5.478384px;}
.xc0{left:13.820623px;}
.xc3{left:18.588428px;}
.x51{left:91.748040px;}
.x8d{left:93.248040px;}
.x1{left:94.748040px;}
.x150{left:96.248040px;}
.x49{left:97.748040px;}
.x14d{left:99.248040px;}
.x13b{left:100.748040px;}
.x13e{left:102.248040px;}
.xbd{left:103.748040px;}
.x15d{left:105.248040px;}
.x15c{left:106.748040px;}
.x157{left:108.248040px;}
.x14e{left:109.748040px;}
.x153{left:111.248040px;}
.xa2{left:112.748040px;}
.xaf{left:114.248040px;}
.x32{left:115.748040px;}
.x16{left:117.248040px;}
.x36{left:118.748040px;}
.x154{left:120.248040px;}
.x66{left:121.748040px;}
.xa3{left:123.248040px;}
.x41{left:124.748040px;}
.x25{left:126.248040px;}
.x7a{left:127.748040px;}
.x133{left:129.248040px;}
.xc2{left:130.863702px;}
.x13c{left:132.248040px;}
.x124{left:133.748040px;}
.x109{left:135.248040px;}
.xf5{left:136.748040px;}
.xb0{left:138.248040px;}
.xc5{left:139.748040px;}
.x37{left:141.248040px;}
.x26{left:142.748040px;}
.x86{left:144.248040px;}
.x69{left:145.748040px;}
.x9{left:147.248040px;}
.xba{left:148.748040px;}
.xc6{left:150.248040px;}
.x52{left:151.748040px;}
.x136{left:153.248040px;}
.xd2{left:154.748040px;}
.x7b{left:156.248040px;}
.xb1{left:157.748040px;}
.x38{left:159.248040px;}
.x6a{left:160.748040px;}
.x27{left:162.248040px;}
.x70{left:163.748040px;}
.xdb{left:165.248040px;}
.xa{left:166.748040px;}
.x135{left:168.248040px;}
.x2{left:169.748040px;}
.x17{left:171.248040px;}
.xb{left:172.748040px;}
.x4a{left:174.248040px;}
.x87{left:175.748040px;}
.x13d{left:177.248040px;}
.x130{left:178.748040px;}
.x7c{left:180.248040px;}
.x10a{left:181.748040px;}
.x71{left:183.248040px;}
.x6{left:184.748040px;}
.x5a{left:186.248040px;}
.xd3{left:187.748040px;}
.xc{left:189.248040px;}
.x106{left:190.748040px;}
.x7d{left:192.248040px;}
.xe0{left:193.748040px;}
.x98{left:195.248040px;}
.xd4{left:196.748040px;}
.x4b{left:198.248040px;}
.xf1{left:199.748040px;}
.x72{left:201.248040px;}
.x18{left:202.748040px;}
.x5b{left:204.248040px;}
.x93{left:205.748040px;}
.xe1{left:207.248040px;}
.x7e{left:208.748040px;}
.x11b{left:210.248040px;}
.xf2{left:211.748040px;}
.x8e{left:213.248040px;}
.x10e{left:214.748040px;}
.x7f{left:216.248040px;}
.xdc{left:217.748040px;}
.x19{left:219.248040px;}
.xa4{left:220.748040px;}
.xcf{left:222.248040px;}
.x3{left:223.748040px;}
.x28{left:225.248040px;}
.x80{left:226.748040px;}
.xbc{left:228.248040px;}
.x5c{left:229.748040px;}
.xd5{left:231.248040px;}
.x125{left:232.748040px;}
.x81{left:234.248040px;}
.x42{left:235.748040px;}
.x92{left:237.248040px;}
.x13a{left:238.748040px;}
.x6b{left:240.248040px;}
.xf9{left:241.748040px;}
.x73{left:243.248040px;}
.xe9{left:244.748040px;}
.x82{left:246.248040px;}
.x29{left:247.748040px;}
.xe2{left:249.248040px;}
.x39{left:250.748040px;}
.x74{left:252.248040px;}
.x53{left:253.748040px;}
.x33{left:255.248040px;}
.xbb{left:256.748040px;}
.x2a{left:258.248040px;}
.x6c{left:259.748040px;}
.x34{left:261.248040px;}
.xe3{left:262.748040px;}
.xf6{left:264.248040px;}
.xd{left:265.748040px;}
.x128{left:267.248040px;}
.xa9{left:268.748040px;}
.x1a{left:270.248040px;}
.xa5{left:271.748040px;}
.x54{left:273.248040px;}
.x10f{left:274.748040px;}
.x3a{left:276.248040px;}
.x7{left:277.748040px;}
.xcd{left:279.248040px;}
.x35{left:280.748040px;}
.x88{left:282.248040px;}
.x99{left:283.748040px;}
.x1b{left:285.248040px;}
.x2b{left:286.748040px;}
.x12d{left:288.248040px;}
.x147{left:289.748040px;}
.xaa{left:291.248040px;}
.xe{left:292.748040px;}
.x43{left:294.248040px;}
.x8f{left:295.748040px;}
.x10b{left:297.248040px;}
.x5d{left:298.748040px;}
.x118{left:300.248040px;}
.x132{left:301.748040px;}
.x1c{left:303.248040px;}
.xc7{left:304.748040px;}
.x9a{left:306.248040px;}
.x2c{left:307.748040px;}
.xf{left:309.248040px;}
.x8{left:310.748040px;}
.x55{left:312.248040px;}
.x9b{left:313.748040px;}
.x102{left:315.248040px;}
.xea{left:316.748040px;}
.x12f{left:318.248040px;}
.xab{left:319.748040px;}
.x89{left:321.248040px;}
.xe4{left:322.748040px;}
.x44{left:324.248040px;}
.xb2{left:325.748040px;}
.x14b{left:327.248040px;}
.x121{left:328.748040px;}
.xfe{left:330.248040px;}
.x2d{left:331.748040px;}
.xce{left:333.248040px;}
.x3b{left:334.748040px;}
.xdd{left:336.248040px;}
.x5e{left:337.748040px;}
.x11d{left:339.248040px;}
.xd6{left:340.748040px;}
.x115{left:342.248040px;}
.x9c{left:343.748040px;}
.x14f{left:345.248040px;}
.xa6{left:346.748040px;}
.x1d{left:348.248040px;}
.x148{left:349.748040px;}
.x67{left:351.248040px;}
.x8a{left:352.748040px;}
.x9d{left:354.248040px;}
.x5f{left:355.748040px;}
.x4{left:357.248040px;}
.x129{left:358.748040px;}
.x116{left:360.248040px;}
.x4c{left:361.748040px;}
.x75{left:363.248040px;}
.x3c{left:364.748040px;}
.x10{left:366.248040px;}
.xa7{left:367.748040px;}
.x68{left:369.248040px;}
.x56{left:370.748040px;}
.x9e{left:372.248040px;}
.x94{left:373.748040px;}
.xc4{left:375.248040px;}
.xe5{left:376.748040px;}
.x13f{left:377.997325px;}
.x122{left:379.748040px;}
.x60{left:381.248040px;}
.x1e{left:382.748040px;}
.xf7{left:384.248040px;}
.x3d{left:385.748040px;}
.xc8{left:387.248040px;}
.x12e{left:388.748040px;}
.x12a{left:390.248040px;}
.x110{left:391.748040px;}
.xb3{left:393.248040px;}
.x45{left:394.748040px;}
.x90{left:396.248040px;}
.x142{left:397.748040px;}
.x123{left:399.248040px;}
.x119{left:400.748040px;}
.x1f{left:402.248040px;}
.xeb{left:403.748040px;}
.xde{left:405.248040px;}
.x4d{left:406.748040px;}
.xd0{left:408.248040px;}
.xad{left:409.748040px;}
.x126{left:411.248040px;}
.x61{left:412.748040px;}
.x20{left:414.248040px;}
.x76{left:415.748040px;}
.x8b{left:417.248040px;}
.x11c{left:418.748040px;}
.x2e{left:420.248040px;}
.x62{left:421.748040px;}
.x10c{left:423.248040px;}
.x21{left:424.748040px;}
.x14c{left:426.248040px;}
.x83{left:427.748040px;}
.xe7{left:429.248040px;}
.xc9{left:430.748040px;}
.xdf{left:432.248040px;}
.x11{left:433.748040px;}
.xb4{left:435.248040px;}
.x95{left:436.748040px;}
.x103{left:438.248040px;}
.x12{left:439.748040px;}
.x22{left:441.248040px;}
.x107{left:442.748040px;}
.x5{left:444.248040px;}
.xff{left:445.748040px;}
.x139{left:447.248040px;}
.x57{left:448.748040px;}
.x63{left:450.248040px;}
.x137{left:451.748040px;}
.x8c{left:453.248040px;}
.x114{left:454.748040px;}
.x77{left:456.248040px;}
.x3e{left:457.748040px;}
.xfa{left:459.248040px;}
.x6d{left:460.748040px;}
.xb5{left:462.248040px;}
.xee{left:463.748040px;}
.xae{left:465.248040px;}
.x12b{left:466.748040px;}
.x4e{left:468.248040px;}
.x46{left:469.748040px;}
.x13{left:471.248040px;}
.x2f{left:472.748040px;}
.x6e{left:474.248040px;}
.xd7{left:475.748040px;}
.xe6{left:477.248040px;}
.x96{left:478.748040px;}
.x78{left:480.248040px;}
.xac{left:481.748040px;}
.x64{left:483.248040px;}
.x111{left:484.748040px;}
.x3f{left:486.248040px;}
.x14{left:487.748040px;}
.x149{left:489.248040px;}
.xb6{left:490.748040px;}
.x9f{left:492.248040px;}
.x6f{left:493.748040px;}
.x104{left:495.248040px;}
.xef{left:496.748040px;}
.x30{left:498.248040px;}
.x23{left:499.748040px;}
.xda{left:501.248040px;}
.xf3{left:502.748040px;}
.x40{left:504.248040px;}
.x143{left:505.748040px;}
.x97{left:507.248040px;}
.x11e{left:508.748040px;}
.x58{left:510.248040px;}
.xd8{left:511.748040px;}
.xa8{left:513.248040px;}
.x31{left:514.748040px;}
.xa0{left:516.248040px;}
.x47{left:517.748040px;}
.x65{left:519.248040px;}
.x84{left:520.748040px;}
.x79{left:522.248040px;}
.xfb{left:523.748040px;}
.xec{left:525.248040px;}
.xf4{left:526.748040px;}
.x4f{left:528.248040px;}
.xb7{left:529.748040px;}
.x59{left:531.248040px;}
.xca{left:532.748040px;}
.xa1{left:534.248040px;}
.x48{left:535.748040px;}
.xb8{left:537.248040px;}
.xd1{left:538.748040px;}
.xfc{left:540.248040px;}
.x85{left:541.748040px;}
.x138{left:543.248040px;}
.x11f{left:544.748040px;}
.x112{left:546.248040px;}
.x15{left:547.748040px;}
.xb9{left:549.248040px;}
.x134{left:550.748040px;}
.x50{left:552.248040px;}
.x100{left:553.748040px;}
.x155{left:555.248040px;}
.xd9{left:556.748040px;}
.xcb{left:558.248040px;}
.x91{left:559.748040px;}
.xed{left:561.248040px;}
.x24{left:562.748040px;}
.x120{left:564.248040px;}
.x151{left:565.748040px;}
.x144{left:567.248040px;}
.x141{left:568.748040px;}
.xe8{left:570.248040px;}
.x11a{left:571.748040px;}
.x101{left:573.248040px;}
.xf0{left:574.748040px;}
.xf8{left:576.248040px;}
.x113{left:577.748040px;}
.x127{left:579.248040px;}
.xcc{left:580.748040px;}
.x156{left:582.248040px;}
.x145{left:583.748040px;}
.xfd{left:585.248040px;}
.x12c{left:586.748040px;}
.x108{left:588.248040px;}
.x152{left:589.748040px;}
.x105{left:591.248040px;}
.x117{left:592.748040px;}
.x10d{left:594.248040px;}
.x146{left:595.748040px;}
.x158{left:597.248040px;}
.x15b{left:598.748040px;}
.x159{left:600.248040px;}
.x15a{left:601.748040px;}
.x15e{left:603.248040px;}
.x15f{left:604.748040px;}
.xbf{left:613.717729px;}
.x140{left:623.056417px;}
.x14a{left:628.056427px;}
.x131{left:631.389772px;}
@media print{
.v1{vertical-align:-5.333333pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:5.333333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:3.306667pt;}
.ls1{letter-spacing:6.720000pt;}
.ls3{letter-spacing:13.333333pt;}
.ls5{letter-spacing:16.592593pt;}
.ls4{letter-spacing:29.333333pt;}
.ls6{letter-spacing:234.666667pt;}
.ws5d{word-spacing:-256.000000pt;}
.ws17{word-spacing:-37.333333pt;}
.wsd{word-spacing:-27.306667pt;}
.wsa{word-spacing:-24.000000pt;}
.ws2e{word-spacing:-21.333333pt;}
.ws50{word-spacing:-18.666667pt;}
.ws25{word-spacing:-13.866247pt;}
.ws5a{word-spacing:-12.637944pt;}
.ws3e{word-spacing:-12.168493pt;}
.ws26{word-spacing:-12.149882pt;}
.ws76{word-spacing:-11.783676pt;}
.ws23{word-spacing:-11.398858pt;}
.ws12{word-spacing:-11.311909pt;}
.ws3a{word-spacing:-11.021585pt;}
.ws16{word-spacing:-10.666667pt;}
.ws39{word-spacing:-9.938906pt;}
.ws49{word-spacing:-8.000000pt;}
.ws2a{word-spacing:-7.952641pt;}
.wsb{word-spacing:-7.491542pt;}
.wsc{word-spacing:-7.070205pt;}
.ws38{word-spacing:-6.880740pt;}
.ws55{word-spacing:-6.057158pt;}
.ws22{word-spacing:-5.932939pt;}
.ws1d{word-spacing:-5.789210pt;}
.ws4{word-spacing:-5.333333pt;}
.ws6f{word-spacing:-4.970414pt;}
.ws51{word-spacing:-4.914601pt;}
.ws45{word-spacing:-4.476190pt;}
.ws27{word-spacing:-4.193259pt;}
.ws78{word-spacing:-3.900227pt;}
.ws64{word-spacing:-2.962963pt;}
.ws62{word-spacing:-2.741552pt;}
.ws43{word-spacing:-2.666667pt;}
.ws5e{word-spacing:-2.658777pt;}
.ws6c{word-spacing:-2.562092pt;}
.ws4b{word-spacing:-2.225246pt;}
.ws20{word-spacing:-2.103120pt;}
.wse{word-spacing:-1.001972pt;}
.ws59{word-spacing:-0.967229pt;}
.ws77{word-spacing:-0.213333pt;}
.ws3{word-spacing:0.000000pt;}
.ws11{word-spacing:0.937264pt;}
.ws2d{word-spacing:1.054683pt;}
.ws3f{word-spacing:1.587101pt;}
.ws37{word-spacing:2.564142pt;}
.ws0{word-spacing:2.666667pt;}
.ws21{word-spacing:3.738265pt;}
.ws67{word-spacing:3.928994pt;}
.ws3c{word-spacing:4.059949pt;}
.ws60{word-spacing:4.819156pt;}
.wsf{word-spacing:5.333333pt;}
.ws61{word-spacing:7.951236pt;}
.ws1a{word-spacing:8.000000pt;}
.ws5{word-spacing:8.888889pt;}
.ws2{word-spacing:9.647276pt;}
.ws46{word-spacing:10.311748pt;}
.ws58{word-spacing:10.546296pt;}
.ws5f{word-spacing:10.644628pt;}
.ws2c{word-spacing:10.666667pt;}
.ws1b{word-spacing:11.120353pt;}
.ws24{word-spacing:11.398148pt;}
.ws54{word-spacing:12.421582pt;}
.ws34{word-spacing:13.333333pt;}
.ws5b{word-spacing:13.748255pt;}
.ws6{word-spacing:13.828255pt;}
.ws74{word-spacing:14.108957pt;}
.ws4d{word-spacing:14.734720pt;}
.ws35{word-spacing:15.449735pt;}
.ws4a{word-spacing:16.000000pt;}
.ws4f{word-spacing:17.185185pt;}
.ws44{word-spacing:17.421550pt;}
.ws3b{word-spacing:17.531680pt;}
.ws75{word-spacing:17.713803pt;}
.ws1f{word-spacing:17.741047pt;}
.ws71{word-spacing:17.861111pt;}
.ws40{word-spacing:18.349086pt;}
.ws42{word-spacing:18.666667pt;}
.ws63{word-spacing:18.826015pt;}
.ws10{word-spacing:19.400634pt;}
.ws65{word-spacing:19.656510pt;}
.ws15{word-spacing:19.975253pt;}
.ws36{word-spacing:21.035917pt;}
.ws30{word-spacing:21.333333pt;}
.ws2f{word-spacing:21.746999pt;}
.ws8{word-spacing:23.824565pt;}
.ws4c{word-spacing:24.418733pt;}
.ws6e{word-spacing:24.558709pt;}
.ws19{word-spacing:24.628099pt;}
.ws14{word-spacing:24.837466pt;}
.ws29{word-spacing:25.949189pt;}
.ws6a{word-spacing:27.601709pt;}
.ws52{word-spacing:28.736948pt;}
.ws56{word-spacing:30.951481pt;}
.ws13{word-spacing:31.305785pt;}
.ws2b{word-spacing:31.515152pt;}
.ws48{word-spacing:31.724518pt;}
.ws53{word-spacing:32.920672pt;}
.ws1e{word-spacing:33.185185pt;}
.ws72{word-spacing:34.666667pt;}
.ws41{word-spacing:35.944004pt;}
.ws32{word-spacing:37.333333pt;}
.ws3d{word-spacing:38.611570pt;}
.ws68{word-spacing:38.820937pt;}
.ws28{word-spacing:39.481481pt;}
.ws7c{word-spacing:40.296296pt;}
.ws69{word-spacing:41.305324pt;}
.ws79{word-spacing:44.939338pt;}
.ws33{word-spacing:45.707989pt;}
.ws9{word-spacing:45.917355pt;}
.ws6b{word-spacing:48.058286pt;}
.ws66{word-spacing:50.911340pt;}
.ws47{word-spacing:52.148148pt;}
.ws5c{word-spacing:59.906673pt;}
.ws70{word-spacing:60.499730pt;}
.ws7{word-spacing:61.666667pt;}
.ws73{word-spacing:65.878675pt;}
.ws6d{word-spacing:66.997245pt;}
.ws4e{word-spacing:68.902007pt;}
.ws1{word-spacing:74.874009pt;}
.ws1c{word-spacing:80.000000pt;}
.ws18{word-spacing:208.000000pt;}
.ws7a{word-spacing:213.333333pt;}
.ws31{word-spacing:293.333333pt;}
.ws7b{word-spacing:298.666667pt;}
.ws57{word-spacing:1237.333333pt;}
._12{margin-left:-234.666667pt;}
._18{margin-left:-52.242798pt;}
._5{margin-left:-13.333333pt;}
._10{margin-left:-8.918749pt;}
._6{margin-left:-6.296156pt;}
._13{margin-left:-5.090491pt;}
._2{margin-left:-4.053333pt;}
._c{margin-left:-2.666667pt;}
._f{margin-left:-1.539269pt;}
._a{width:2.165726pt;}
._4{width:3.306667pt;}
._1{width:4.622558pt;}
._11{width:5.690879pt;}
._9{width:7.051922pt;}
._3{width:8.000000pt;}
._15{width:9.185185pt;}
._0{width:13.333333pt;}
._8{width:16.929795pt;}
._14{width:18.666667pt;}
._e{width:21.258448pt;}
._19{width:24.000000pt;}
._1a{width:26.666667pt;}
._17{width:29.333333pt;}
._7{width:32.000000pt;}
._d{width:34.666667pt;}
._16{width:37.333333pt;}
._b{width:68.939338pt;}
.fsd{font-size:32.000000pt;}
.fs1{font-size:37.333333pt;}
.fs8{font-size:42.666257pt;}
.fsb{font-size:42.666283pt;}
.fs5{font-size:42.666513pt;}
.fs4{font-size:42.666667pt;}
.fs3{font-size:48.000000pt;}
.fs9{font-size:53.332821pt;}
.fsc{font-size:53.332853pt;}
.fs6{font-size:53.333141pt;}
.fs2{font-size:53.333333pt;}
.fsa{font-size:53.333366pt;}
.fs7{font-size:53.379325pt;}
.fs0{font-size:69.333333pt;}
.y0{bottom:0.000000pt;}
.y30{bottom:3.227314pt;}
.y68{bottom:3.233869pt;}
.y66{bottom:3.551299pt;}
.y9c{bottom:3.551301pt;}
.y2e{bottom:3.551321pt;}
.y6a{bottom:3.551333pt;}
.y65{bottom:4.529957pt;}
.y9b{bottom:4.529959pt;}
.y2d{bottom:4.529984pt;}
.yd7{bottom:4.530000pt;}
.y1fc{bottom:93.553813pt;}
.y166{bottom:97.553813pt;}
.y2b{bottom:98.887147pt;}
.y1ad{bottom:106.887147pt;}
.y1ae{bottom:108.220480pt;}
.y1af{bottom:109.553813pt;}
.y1b0{bottom:110.887147pt;}
.y19f{bottom:112.220480pt;}
.ybf{bottom:116.220480pt;}
.yea{bottom:117.553813pt;}
.y2a{bottom:118.887147pt;}
.y123{bottom:120.220480pt;}
.y10b{bottom:121.553813pt;}
.y63{bottom:122.887147pt;}
.y1ac{bottom:124.220480pt;}
.y1e3{bottom:125.553813pt;}
.y1e4{bottom:126.887147pt;}
.y18c{bottom:128.220480pt;}
.y19e{bottom:129.553813pt;}
.ybd{bottom:130.887147pt;}
.ybe{bottom:132.220480pt;}
.y29{bottom:133.553813pt;}
.y109{bottom:134.887147pt;}
.y10a{bottom:136.220480pt;}
.y62{bottom:137.553813pt;}
.y1ab{bottom:138.887147pt;}
.y177{bottom:140.220480pt;}
.y178{bottom:141.553813pt;}
.y1d8{bottom:144.220480pt;}
.ybc{bottom:145.553813pt;}
.y28{bottom:146.887147pt;}
.y27{bottom:148.220480pt;}
.y122{bottom:149.553813pt;}
.y60{bottom:150.887147pt;}
.y61{bottom:152.220480pt;}
.y1aa{bottom:153.553813pt;}
.y1e2{bottom:154.887147pt;}
.y1fa{bottom:156.220480pt;}
.y176{bottom:157.553813pt;}
.yb9{bottom:158.887147pt;}
.yba{bottom:160.220480pt;}
.ybb{bottom:161.553813pt;}
.yd5{bottom:162.887147pt;}
.y121{bottom:164.220480pt;}
.y160{bottom:165.553813pt;}
.y99{bottom:166.887147pt;}
.y98{bottom:168.220480pt;}
.y18f{bottom:169.553813pt;}
.yb7{bottom:173.553813pt;}
.yb8{bottom:174.887147pt;}
.yd4{bottom:176.220480pt;}
.y26{bottom:177.553813pt;}
.y14a{bottom:178.887147pt;}
.y15f{bottom:180.220480pt;}
.y5f{bottom:181.553813pt;}
.y5e{bottom:182.887147pt;}
.y97{bottom:184.220480pt;}
.y96{bottom:185.553813pt;}
.y13d{bottom:186.887147pt;}
.yb5{bottom:188.220480pt;}
.yb6{bottom:189.553813pt;}
.ye9{bottom:190.887147pt;}
.y120{bottom:192.220480pt;}
.y149{bottom:193.553813pt;}
.y25{bottom:194.887147pt;}
.y24{bottom:196.220480pt;}
.y18b{bottom:197.553813pt;}
.y5c{bottom:198.887147pt;}
.y5d{bottom:200.220480pt;}
.y95{bottom:201.553813pt;}
.y94{bottom:202.887147pt;}
.yb4{bottom:204.220480pt;}
.ye8{bottom:205.553813pt;}
.y11f{bottom:206.887147pt;}
.y148{bottom:208.220480pt;}
.y174{bottom:209.553813pt;}
.y175{bottom:210.887147pt;}
.y23{bottom:212.220480pt;}
.y22{bottom:213.553813pt;}
.yd3{bottom:214.887147pt;}
.y5a{bottom:216.220480pt;}
.y5b{bottom:217.553813pt;}
.yb3{bottom:218.887147pt;}
.ye7{bottom:220.220480pt;}
.y11e{bottom:221.553813pt;}
.y147{bottom:222.887147pt;}
.y1a8{bottom:224.220480pt;}
.y1a9{bottom:225.553813pt;}
.y172{bottom:226.887147pt;}
.y173{bottom:228.220480pt;}
.y21{bottom:229.553813pt;}
.y20{bottom:230.887147pt;}
.y93{bottom:232.220480pt;}
.y59{bottom:233.553813pt;}
.y58{bottom:234.887147pt;}
.y107{bottom:236.220480pt;}
.y108{bottom:237.553813pt;}
.y13c{bottom:238.887147pt;}
.y1e0{bottom:241.553813pt;}
.y1e1{bottom:242.887147pt;}
.y1f9{bottom:244.220480pt;}
.yb2{bottom:245.553813pt;}
.y1f{bottom:246.887147pt;}
.y1e{bottom:248.220480pt;}
.y92{bottom:249.553813pt;}
.y57{bottom:250.887147pt;}
.y56{bottom:252.220480pt;}
.y105{bottom:253.553813pt;}
.y106{bottom:254.887147pt;}
.y129{bottom:256.220480pt;}
.y1de{bottom:258.887147pt;}
.y1df{bottom:260.220480pt;}
.y1f8{bottom:261.553813pt;}
.yb1{bottom:262.887147pt;}
.y1d{bottom:264.220480pt;}
.y1c{bottom:265.553813pt;}
.y91{bottom:266.887147pt;}
.y55{bottom:268.220480pt;}
.y54{bottom:269.553813pt;}
.y103{bottom:270.887147pt;}
.y104{bottom:272.220480pt;}
.y128{bottom:273.553813pt;}
.y13b{bottom:274.887147pt;}
.y11d{bottom:276.220480pt;}
.y11c{bottom:277.553813pt;}
.y11b{bottom:278.887147pt;}
.yb0{bottom:280.220480pt;}
.ye6{bottom:281.553813pt;}
.y90{bottom:282.887147pt;}
.y8f{bottom:284.220480pt;}
.y53{bottom:285.553813pt;}
.y52{bottom:286.887147pt;}
.y150{bottom:288.220480pt;}
.y102{bottom:289.553813pt;}
.y127{bottom:290.887147pt;}
.y13a{bottom:292.220480pt;}
.y159{bottom:293.553813pt;}
.y15a{bottom:294.887147pt;}
.y1f7{bottom:296.220480pt;}
.y1b{bottom:297.553813pt;}
.ye5{bottom:298.887147pt;}
.y8e{bottom:300.220480pt;}
.y8d{bottom:301.553813pt;}
.y51{bottom:302.887147pt;}
.y50{bottom:304.220480pt;}
.yd2{bottom:305.553813pt;}
.y101{bottom:306.887147pt;}
.y139{bottom:308.220480pt;}
.y138{bottom:309.553813pt;}
.y157{bottom:310.887147pt;}
.y158{bottom:312.220480pt;}
.y1c1{bottom:313.553813pt;}
.yae{bottom:314.887147pt;}
.yaf{bottom:316.220480pt;}
.y8c{bottom:317.553813pt;}
.y8b{bottom:318.887147pt;}
.y4f{bottom:320.220480pt;}
.y4e{bottom:321.553813pt;}
.yd1{bottom:322.887147pt;}
.yff{bottom:324.220480pt;}
.y100{bottom:325.553813pt;}
.y137{bottom:326.887147pt;}
.y15e{bottom:328.220480pt;}
.y156{bottom:329.553813pt;}
.yad{bottom:332.220480pt;}
.y1d9{bottom:333.553813pt;}
.y8a{bottom:334.887147pt;}
.y89{bottom:336.220480pt;}
.y1a{bottom:337.553813pt;}
.y4d{bottom:338.887147pt;}
.yd0{bottom:340.220480pt;}
.yfd{bottom:341.553813pt;}
.yfe{bottom:342.887147pt;}
.y126{bottom:344.220480pt;}
.y15d{bottom:345.553813pt;}
.y155{bottom:346.887147pt;}
.y1e9{bottom:348.220480pt;}
.yac{bottom:349.553813pt;}
.y1f6{bottom:350.887147pt;}
.y88{bottom:352.220480pt;}
.y19{bottom:353.553813pt;}
.y18{bottom:354.887147pt;}
.y4c{bottom:356.220480pt;}
.ycf{bottom:357.553813pt;}
.y14f{bottom:358.887147pt;}
.yfc{bottom:360.220480pt;}
.y11a{bottom:361.553813pt;}
.y15c{bottom:362.887147pt;}
.y154{bottom:364.220480pt;}
.y1c0{bottom:365.553813pt;}
.yab{bottom:366.887147pt;}
.y1f5{bottom:368.220480pt;}
.y87{bottom:369.553813pt;}
.y86{bottom:370.887147pt;}
.y17{bottom:372.220480pt;}
.y4b{bottom:373.553813pt;}
.yce{bottom:374.887147pt;}
.y161{bottom:376.220480pt;}
.yfb{bottom:377.553813pt;}
.y136{bottom:378.887147pt;}
.y15b{bottom:380.220480pt;}
.y153{bottom:381.553813pt;}
.y1bf{bottom:382.887147pt;}
.yaa{bottom:384.220480pt;}
.y1f4{bottom:385.553813pt;}
.y1a7{bottom:386.887147pt;}
.y16{bottom:388.220480pt;}
.y15{bottom:389.553813pt;}
.y4a{bottom:390.887147pt;}
.ycd{bottom:392.220480pt;}
.y1fb{bottom:393.553813pt;}
.yfa{bottom:394.887147pt;}
.y119{bottom:396.220480pt;}
.y85{bottom:397.553813pt;}
.y84{bottom:398.887147pt;}
.ya9{bottom:401.553813pt;}
.y1a5{bottom:402.887147pt;}
.y1a6{bottom:404.220480pt;}
.y1d7{bottom:405.553813pt;}
.y14{bottom:406.887147pt;}
.y49{bottom:408.220480pt;}
.ycc{bottom:409.553813pt;}
.y118{bottom:410.887147pt;}
.yf9{bottom:412.220480pt;}
.y117{bottom:413.553813pt;}
.y165{bottom:414.887147pt;}
.y164{bottom:416.220480pt;}
.y1a4{bottom:420.220480pt;}
.ya8{bottom:421.553813pt;}
.y1d6{bottom:422.887147pt;}
.y13{bottom:424.220480pt;}
.y48{bottom:425.553813pt;}
.ycb{bottom:426.887147pt;}
.y116{bottom:428.220480pt;}
.yf8{bottom:429.553813pt;}
.y115{bottom:430.887147pt;}
.y163{bottom:432.220480pt;}
.y83{bottom:433.553813pt;}
.y1dd{bottom:437.553813pt;}
.ya7{bottom:438.887147pt;}
.y1d5{bottom:440.220480pt;}
.y12{bottom:441.553813pt;}
.y47{bottom:442.887147pt;}
.yca{bottom:444.220480pt;}
.y114{bottom:445.553813pt;}
.yf7{bottom:446.887147pt;}
.y113{bottom:448.220480pt;}
.y162{bottom:449.553813pt;}
.y82{bottom:450.887147pt;}
.y1f3{bottom:454.887147pt;}
.ya6{bottom:456.220480pt;}
.y11{bottom:457.553813pt;}
.y10{bottom:458.887147pt;}
.y46{bottom:460.220480pt;}
.yc9{bottom:461.553813pt;}
.ye4{bottom:462.887147pt;}
.yf6{bottom:464.220480pt;}
.y112{bottom:465.553813pt;}
.y81{bottom:468.220480pt;}
.y1f2{bottom:472.220480pt;}
.y18a{bottom:473.553813pt;}
.y1d4{bottom:474.887147pt;}
.yf{bottom:476.220480pt;}
.y45{bottom:477.553813pt;}
.yc8{bottom:478.887147pt;}
.yc7{bottom:480.220480pt;}
.ye3{bottom:481.553813pt;}
.y111{bottom:482.887147pt;}
.y19d{bottom:484.220480pt;}
.y80{bottom:485.553813pt;}
.y1a3{bottom:486.887147pt;}
.y171{bottom:488.220480pt;}
.y1f1{bottom:489.553813pt;}
.y189{bottom:490.887147pt;}
.y1d3{bottom:492.220480pt;}
.ye{bottom:493.553813pt;}
.y44{bottom:494.887147pt;}
.yc6{bottom:496.220480pt;}
.yc5{bottom:497.553813pt;}
.ye2{bottom:498.887147pt;}
.y110{bottom:500.220480pt;}
.y135{bottom:501.553813pt;}
.y7f{bottom:502.887147pt;}
.y1a1{bottom:504.220480pt;}
.y1a2{bottom:505.553813pt;}
.y1f0{bottom:506.887147pt;}
.y152{bottom:508.220480pt;}
.y1d2{bottom:509.553813pt;}
.yd{bottom:510.887147pt;}
.y43{bottom:512.220480pt;}
.yc4{bottom:513.553813pt;}
.yc3{bottom:514.887147pt;}
.ye1{bottom:516.220480pt;}
.y10f{bottom:517.553813pt;}
.y134{bottom:518.887147pt;}
.y1dc{bottom:520.220480pt;}
.y170{bottom:522.887147pt;}
.y1ef{bottom:524.220480pt;}
.y188{bottom:525.553813pt;}
.y1d1{bottom:526.887147pt;}
.y41{bottom:528.220480pt;}
.y42{bottom:529.553813pt;}
.y7d{bottom:530.887147pt;}
.y7e{bottom:532.220480pt;}
.ydf{bottom:533.553813pt;}
.ye0{bottom:534.887147pt;}
.y146{bottom:536.220480pt;}
.y19c{bottom:537.553813pt;}
.y1db{bottom:538.887147pt;}
.y16f{bottom:540.220480pt;}
.y1e8{bottom:541.553813pt;}
.y1d0{bottom:542.887147pt;}
.y1cf{bottom:544.220480pt;}
.yc{bottom:545.553813pt;}
.y1be{bottom:546.887147pt;}
.y7b{bottom:548.220480pt;}
.y7c{bottom:549.553813pt;}
.ydd{bottom:550.887147pt;}
.yde{bottom:552.220480pt;}
.y145{bottom:553.553813pt;}
.y40{bottom:554.887147pt;}
.y16e{bottom:557.553813pt;}
.y1e7{bottom:558.887147pt;}
.y1ce{bottom:561.553813pt;}
.y131{bottom:562.887147pt;}
.y1bd{bottom:564.220480pt;}
.y7a{bottom:565.553813pt;}
.yc2{bottom:566.887147pt;}
.yf5{bottom:568.220480pt;}
.y10e{bottom:569.553813pt;}
.y144{bottom:570.887147pt;}
.y3f{bottom:572.220480pt;}
.y16d{bottom:573.553813pt;}
.y16c{bottom:574.887147pt;}
.y1e6{bottom:576.220480pt;}
.y130{bottom:577.553813pt;}
.yb{bottom:578.887147pt;}
.y1cd{bottom:580.220480pt;}
.y1bc{bottom:581.553813pt;}
.y79{bottom:582.887147pt;}
.yc1{bottom:584.220480pt;}
.ydc{bottom:585.553813pt;}
.y10d{bottom:586.887147pt;}
.y143{bottom:588.220480pt;}
.y3e{bottom:589.553813pt;}
.y1da{bottom:590.887147pt;}
.ya{bottom:592.220480pt;}
.y9{bottom:593.553813pt;}
.y1cc{bottom:596.220480pt;}
.y1cb{bottom:597.553813pt;}
.y1bb{bottom:598.887147pt;}
.y77{bottom:600.220480pt;}
.y78{bottom:601.553813pt;}
.yf4{bottom:602.887147pt;}
.y10c{bottom:604.220480pt;}
.y16b{bottom:605.553813pt;}
.y8{bottom:606.887147pt;}
.y7{bottom:608.220480pt;}
.y186{bottom:609.553813pt;}
.y187{bottom:610.887147pt;}
.y19b{bottom:612.220480pt;}
.y1ca{bottom:613.553813pt;}
.y1c9{bottom:614.887147pt;}
.y1ba{bottom:616.220480pt;}
.y75{bottom:617.553813pt;}
.y76{bottom:618.887147pt;}
.y6{bottom:620.220480pt;}
.y5{bottom:621.553813pt;}
.y4{bottom:622.887147pt;}
.y3d{bottom:624.220480pt;}
.y199{bottom:626.887147pt;}
.y19a{bottom:628.220480pt;}
.y1c8{bottom:630.887147pt;}
.y1c7{bottom:632.220480pt;}
.y1b9{bottom:633.553813pt;}
.y74{bottom:634.887147pt;}
.y73{bottom:636.220480pt;}
.ydb{bottom:637.553813pt;}
.yf3{bottom:638.887147pt;}
.y141{bottom:640.220480pt;}
.y1ee{bottom:641.553813pt;}
.y185{bottom:642.887147pt;}
.y198{bottom:644.220480pt;}
.y142{bottom:645.553813pt;}
.y3c{bottom:646.887147pt;}
.y1c6{bottom:648.220480pt;}
.y12f{bottom:649.553813pt;}
.y133{bottom:650.887147pt;}
.ya5{bottom:652.220480pt;}
.y72{bottom:653.553813pt;}
.yda{bottom:654.887147pt;}
.yf2{bottom:656.220480pt;}
.y140{bottom:657.553813pt;}
.y3{bottom:658.887147pt;}
.y183{bottom:660.220480pt;}
.y184{bottom:661.553813pt;}
.y197{bottom:662.887147pt;}
.y12e{bottom:664.220480pt;}
.y3b{bottom:665.553813pt;}
.y1c5{bottom:666.887147pt;}
.y1c4{bottom:668.220480pt;}
.ya4{bottom:669.553813pt;}
.y71{bottom:670.887147pt;}
.yd9{bottom:672.220480pt;}
.yf1{bottom:673.553813pt;}
.y13f{bottom:674.887147pt;}
.y16a{bottom:676.220480pt;}
.y1ed{bottom:677.553813pt;}
.y12d{bottom:678.887147pt;}
.y196{bottom:680.220480pt;}
.y2{bottom:681.553813pt;}
.y1{bottom:682.887147pt;}
.y1b7{bottom:684.220480pt;}
.y1b8{bottom:685.553813pt;}
.y14e{bottom:686.887147pt;}
.y70{bottom:688.220480pt;}
.yc0{bottom:689.553813pt;}
.yf0{bottom:690.887147pt;}
.y13e{bottom:692.220480pt;}
.y12c{bottom:693.553813pt;}
.y182{bottom:696.220480pt;}
.y194{bottom:697.553813pt;}
.y195{bottom:698.887147pt;}
.y1e5{bottom:700.220480pt;}
.y1c3{bottom:701.553813pt;}
.y1b6{bottom:702.887147pt;}
.y14d{bottom:704.220480pt;}
.y6f{bottom:705.553813pt;}
.ya3{bottom:706.887147pt;}
.y3a{bottom:708.220480pt;}
.yef{bottom:709.553813pt;}
.y169{bottom:710.887147pt;}
.y168{bottom:712.220480pt;}
.y181{bottom:713.553813pt;}
.y192{bottom:714.887147pt;}
.y193{bottom:716.220480pt;}
.y1b4{bottom:718.887147pt;}
.y1b5{bottom:720.220480pt;}
.y12b{bottom:721.553813pt;}
.y6e{bottom:722.887147pt;}
.ya2{bottom:724.220480pt;}
.y39{bottom:725.553813pt;}
.y38{bottom:726.887147pt;}
.yee{bottom:728.220480pt;}
.y17f{bottom:730.887147pt;}
.y180{bottom:732.220480pt;}
.y1ec{bottom:734.887147pt;}
.y12a{bottom:736.220480pt;}
.y132{bottom:737.553813pt;}
.y6d{bottom:740.220480pt;}
.ya1{bottom:741.553813pt;}
.y37{bottom:742.887147pt;}
.y36{bottom:744.220480pt;}
.yed{bottom:745.553813pt;}
.y17d{bottom:748.220480pt;}
.y17e{bottom:749.553813pt;}
.y191{bottom:750.887147pt;}
.y1eb{bottom:752.220480pt;}
.y1b2{bottom:753.553813pt;}
.y1b3{bottom:754.887147pt;}
.y6c{bottom:757.553813pt;}
.ya0{bottom:758.887147pt;}
.y35{bottom:760.220480pt;}
.y33{bottom:761.553813pt;}
.y34{bottom:762.887147pt;}
.y17b{bottom:765.553813pt;}
.y17c{bottom:766.887147pt;}
.y1a0{bottom:778.887147pt;}
.y190{bottom:780.220480pt;}
.y1ea{bottom:781.553813pt;}
.y1c2{bottom:784.220480pt;}
.y1b1{bottom:785.553813pt;}
.y151{bottom:786.887147pt;}
.y6b{bottom:788.220480pt;}
.y9f{bottom:789.553813pt;}
.y32{bottom:790.887147pt;}
.y31{bottom:792.220480pt;}
.y167{bottom:793.553813pt;}
.y179{bottom:794.887147pt;}
.y17a{bottom:796.220480pt;}
.y124{bottom:870.218533pt;}
.y125{bottom:870.853455pt;}
.yeb{bottom:871.551867pt;}
.yec{bottom:872.186788pt;}
.y2c{bottom:872.885190pt;}
.yd6{bottom:872.885200pt;}
.yd8{bottom:873.520122pt;}
.y2f{bottom:873.522420pt;}
.y14b{bottom:874.218533pt;}
.y14c{bottom:874.853455pt;}
.y69{bottom:875.551867pt;}
.y64{bottom:875.551961pt;}
.y67{bottom:876.186788pt;}
.y9e{bottom:876.885200pt;}
.y9a{bottom:876.885376pt;}
.y9d{bottom:877.520122pt;}
.y18d{bottom:878.218533pt;}
.y18e{bottom:878.853455pt;}
.ha{height:16.249601pt;}
.h12{height:16.254277pt;}
.hf{height:16.889038pt;}
.h18{height:16.889048pt;}
.h7{height:16.889139pt;}
.h14{height:16.889200pt;}
.h1b{height:32.890957pt;}
.h3{height:38.372784pt;}
.h24{height:43.706117pt;}
.h6{height:43.854610pt;}
.h10{height:44.499573pt;}
.h19{height:44.499600pt;}
.h8{height:44.499840pt;}
.h1c{height:44.500000pt;}
.h23{height:49.187943pt;}
.h5{height:49.336436pt;}
.he{height:54.669770pt;}
.h4{height:54.818262pt;}
.h11{height:55.624466pt;}
.h1a{height:55.624499pt;}
.h9{height:55.624800pt;}
.h15{height:55.625000pt;}
.h13{height:55.625034pt;}
.hb{height:55.672968pt;}
.h2{height:71.263741pt;}
.h1f{height:889.774293pt;}
.h20{height:890.000000pt;}
.h1d{height:891.107627pt;}
.h1e{height:891.333333pt;}
.h0{height:892.440960pt;}
.h1{height:892.666667pt;}
.h21{height:893.774293pt;}
.h22{height:894.000000pt;}
.hc{height:895.107627pt;}
.hd{height:895.333333pt;}
.h16{height:896.440960pt;}
.h17{height:896.666667pt;}
.h25{height:897.774293pt;}
.h26{height:898.000000pt;}
.w14{width:64.508800pt;}
.w3{width:64.515913pt;}
.w9{width:65.681081pt;}
.w4{width:67.012481pt;}
.wa{width:67.048533pt;}
.w8{width:162.081343pt;}
.w10{width:162.101430pt;}
.w13{width:162.287733pt;}
.w2{width:162.299058pt;}
.w5{width:162.913819pt;}
.wb{width:162.922654pt;}
.w0{width:612.440960pt;}
.w1{width:612.666667pt;}
.w11{width:613.774293pt;}
.w12{width:614.000000pt;}
.w17{width:615.107627pt;}
.w18{width:615.333333pt;}
.w19{width:616.440960pt;}
.w1a{width:616.666667pt;}
.w1b{width:617.774293pt;}
.w1c{width:618.000000pt;}
.w15{width:619.107627pt;}
.w16{width:619.333333pt;}
.wc{width:621.774293pt;}
.wd{width:622.000000pt;}
.w1d{width:623.107627pt;}
.w1e{width:623.333333pt;}
.we{width:627.107627pt;}
.wf{width:627.333333pt;}
.w1f{width:628.440960pt;}
.w20{width:628.666667pt;}
.w6{width:629.774293pt;}
.w7{width:630.000000pt;}
.x0{left:0.000000pt;}
.xc1{left:2.684666pt;}
.xbe{left:4.869674pt;}
.xc0{left:12.284998pt;}
.xc3{left:16.523047pt;}
.x51{left:81.553813pt;}
.x8d{left:82.887147pt;}
.x1{left:84.220480pt;}
.x150{left:85.553813pt;}
.x49{left:86.887147pt;}
.x14d{left:88.220480pt;}
.x13b{left:89.553813pt;}
.x13e{left:90.887147pt;}
.xbd{left:92.220480pt;}
.x15d{left:93.553813pt;}
.x15c{left:94.887147pt;}
.x157{left:96.220480pt;}
.x14e{left:97.553813pt;}
.x153{left:98.887147pt;}
.xa2{left:100.220480pt;}
.xaf{left:101.553813pt;}
.x32{left:102.887147pt;}
.x16{left:104.220480pt;}
.x36{left:105.553813pt;}
.x154{left:106.887147pt;}
.x66{left:108.220480pt;}
.xa3{left:109.553813pt;}
.x41{left:110.887147pt;}
.x25{left:112.220480pt;}
.x7a{left:113.553813pt;}
.x133{left:114.887147pt;}
.xc2{left:116.323290pt;}
.x13c{left:117.553813pt;}
.x124{left:118.887147pt;}
.x109{left:120.220480pt;}
.xf5{left:121.553813pt;}
.xb0{left:122.887147pt;}
.xc5{left:124.220480pt;}
.x37{left:125.553813pt;}
.x26{left:126.887147pt;}
.x86{left:128.220480pt;}
.x69{left:129.553813pt;}
.x9{left:130.887147pt;}
.xba{left:132.220480pt;}
.xc6{left:133.553813pt;}
.x52{left:134.887147pt;}
.x136{left:136.220480pt;}
.xd2{left:137.553813pt;}
.x7b{left:138.887147pt;}
.xb1{left:140.220480pt;}
.x38{left:141.553813pt;}
.x6a{left:142.887147pt;}
.x27{left:144.220480pt;}
.x70{left:145.553813pt;}
.xdb{left:146.887147pt;}
.xa{left:148.220480pt;}
.x135{left:149.553813pt;}
.x2{left:150.887147pt;}
.x17{left:152.220480pt;}
.xb{left:153.553813pt;}
.x4a{left:154.887147pt;}
.x87{left:156.220480pt;}
.x13d{left:157.553813pt;}
.x130{left:158.887147pt;}
.x7c{left:160.220480pt;}
.x10a{left:161.553813pt;}
.x71{left:162.887147pt;}
.x6{left:164.220480pt;}
.x5a{left:165.553813pt;}
.xd3{left:166.887147pt;}
.xc{left:168.220480pt;}
.x106{left:169.553813pt;}
.x7d{left:170.887147pt;}
.xe0{left:172.220480pt;}
.x98{left:173.553813pt;}
.xd4{left:174.887147pt;}
.x4b{left:176.220480pt;}
.xf1{left:177.553813pt;}
.x72{left:178.887147pt;}
.x18{left:180.220480pt;}
.x5b{left:181.553813pt;}
.x93{left:182.887147pt;}
.xe1{left:184.220480pt;}
.x7e{left:185.553813pt;}
.x11b{left:186.887147pt;}
.xf2{left:188.220480pt;}
.x8e{left:189.553813pt;}
.x10e{left:190.887147pt;}
.x7f{left:192.220480pt;}
.xdc{left:193.553813pt;}
.x19{left:194.887147pt;}
.xa4{left:196.220480pt;}
.xcf{left:197.553813pt;}
.x3{left:198.887147pt;}
.x28{left:200.220480pt;}
.x80{left:201.553813pt;}
.xbc{left:202.887147pt;}
.x5c{left:204.220480pt;}
.xd5{left:205.553813pt;}
.x125{left:206.887147pt;}
.x81{left:208.220480pt;}
.x42{left:209.553813pt;}
.x92{left:210.887147pt;}
.x13a{left:212.220480pt;}
.x6b{left:213.553813pt;}
.xf9{left:214.887147pt;}
.x73{left:216.220480pt;}
.xe9{left:217.553813pt;}
.x82{left:218.887147pt;}
.x29{left:220.220480pt;}
.xe2{left:221.553813pt;}
.x39{left:222.887147pt;}
.x74{left:224.220480pt;}
.x53{left:225.553813pt;}
.x33{left:226.887147pt;}
.xbb{left:228.220480pt;}
.x2a{left:229.553813pt;}
.x6c{left:230.887147pt;}
.x34{left:232.220480pt;}
.xe3{left:233.553813pt;}
.xf6{left:234.887147pt;}
.xd{left:236.220480pt;}
.x128{left:237.553813pt;}
.xa9{left:238.887147pt;}
.x1a{left:240.220480pt;}
.xa5{left:241.553813pt;}
.x54{left:242.887147pt;}
.x10f{left:244.220480pt;}
.x3a{left:245.553813pt;}
.x7{left:246.887147pt;}
.xcd{left:248.220480pt;}
.x35{left:249.553813pt;}
.x88{left:250.887147pt;}
.x99{left:252.220480pt;}
.x1b{left:253.553813pt;}
.x2b{left:254.887147pt;}
.x12d{left:256.220480pt;}
.x147{left:257.553813pt;}
.xaa{left:258.887147pt;}
.xe{left:260.220480pt;}
.x43{left:261.553813pt;}
.x8f{left:262.887147pt;}
.x10b{left:264.220480pt;}
.x5d{left:265.553813pt;}
.x118{left:266.887147pt;}
.x132{left:268.220480pt;}
.x1c{left:269.553813pt;}
.xc7{left:270.887147pt;}
.x9a{left:272.220480pt;}
.x2c{left:273.553813pt;}
.xf{left:274.887147pt;}
.x8{left:276.220480pt;}
.x55{left:277.553813pt;}
.x9b{left:278.887147pt;}
.x102{left:280.220480pt;}
.xea{left:281.553813pt;}
.x12f{left:282.887147pt;}
.xab{left:284.220480pt;}
.x89{left:285.553813pt;}
.xe4{left:286.887147pt;}
.x44{left:288.220480pt;}
.xb2{left:289.553813pt;}
.x14b{left:290.887147pt;}
.x121{left:292.220480pt;}
.xfe{left:293.553813pt;}
.x2d{left:294.887147pt;}
.xce{left:296.220480pt;}
.x3b{left:297.553813pt;}
.xdd{left:298.887147pt;}
.x5e{left:300.220480pt;}
.x11d{left:301.553813pt;}
.xd6{left:302.887147pt;}
.x115{left:304.220480pt;}
.x9c{left:305.553813pt;}
.x14f{left:306.887147pt;}
.xa6{left:308.220480pt;}
.x1d{left:309.553813pt;}
.x148{left:310.887147pt;}
.x67{left:312.220480pt;}
.x8a{left:313.553813pt;}
.x9d{left:314.887147pt;}
.x5f{left:316.220480pt;}
.x4{left:317.553813pt;}
.x129{left:318.887147pt;}
.x116{left:320.220480pt;}
.x4c{left:321.553813pt;}
.x75{left:322.887147pt;}
.x3c{left:324.220480pt;}
.x10{left:325.553813pt;}
.xa7{left:326.887147pt;}
.x68{left:328.220480pt;}
.x56{left:329.553813pt;}
.x9e{left:330.887147pt;}
.x94{left:332.220480pt;}
.xc4{left:333.553813pt;}
.xe5{left:334.887147pt;}
.x13f{left:335.997622pt;}
.x122{left:337.553813pt;}
.x60{left:338.887147pt;}
.x1e{left:340.220480pt;}
.xf7{left:341.553813pt;}
.x3d{left:342.887147pt;}
.xc8{left:344.220480pt;}
.x12e{left:345.553813pt;}
.x12a{left:346.887147pt;}
.x110{left:348.220480pt;}
.xb3{left:349.553813pt;}
.x45{left:350.887147pt;}
.x90{left:352.220480pt;}
.x142{left:353.553813pt;}
.x123{left:354.887147pt;}
.x119{left:356.220480pt;}
.x1f{left:357.553813pt;}
.xeb{left:358.887147pt;}
.xde{left:360.220480pt;}
.x4d{left:361.553813pt;}
.xd0{left:362.887147pt;}
.xad{left:364.220480pt;}
.x126{left:365.553813pt;}
.x61{left:366.887147pt;}
.x20{left:368.220480pt;}
.x76{left:369.553813pt;}
.x8b{left:370.887147pt;}
.x11c{left:372.220480pt;}
.x2e{left:373.553813pt;}
.x62{left:374.887147pt;}
.x10c{left:376.220480pt;}
.x21{left:377.553813pt;}
.x14c{left:378.887147pt;}
.x83{left:380.220480pt;}
.xe7{left:381.553813pt;}
.xc9{left:382.887147pt;}
.xdf{left:384.220480pt;}
.x11{left:385.553813pt;}
.xb4{left:386.887147pt;}
.x95{left:388.220480pt;}
.x103{left:389.553813pt;}
.x12{left:390.887147pt;}
.x22{left:392.220480pt;}
.x107{left:393.553813pt;}
.x5{left:394.887147pt;}
.xff{left:396.220480pt;}
.x139{left:397.553813pt;}
.x57{left:398.887147pt;}
.x63{left:400.220480pt;}
.x137{left:401.553813pt;}
.x8c{left:402.887147pt;}
.x114{left:404.220480pt;}
.x77{left:405.553813pt;}
.x3e{left:406.887147pt;}
.xfa{left:408.220480pt;}
.x6d{left:409.553813pt;}
.xb5{left:410.887147pt;}
.xee{left:412.220480pt;}
.xae{left:413.553813pt;}
.x12b{left:414.887147pt;}
.x4e{left:416.220480pt;}
.x46{left:417.553813pt;}
.x13{left:418.887147pt;}
.x2f{left:420.220480pt;}
.x6e{left:421.553813pt;}
.xd7{left:422.887147pt;}
.xe6{left:424.220480pt;}
.x96{left:425.553813pt;}
.x78{left:426.887147pt;}
.xac{left:428.220480pt;}
.x64{left:429.553813pt;}
.x111{left:430.887147pt;}
.x3f{left:432.220480pt;}
.x14{left:433.553813pt;}
.x149{left:434.887147pt;}
.xb6{left:436.220480pt;}
.x9f{left:437.553813pt;}
.x6f{left:438.887147pt;}
.x104{left:440.220480pt;}
.xef{left:441.553813pt;}
.x30{left:442.887147pt;}
.x23{left:444.220480pt;}
.xda{left:445.553813pt;}
.xf3{left:446.887147pt;}
.x40{left:448.220480pt;}
.x143{left:449.553813pt;}
.x97{left:450.887147pt;}
.x11e{left:452.220480pt;}
.x58{left:453.553813pt;}
.xd8{left:454.887147pt;}
.xa8{left:456.220480pt;}
.x31{left:457.553813pt;}
.xa0{left:458.887147pt;}
.x47{left:460.220480pt;}
.x65{left:461.553813pt;}
.x84{left:462.887147pt;}
.x79{left:464.220480pt;}
.xfb{left:465.553813pt;}
.xec{left:466.887147pt;}
.xf4{left:468.220480pt;}
.x4f{left:469.553813pt;}
.xb7{left:470.887147pt;}
.x59{left:472.220480pt;}
.xca{left:473.553813pt;}
.xa1{left:474.887147pt;}
.x48{left:476.220480pt;}
.xb8{left:477.553813pt;}
.xd1{left:478.887147pt;}
.xfc{left:480.220480pt;}
.x85{left:481.553813pt;}
.x138{left:482.887147pt;}
.x11f{left:484.220480pt;}
.x112{left:485.553813pt;}
.x15{left:486.887147pt;}
.xb9{left:488.220480pt;}
.x134{left:489.553813pt;}
.x50{left:490.887147pt;}
.x100{left:492.220480pt;}
.x155{left:493.553813pt;}
.xd9{left:494.887147pt;}
.xcb{left:496.220480pt;}
.x91{left:497.553813pt;}
.xed{left:498.887147pt;}
.x24{left:500.220480pt;}
.x120{left:501.553813pt;}
.x151{left:502.887147pt;}
.x144{left:504.220480pt;}
.x141{left:505.553813pt;}
.xe8{left:506.887147pt;}
.x11a{left:508.220480pt;}
.x101{left:509.553813pt;}
.xf0{left:510.887147pt;}
.xf8{left:512.220480pt;}
.x113{left:513.553813pt;}
.x127{left:514.887147pt;}
.xcc{left:516.220480pt;}
.x156{left:517.553813pt;}
.x145{left:518.887147pt;}
.xfd{left:520.220480pt;}
.x12c{left:521.553813pt;}
.x108{left:522.887147pt;}
.x152{left:524.220480pt;}
.x105{left:525.553813pt;}
.x117{left:526.887147pt;}
.x10d{left:528.220480pt;}
.x146{left:529.553813pt;}
.x158{left:530.887147pt;}
.x15b{left:532.220480pt;}
.x159{left:533.553813pt;}
.x15a{left:534.887147pt;}
.x15e{left:536.220480pt;}
.x15f{left:537.553813pt;}
.xbf{left:545.526870pt;}
.x140{left:553.827926pt;}
.x14a{left:558.272380pt;}
.x131{left:561.235353pt;}
}




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