
    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_5e2a77a362f0b4427145a231.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_8111139b63141984a5c77edc.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_22e0d3248e29bd894e0450d2.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_a9bbf8ef968b3e2b57d75589.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_af2bb111fa7aaaeb51d6a686.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_e665c54383d976193bb49a64.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_10f251e48cf6004f88805786.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_d2f09a17242e73f50884dac4.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_e6b452e51b5a80bb99b0b653.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_fd6ac0ed1eefaa300007d90a.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_3b114e9bd2409ccb33fdec44.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_351f1f68aa9730e48982d0ee.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_a4168e2ef884016dca190cd5.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_b5d74dfeffea63463bad7e9a.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_80b5f5f4dcd655173052a16e.woff2')format("woff");}.fff{font-family:fff;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_b7eac77ca149b57315c9e496.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_8220da7f0896619ee6016c02.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_d7600e9d77a7459f95f88dea.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_6c8f127ae23c063f1f194a68.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_a2a2c8ddf18429f09bbf7ea3.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_b337886f6c75e14e8f8bbdab.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_126e394a14d4a4816adccbf6.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_14b8c4f84639a5cba5a4599e.woff2')format("woff");}.ff17{font-family:ff17;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url('chunks/assets/font_e7cf00d1440c3fcf818d0959.woff2')format("woff");}.ff18{font-family:ff18;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19;src:url('chunks/assets/font_0df28e9d2b32e7fe1544714f.woff2')format("woff");}.ff19{font-family:ff19;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a;src:url('chunks/assets/font_fdc869ee45e7c9c101d3a307.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b;src:url('chunks/assets/font_8858100017692c471cdc02a3.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c;src:url('chunks/assets/font_de165882e09118304b116f39.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1d;src:url('chunks/assets/font_c97df0b4710bac7d907e76a0.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1e;src:url('chunks/assets/font_c653309793d279b6191fe31b.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1f;src:url('chunks/assets/font_62bf46dc0550f945562caed0.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff20;src:url('chunks/assets/font_4aea5c3089298b841947f41d.woff2')format("woff");}.ff20{font-family:ff20;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m70{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);}
.m77{transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.055000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.055000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.055000,0.000000,0.000000,0.250000,0,0);}
.m79{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);}
.m58{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.m64{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.m51{transform:matrix(0.095000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.095000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.095000,0.000000,0.000000,0.250000,0,0);}
.m6f{transform:matrix(0.097500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.097500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.097500,0.000000,0.000000,0.250000,0,0);}
.m5c{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);}
.m6d{transform:matrix(0.107500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107500,0.000000,0.000000,0.250000,0,0);}
.m71{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);}
.m75{transform:matrix(0.122500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122500,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.127500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127500,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);}
.m6c{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);}
.m4b{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);}
.m62{transform:matrix(0.147500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147500,0.000000,0.000000,0.250000,0,0);}
.m14{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);}
.m48{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);}
.m24{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);}
.m22{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);}
.m60{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.m44{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);}
.m7d{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);}
.m63{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);}
.m81{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);}
.m15{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);}
.m13{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);}
.m4f{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);}
.m5e{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);}
.m28{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);}
.m16{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);}
.m7f{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);}
.m56{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);}
.m73{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);}
.md{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);}
.m1e{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);}
.m4d{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);}
.m30{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);}
.ma{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);}
.m11{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m3e{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.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);}
.m4a{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);}
.m46{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);}
.m9{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);}
.m3d{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);}
.m20{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);}
.m3{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);}
.m2{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);}
.m6{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);}
.m1c{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);}
.m4{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);}
.m12{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);}
.m0{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);}
.m32{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);}
.m1{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);}
.m2c{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);}
.m7{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);}
.m3b{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);}
.mb{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);}
.m19{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);}
.m47{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);}
.m45{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);}
.m42{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);}
.m35{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);}
.m38{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);}
.m26{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);}
.m17{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);}
.m1f{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);}
.m2e{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);}
.m37{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);}
.m43{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);}
.m1a{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);}
.m23{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);}
.m27{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);}
.m1b{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);}
.m36{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);}
.m3c{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);}
.m5{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);}
.m25{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m33{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);}
.m34{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);}
.m10{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);}
.m3a{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);}
.m5b{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);}
.m54{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);}
.m52{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);}
.m2b{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);}
.m6e{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);}
.m7c{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.m2f{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);}
.m21{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);}
.m5a{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);}
.m57{transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);}
.m6b{transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);}
.m78{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);}
.m40{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);}
.m3f{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m39{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);}
.m55{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m53{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);}
.m41{transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m69{transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);}
.m68{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);}
.m50{transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);}
.m61{transform:matrix(0.607500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.607500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.607500,0.000000,0.000000,0.250000,0,0);}
.m72{transform:matrix(0.612500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612500,0.000000,0.000000,0.250000,0,0);}
.m7e{transform:matrix(0.620000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.620000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.620000,0.000000,0.000000,0.250000,0,0);}
.m7a{transform:matrix(0.637500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.637500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.637500,0.000000,0.000000,0.250000,0,0);}
.m6a{transform:matrix(0.640000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.640000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.640000,0.000000,0.000000,0.250000,0,0);}
.m66{transform:matrix(0.657500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.657500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.657500,0.000000,0.000000,0.250000,0,0);}
.m4c{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);}
.m4e{transform:matrix(0.682500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.682500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.682500,0.000000,0.000000,0.250000,0,0);}
.m59{transform:matrix(3.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.187500,0.000000,0.000000,0.250000,0,0);}
.m74{transform:matrix(3.425000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.425000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.425000,0.000000,0.000000,0.250000,0,0);}
.m5f{transform:matrix(3.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.485000,0.000000,0.000000,0.250000,0,0);}
.m67{transform:matrix(3.487500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.487500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.487500,0.000000,0.000000,0.250000,0,0);}
.m7b{transform:matrix(3.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.537500,0.000000,0.000000,0.250000,0,0);}
.m80{transform:matrix(3.550000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.550000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.550000,0.000000,0.000000,0.250000,0,0);}
.m49{transform:matrix(3.662500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.662500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.662500,0.000000,0.000000,0.250000,0,0);}
.m5d{transform:matrix(3.772500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.772500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.772500,0.000000,0.000000,0.250000,0,0);}
.m65{transform:matrix(3.787500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.787500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.787500,0.000000,0.000000,0.250000,0,0);}
.m76{transform:matrix(4.562500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.562500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.562500,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-1.500000px;}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:0.000000px;}
._0{width:7.128668px;}
.fc0{color:transparent;}
.fs8{font-size:36.000000px;}
.fs9{font-size:42.000000px;}
.fsa{font-size:48.000000px;}
.fs1{font-size:54.000000px;}
.fs6{font-size:60.000000px;}
.fs4{font-size:66.000000px;}
.fs3{font-size:72.000000px;}
.fs5{font-size:78.000000px;}
.fsb{font-size:84.000000px;}
.fs2{font-size:96.000000px;}
.fs7{font-size:168.000000px;}
.fs0{font-size:174.000000px;}
.y0{bottom:0.000000px;}
.y1f4{bottom:83.323500px;}
.y1f3{bottom:84.073500px;}
.y1f2{bottom:85.125000px;}
.y2a8{bottom:89.548500px;}
.y2a7{bottom:90.973500px;}
.y14f{bottom:91.125000px;}
.y22c{bottom:91.648500px;}
.y150{bottom:91.798500px;}
.y151{bottom:92.548500px;}
.y25e{bottom:92.848500px;}
.y25d{bottom:93.223500px;}
.y152{bottom:93.298500px;}
.yfd{bottom:96.750000px;}
.y1bb{bottom:97.798500px;}
.y63{bottom:97.875000px;}
.y1f1{bottom:100.948500px;}
.yb9{bottom:101.848500px;}
.y2a6{bottom:106.423500px;}
.y22b{bottom:108.900000px;}
.y14e{bottom:109.500000px;}
.y25c{bottom:110.548500px;}
.yfc{bottom:111.900000px;}
.yfb{bottom:112.275000px;}
.yfa{bottom:112.573500px;}
.y1ba{bottom:113.698500px;}
.yf9{bottom:114.375000px;}
.y62{bottom:114.823500px;}
.y1f0{bottom:117.598500px;}
.yb6{bottom:118.723500px;}
.yb7{bottom:119.775000px;}
.yb8{bottom:120.525000px;}
.y2a5{bottom:123.750000px;}
.y2a4{bottom:124.048500px;}
.y2a3{bottom:124.423500px;}
.y25b{bottom:124.573500px;}
.y22a{bottom:125.775000px;}
.y14d{bottom:126.823500px;}
.y25a{bottom:127.500000px;}
.y61{bottom:128.173500px;}
.yf8{bottom:130.650000px;}
.y60{bottom:131.025000px;}
.y1b9{bottom:131.625000px;}
.y5f{bottom:131.775000px;}
.y1ef{bottom:134.473500px;}
.yb5{bottom:135.298500px;}
.y1ee{bottom:136.573500px;}
.y2a2{bottom:140.250000px;}
.y259{bottom:141.448500px;}
.y5e{bottom:142.198500px;}
.y229{bottom:142.723500px;}
.y14a{bottom:143.323500px;}
.y5d{bottom:143.625000px;}
.y14b{bottom:144.073500px;}
.y258{bottom:144.298500px;}
.y14c{bottom:144.375000px;}
.y5c{bottom:145.048500px;}
.yf7{bottom:146.848500px;}
.y5b{bottom:146.923500px;}
.y1b8{bottom:147.900000px;}
.yf6{bottom:148.650000px;}
.y1b7{bottom:148.875000px;}
.y1b6{bottom:148.948500px;}
.y1b5{bottom:149.250000px;}
.y1b4{bottom:149.323500px;}
.yf5{bottom:149.698500px;}
.yf4{bottom:150.073500px;}
.yb4{bottom:152.250000px;}
.y1ed{bottom:153.150000px;}
.y2a1{bottom:156.150000px;}
.y2a0{bottom:156.823500px;}
.y29f{bottom:157.573500px;}
.y227{bottom:159.298500px;}
.y5a{bottom:159.823500px;}
.y228{bottom:160.048500px;}
.y59{bottom:160.875000px;}
.y149{bottom:160.948500px;}
.y58{bottom:163.048500px;}
.y1b3{bottom:165.150000px;}
.y57{bottom:165.223500px;}
.y1b2{bottom:165.448500px;}
.y1b1{bottom:166.198500px;}
.yf3{bottom:166.573500px;}
.y1ec{bottom:168.673500px;}
.yb3{bottom:169.500000px;}
.y29e{bottom:174.150000px;}
.y225{bottom:175.798500px;}
.y224{bottom:175.875000px;}
.y226{bottom:176.548500px;}
.y148{bottom:177.150000px;}
.y56{bottom:177.525000px;}
.y55{bottom:178.875000px;}
.y54{bottom:179.625000px;}
.y53{bottom:180.750000px;}
.y1b0{bottom:181.348500px;}
.yf2{bottom:181.723500px;}
.y1af{bottom:182.323500px;}
.y1ae{bottom:182.698500px;}
.y52{bottom:182.848500px;}
.y1eb{bottom:184.875000px;}
.yb0{bottom:185.698500px;}
.yb1{bottom:186.073500px;}
.yb2{bottom:187.125000px;}
.y29d{bottom:189.223500px;}
.y29c{bottom:189.598500px;}
.y29b{bottom:189.973500px;}
.y29a{bottom:190.723500px;}
.y299{bottom:191.025000px;}
.y298{bottom:191.775000px;}
.y143{bottom:192.673500px;}
.y51{bottom:192.973500px;}
.y144{bottom:193.048500px;}
.y50{bottom:193.348500px;}
.y223{bottom:193.500000px;}
.y145{bottom:194.473500px;}
.y4f{bottom:196.573500px;}
.y146{bottom:196.650000px;}
.y147{bottom:197.025000px;}
.yf1{bottom:198.298500px;}
.y1ad{bottom:199.348500px;}
.y1ac{bottom:200.025000px;}
.y1ab{bottom:200.098500px;}
.yf0{bottom:200.775000px;}
.y1e9{bottom:201.448500px;}
.y1ea{bottom:201.823500px;}
.y1e8{bottom:202.125000px;}
.yaf{bottom:202.650000px;}
.y1e7{bottom:203.173500px;}
.y257{bottom:205.948500px;}
.y297{bottom:207.973500px;}
.y140{bottom:210.298500px;}
.y222{bottom:210.448500px;}
.y141{bottom:210.673500px;}
.y4e{bottom:210.973500px;}
.y4d{bottom:212.098500px;}
.y142{bottom:212.400000px;}
.y1aa{bottom:214.500000px;}
.y4c{bottom:214.573500px;}
.y1a9{bottom:214.798500px;}
.y1a8{bottom:215.923500px;}
.yef{bottom:216.298500px;}
.y1a7{bottom:216.900000px;}
.yae{bottom:219.525000px;}
.y1e6{bottom:219.823500px;}
.y256{bottom:224.250000px;}
.y296{bottom:225.223500px;}
.y21f{bottom:226.948500px;}
.y21e{bottom:227.025000px;}
.y220{bottom:227.323500px;}
.y221{bottom:227.698500px;}
.y13f{bottom:228.000000px;}
.y4b{bottom:229.723500px;}
.y2cf{bottom:230.698500px;}
.y2ce{bottom:231.073500px;}
.y1a6{bottom:231.673500px;}
.yee{bottom:231.750000px;}
.yed{bottom:232.125000px;}
.y1a5{bottom:232.798500px;}
.yec{bottom:232.875000px;}
.y1a4{bottom:233.098500px;}
.y1a3{bottom:233.173500px;}
.yeb{bottom:233.923500px;}
.yea{bottom:234.673500px;}
.y1e5{bottom:235.948500px;}
.yac{bottom:236.473500px;}
.yad{bottom:238.275000px;}
.y295{bottom:241.423500px;}
.y21b{bottom:243.900000px;}
.y21c{bottom:244.275000px;}
.y255{bottom:244.423500px;}
.y13e{bottom:244.500000px;}
.y21d{bottom:244.573500px;}
.y4a{bottom:246.223500px;}
.y2cd{bottom:247.650000px;}
.y49{bottom:248.698500px;}
.ye9{bottom:249.073500px;}
.y48{bottom:249.448500px;}
.y1a2{bottom:250.048500px;}
.y1e3{bottom:252.148500px;}
.y1e4{bottom:252.523500px;}
.y47{bottom:252.973500px;}
.y1e2{bottom:253.273500px;}
.yab{bottom:253.723500px;}
.y294{bottom:258.750000px;}
.y21a{bottom:260.848500px;}
.y46{bottom:261.298500px;}
.y45{bottom:261.750000px;}
.y13d{bottom:262.198500px;}
.y254{bottom:264.223500px;}
.y44{bottom:264.598500px;}
.y1a1{bottom:267.000000px;}
.ye8{bottom:268.125000px;}
.y1e1{bottom:269.473500px;}
.yaa{bottom:270.298500px;}
.y293{bottom:273.448500px;}
.y292{bottom:275.323500px;}
.y138{bottom:276.898500px;}
.y139{bottom:277.273500px;}
.y219{bottom:278.098500px;}
.y13a{bottom:278.698500px;}
.y43{bottom:280.798500px;}
.y13b{bottom:280.875000px;}
.ye7{bottom:281.098500px;}
.y2cc{bottom:281.173500px;}
.y13c{bottom:281.250000px;}
.ye6{bottom:282.148500px;}
.y1a0{bottom:282.448500px;}
.y19f{bottom:282.823500px;}
.y19e{bottom:283.573500px;}
.ye5{bottom:284.023500px;}
.y1e0{bottom:286.423500px;}
.ya9{bottom:287.625000px;}
.y291{bottom:292.198500px;}
.y290{bottom:293.625000px;}
.y218{bottom:294.673500px;}
.y137{bottom:296.023500px;}
.y2cb{bottom:298.423500px;}
.y19d{bottom:299.023500px;}
.y19c{bottom:299.698500px;}
.y42{bottom:300.598500px;}
.y19b{bottom:300.823500px;}
.ye4{bottom:301.948500px;}
.y1df{bottom:303.298500px;}
.y1dd{bottom:303.673500px;}
.y253{bottom:303.898500px;}
.y1de{bottom:303.973500px;}
.ya8{bottom:304.125000px;}
.y28f{bottom:307.273500px;}
.y28e{bottom:308.773500px;}
.y28d{bottom:310.198500px;}
.y217{bottom:311.625000px;}
.y136{bottom:312.898500px;}
.y41{bottom:315.000000px;}
.y2ca{bottom:315.375000px;}
.y19a{bottom:316.348500px;}
.ye3{bottom:316.798500px;}
.y199{bottom:317.023500px;}
.y198{bottom:317.773500px;}
.ye2{bottom:319.273500px;}
.ye1{bottom:319.648500px;}
.y1dc{bottom:320.625000px;}
.ya7{bottom:321.448500px;}
.y252{bottom:324.375000px;}
.y28c{bottom:326.773500px;}
.y216{bottom:328.125000px;}
.y133{bottom:329.098500px;}
.y134{bottom:330.523500px;}
.y40{bottom:331.573500px;}
.y135{bottom:331.648500px;}
.y2c9{bottom:332.250000px;}
.y197{bottom:333.598500px;}
.ye0{bottom:333.673500px;}
.y196{bottom:334.648500px;}
.y195{bottom:334.723500px;}
.ydf{bottom:336.148500px;}
.y1db{bottom:336.823500px;}
.ya6{bottom:338.323500px;}
.y28b{bottom:341.098500px;}
.y28a{bottom:341.173500px;}
.y289{bottom:342.598500px;}
.y288{bottom:343.723500px;}
.y251{bottom:344.848500px;}
.y215{bottom:345.448500px;}
.y3f{bottom:346.648500px;}
.y132{bottom:346.723500px;}
.y3e{bottom:348.148500px;}
.y2c8{bottom:349.198500px;}
.y194{bottom:349.423500px;}
.y193{bottom:349.798500px;}
.y3d{bottom:349.875000px;}
.y192{bottom:350.848500px;}
.y191{bottom:351.223500px;}
.y3c{bottom:351.375000px;}
.y190{bottom:351.598500px;}
.y3b{bottom:352.048500px;}
.y1da{bottom:353.698500px;}
.y1d9{bottom:354.000000px;}
.ya5{bottom:354.898500px;}
.y287{bottom:358.048500px;}
.y286{bottom:359.473500px;}
.y285{bottom:360.973500px;}
.y213{bottom:361.948500px;}
.y212{bottom:362.023500px;}
.y3a{bottom:362.173500px;}
.y214{bottom:362.323500px;}
.y39{bottom:362.848500px;}
.y131{bottom:363.673500px;}
.y250{bottom:365.773500px;}
.y38{bottom:366.073500px;}
.y18f{bottom:366.673500px;}
.y18e{bottom:367.423500px;}
.yde{bottom:367.500000px;}
.y18d{bottom:368.173500px;}
.y1d8{bottom:370.573500px;}
.y1d7{bottom:370.948500px;}
.y1d6{bottom:371.023500px;}
.ya4{bottom:372.223500px;}
.y211{bottom:378.898500px;}
.y130{bottom:379.500000px;}
.y2c6{bottom:382.648500px;}
.y2c7{bottom:383.023500px;}
.y18c{bottom:383.625000px;}
.ydd{bottom:384.073500px;}
.y18b{bottom:384.298500px;}
.y18a{bottom:384.750000px;}
.y24f{bottom:384.823500px;}
.y37{bottom:385.573500px;}
.y36{bottom:386.323500px;}
.ydc{bottom:386.923500px;}
.ya2{bottom:388.348500px;}
.ya3{bottom:389.098500px;}
.y20f{bottom:395.773500px;}
.y210{bottom:395.848500px;}
.y35{bottom:396.375000px;}
.y34{bottom:397.048500px;}
.y12f{bottom:397.198500px;}
.y33{bottom:397.423500px;}
.y32{bottom:398.173500px;}
.y31{bottom:398.848500px;}
.y2f{bottom:398.923500px;}
.y2c5{bottom:399.598500px;}
.y189{bottom:401.250000px;}
.y2e{bottom:401.398500px;}
.ydb{bottom:402.073500px;}
.y30{bottom:402.448500px;}
.y24e{bottom:405.000000px;}
.y24d{bottom:405.673500px;}
.ya1{bottom:407.098500px;}
.y20e{bottom:412.723500px;}
.y2d{bottom:412.875000px;}
.y2c{bottom:413.625000px;}
.y12e{bottom:414.073500px;}
.y2b{bottom:414.375000px;}
.y284{bottom:415.348500px;}
.y2a{bottom:415.423500px;}
.y2c3{bottom:416.473500px;}
.y2c4{bottom:416.848500px;}
.y188{bottom:417.073500px;}
.y187{bottom:417.823500px;}
.yda{bottom:417.898500px;}
.y29{bottom:418.273500px;}
.y186{bottom:418.500000px;}
.y1d5{bottom:418.875000px;}
.ya0{bottom:424.348500px;}
.y24c{bottom:425.473500px;}
.y24b{bottom:426.223500px;}
.y20d{bottom:429.298500px;}
.y28{bottom:430.948500px;}
.y12c{bottom:433.125000px;}
.y27{bottom:433.423500px;}
.y12d{bottom:433.798500px;}
.y26{bottom:434.548500px;}
.y185{bottom:434.773500px;}
.y283{bottom:435.448500px;}
.y25{bottom:435.973500px;}
.yd9{bottom:437.398500px;}
.y1d4{bottom:438.298500px;}
.y1d3{bottom:439.723500px;}
.y9f{bottom:441.298500px;}
.y12b{bottom:446.098500px;}
.y20c{bottom:446.250000px;}
.y2c1{bottom:449.625000px;}
.y24{bottom:450.000000px;}
.y2c2{bottom:450.673500px;}
.yd8{bottom:451.423500px;}
.y184{bottom:451.648500px;}
.y282{bottom:453.148500px;}
.yd7{bottom:453.898500px;}
.y281{bottom:454.125000px;}
.yd6{bottom:454.573500px;}
.y280{bottom:456.000000px;}
.y9e{bottom:457.500000px;}
.y24a{bottom:460.798500px;}
.y20b{bottom:463.125000px;}
.y12a{bottom:464.848500px;}
.y183{bottom:467.173500px;}
.y2c0{bottom:467.323500px;}
.y182{bottom:467.473500px;}
.y181{bottom:468.598500px;}
.yd5{bottom:468.673500px;}
.y23{bottom:469.423500px;}
.y1d2{bottom:469.648500px;}
.y22{bottom:470.098500px;}
.y21{bottom:470.473500px;}
.y9c{bottom:474.448500px;}
.y9d{bottom:475.875000px;}
.y27f{bottom:476.548500px;}
.y129{bottom:481.798500px;}
.y20{bottom:483.823500px;}
.y2bf{bottom:484.198500px;}
.y180{bottom:485.098500px;}
.yd4{bottom:486.298500px;}
.yd3{bottom:488.473500px;}
.y9b{bottom:492.073500px;}
.y249{bottom:494.323500px;}
.y27e{bottom:495.223500px;}
.y126{bottom:497.625000px;}
.y1f{bottom:498.598500px;}
.y127{bottom:499.723500px;}
.y1d1{bottom:500.173500px;}
.y128{bottom:501.148500px;}
.y17f{bottom:501.750000px;}
.y17e{bottom:503.098500px;}
.y99{bottom:508.198500px;}
.y98{bottom:508.273500px;}
.y9a{bottom:509.323500px;}
.y20a{bottom:511.048500px;}
.y125{bottom:513.375000px;}
.y248{bottom:515.098500px;}
.y27d{bottom:515.398500px;}
.y1e{bottom:515.923500px;}
.y17d{bottom:518.698500px;}
.y1d0{bottom:519.673500px;}
.y93{bottom:524.773500px;}
.y94{bottom:524.848500px;}
.y95{bottom:525.898500px;}
.y96{bottom:526.198500px;}
.y97{bottom:527.023500px;}
.y1d{bottom:529.573500px;}
.y1c{bottom:529.948500px;}
.y209{bottom:531.148500px;}
.y1b{bottom:532.798500px;}
.y124{bottom:532.875000px;}
.y247{bottom:534.223500px;}
.y27c{bottom:534.823500px;}
.y17c{bottom:535.500000px;}
.y1cf{bottom:540.148500px;}
.yd2{bottom:542.098500px;}
.y90{bottom:542.473500px;}
.y91{bottom:544.573500px;}
.y92{bottom:544.948500px;}
.y123{bottom:548.023500px;}
.y208{bottom:551.323500px;}
.y17b{bottom:552.148500px;}
.y246{bottom:552.598500px;}
.y245{bottom:554.398500px;}
.y27b{bottom:555.000000px;}
.yd1{bottom:559.048500px;}
.y8e{bottom:559.423500px;}
.y8f{bottom:561.148500px;}
.yd0{bottom:561.898500px;}
.ycf{bottom:562.648500px;}
.y120{bottom:563.098500px;}
.y121{bottom:563.848500px;}
.y122{bottom:566.325000px;}
.y17a{bottom:569.023500px;}
.y207{bottom:570.750000px;}
.y206{bottom:571.125000px;}
.y1a{bottom:572.023500px;}
.y27a{bottom:573.750000px;}
.y2be{bottom:573.825000px;}
.y1ce{bottom:574.048500px;}
.y244{bottom:574.200000px;}
.y8d{bottom:576.598500px;}
.y279{bottom:576.898500px;}
.y278{bottom:577.648500px;}
.y11d{bottom:582.523500px;}
.y179{bottom:585.298500px;}
.y11e{bottom:585.450000px;}
.y11f{bottom:585.825000px;}
.y178{bottom:586.648500px;}
.y177{bottom:587.023500px;}
.y8c{bottom:593.250000px;}
.y277{bottom:594.223500px;}
.y243{bottom:594.673500px;}
.yce{bottom:596.098500px;}
.y276{bottom:597.148500px;}
.y11a{bottom:598.423500px;}
.y11b{bottom:599.848500px;}
.y205{bottom:601.423500px;}
.y11c{bottom:601.648500px;}
.y176{bottom:602.548500px;}
.y2bd{bottom:607.648500px;}
.y1cd{bottom:608.173500px;}
.y8b{bottom:610.500000px;}
.y242{bottom:613.048500px;}
.y241{bottom:614.098500px;}
.y115{bottom:614.173500px;}
.y116{bottom:614.923500px;}
.y240{bottom:615.223500px;}
.y117{bottom:615.673500px;}
.y275{bottom:616.575000px;}
.y118{bottom:617.098500px;}
.y119{bottom:618.523500px;}
.y19{bottom:618.898500px;}
.y175{bottom:619.423500px;}
.y8a{bottom:627.075000px;}
.y2bc{bottom:627.450000px;}
.y2bb{bottom:627.523500px;}
.y2ba{bottom:627.825000px;}
.y1cc{bottom:627.973500px;}
.ycd{bottom:630.298500px;}
.y204{bottom:631.950000px;}
.y114{bottom:633.973500px;}
.y23f{bottom:634.275000px;}
.y274{bottom:634.948500px;}
.y174{bottom:635.625000px;}
.y173{bottom:636.298500px;}
.y172{bottom:637.048500px;}
.y88{bottom:644.025000px;}
.y89{bottom:645.823500px;}
.ycc{bottom:646.125000px;}
.y2b9{bottom:648.000000px;}
.ycb{bottom:649.423500px;}
.yca{bottom:650.098500px;}
.y113{bottom:650.548500px;}
.y203{bottom:651.750000px;}
.y171{bottom:653.250000px;}
.y23e{bottom:654.073500px;}
.y273{bottom:654.375000px;}
.y18{bottom:655.198500px;}
.y86{bottom:659.775000px;}
.y87{bottom:660.525000px;}
.y1cb{bottom:661.875000px;}
.y110{bottom:666.375000px;}
.y2b8{bottom:667.798500px;}
.y111{bottom:668.548500px;}
.y112{bottom:669.298500px;}
.y170{bottom:669.448500px;}
.y16f{bottom:669.823500px;}
.y16e{bottom:670.198500px;}
.y16d{bottom:670.573500px;}
.y202{bottom:671.548500px;}
.y23d{bottom:673.875000px;}
.y272{bottom:674.548500px;}
.y85{bottom:677.848500px;}
.y17{bottom:681.823500px;}
.yc9{bottom:682.500000px;}
.yc8{bottom:683.625000px;}
.y10d{bottom:684.000000px;}
.y10e{bottom:685.798500px;}
.y10f{bottom:686.625000px;}
.y16c{bottom:687.073500px;}
.y2b7{bottom:689.400000px;}
.y1c8{bottom:692.848500px;}
.y271{bottom:694.275000px;}
.y23c{bottom:694.500000px;}
.y84{bottom:694.723500px;}
.y1ca{bottom:695.698500px;}
.y1c9{bottom:696.000000px;}
.y270{bottom:697.423500px;}
.y16{bottom:697.650000px;}
.y26f{bottom:698.250000px;}
.y201{bottom:701.848500px;}
.y16b{bottom:704.400000px;}
.y16a{bottom:704.698500px;}
.y169{bottom:704.775000px;}
.y2b6{bottom:709.573500px;}
.y7e{bottom:710.625000px;}
.y7f{bottom:711.598500px;}
.y80{bottom:712.048500px;}
.y81{bottom:712.348500px;}
.y82{bottom:712.723500px;}
.y83{bottom:713.098500px;}
.y26e{bottom:714.150000px;}
.y23b{bottom:714.598500px;}
.yc7{bottom:714.900000px;}
.y1c7{bottom:716.173500px;}
.yc6{bottom:716.698500px;}
.y1c6{bottom:717.673500px;}
.y168{bottom:719.848500px;}
.y167{bottom:720.598500px;}
.y166{bottom:721.275000px;}
.y7d{bottom:728.250000px;}
.y2b5{bottom:729.000000px;}
.y2b4{bottom:729.375000px;}
.y2b3{bottom:729.673500px;}
.y200{bottom:732.375000px;}
.y10c{bottom:733.048500px;}
.yc5{bottom:733.275000px;}
.y26d{bottom:734.250000px;}
.y23a{bottom:734.400000px;}
.yc3{bottom:735.750000px;}
.yc4{bottom:735.823500px;}
.yc2{bottom:736.125000px;}
.y1c5{bottom:736.348500px;}
.y239{bottom:736.573500px;}
.yc1{bottom:737.250000px;}
.y7c{bottom:745.125000px;}
.y2b2{bottom:749.173500px;}
.y1ff{bottom:752.250000px;}
.y105{bottom:753.525000px;}
.y106{bottom:754.275000px;}
.y107{bottom:754.948500px;}
.y238{bottom:755.250000px;}
.y108{bottom:755.323500px;}
.y109{bottom:756.073500px;}
.y26c{bottom:756.598500px;}
.y10a{bottom:756.750000px;}
.y10b{bottom:757.500000px;}
.y7b{bottom:762.073500px;}
.y15{bottom:763.198500px;}
.y14{bottom:763.948500px;}
.y12{bottom:766.125000px;}
.y11{bottom:767.548500px;}
.y165{bottom:768.073500px;}
.y10{bottom:768.598500px;}
.yf{bottom:768.973500px;}
.y2b1{bottom:769.348500px;}
.y164{bottom:769.500000px;}
.y163{bottom:769.875000px;}
.y162{bottom:769.948500px;}
.y1c4{bottom:770.925000px;}
.yc0{bottom:771.073500px;}
.y1fe{bottom:771.675000px;}
.yd{bottom:771.823500px;}
.y237{bottom:772.573500px;}
.y1fd{bottom:772.723500px;}
.y1fc{bottom:773.098500px;}
.y26b{bottom:773.848500px;}
.y236{bottom:776.175000px;}
.y235{bottom:776.848500px;}
.y13{bottom:777.598500px;}
.y7a{bottom:780.448500px;}
.ye{bottom:782.323500px;}
.y104{bottom:786.675000px;}
.y161{bottom:788.250000px;}
.y160{bottom:789.375000px;}
.y15f{bottom:789.675000px;}
.y26a{bottom:790.800000px;}
.y1fb{bottom:791.848500px;}
.y269{bottom:792.223500px;}
.y268{bottom:792.973500px;}
.y75{bottom:795.150000px;}
.y234{bottom:795.223500px;}
.y267{bottom:795.448500px;}
.y76{bottom:795.525000px;}
.y77{bottom:795.598500px;}
.y78{bottom:796.275000px;}
.y79{bottom:797.323500px;}
.y2b0{bottom:803.550000px;}
.ybf{bottom:803.848500px;}
.y1c3{bottom:804.750000px;}
.y1fa{bottom:811.275000px;}
.y72{bottom:812.848500px;}
.y73{bottom:813.525000px;}
.y74{bottom:814.650000px;}
.y233{bottom:815.025000px;}
.y266{bottom:818.098500px;}
.yc{bottom:819.750000px;}
.ybe{bottom:820.348500px;}
.yb{bottom:821.175000px;}
.ya{bottom:821.925000px;}
.y9{bottom:822.300000px;}
.y15e{bottom:823.198500px;}
.ybd{bottom:823.275000px;}
.y1c2{bottom:823.875000px;}
.ybc{bottom:824.323500px;}
.y1c0{bottom:824.925000px;}
.y1c1{bottom:825.300000px;}
.y70{bottom:829.348500px;}
.y71{bottom:831.223500px;}
.y1f9{bottom:831.750000px;}
.y265{bottom:834.000000px;}
.y2af{bottom:837.375000px;}
.y101{bottom:841.050000px;}
.y8{bottom:841.723500px;}
.y102{bottom:842.098500px;}
.y103{bottom:842.473500px;}
.y7{bottom:842.775000px;}
.y1bf{bottom:843.675000px;}
.y6{bottom:844.573500px;}
.y6f{bottom:845.925000px;}
.y5{bottom:846.300000px;}
.y232{bottom:849.973500px;}
.y1f8{bottom:851.550000px;}
.y264{bottom:853.425000px;}
.y15d{bottom:855.598500px;}
.ybb{bottom:856.050000px;}
.y15c{bottom:856.650000px;}
.y15b{bottom:857.025000px;}
.y2ae{bottom:857.175000px;}
.y15a{bottom:857.400000px;}
.y263{bottom:857.775000px;}
.yba{bottom:857.848500px;}
.y262{bottom:858.448500px;}
.y6a{bottom:863.175000px;}
.y6b{bottom:863.925000px;}
.y6c{bottom:865.050000px;}
.y6d{bottom:866.098500px;}
.y6e{bottom:866.473500px;}
.y1f7{bottom:871.050000px;}
.y100{bottom:873.750000px;}
.y159{bottom:873.900000px;}
.y4{bottom:874.050000px;}
.y158{bottom:874.348500px;}
.y157{bottom:876.073500px;}
.y156{bottom:876.823500px;}
.y155{bottom:877.198500px;}
.y2ad{bottom:877.348500px;}
.y1be{bottom:878.250000px;}
.y3{bottom:878.698500px;}
.y67{bottom:880.875000px;}
.y68{bottom:882.598500px;}
.y69{bottom:883.050000px;}
.y231{bottom:883.800000px;}
.y261{bottom:890.473500px;}
.y260{bottom:892.348500px;}
.y66{bottom:896.323500px;}
.y230{bottom:899.250000px;}
.y22f{bottom:899.625000px;}
.y1f6{bottom:902.323500px;}
.y22e{bottom:902.473500px;}
.y2{bottom:909.750000px;}
.y154{bottom:910.723500px;}
.y2ac{bottom:911.550000px;}
.y2ab{bottom:911.925000px;}
.y65{bottom:914.698500px;}
.y1bc{bottom:932.175000px;}
.y1bd{bottom:932.250000px;}
.y1{bottom:936.375000px;}
.y1f5{bottom:939.448500px;}
.y25f{bottom:939.525000px;}
.y22d{bottom:940.275000px;}
.yfe{bottom:941.098500px;}
.yff{bottom:941.473500px;}
.y153{bottom:947.400000px;}
.y2aa{bottom:948.900000px;}
.y2a9{bottom:948.973500px;}
.y64{bottom:949.650000px;}
.ha{height:35.332031px;}
.h14{height:41.200195px;}
.h15{height:42.328125px;}
.hf{height:43.804688px;}
.h12{height:47.085938px;}
.h18{height:47.109375px;}
.hd{height:52.971680px;}
.h2{height:52.998047px;}
.h13{height:54.421875px;}
.h6{height:56.320312px;}
.h10{height:58.857422px;}
.h8{height:58.886719px;}
.h17{height:60.468750px;}
.hb{height:62.578125px;}
.h1e{height:63.243164px;}
.he{height:64.743164px;}
.h5{height:64.775391px;}
.h1d{height:66.515625px;}
.h21{height:70.628906px;}
.h4{height:70.664062px;}
.hc{height:72.562500px;}
.h7{height:76.552734px;}
.h20{height:82.400391px;}
.h3{height:94.218750px;}
.h9{height:169.312500px;}
.h1{height:181.476562px;}
.h1a{height:1003.500000px;}
.h1f{height:1005.000000px;}
.h1c{height:1017.000000px;}
.h16{height:1018.500000px;}
.h1b{height:1021.500000px;}
.h11{height:1024.500000px;}
.h0{height:1026.000000px;}
.h19{height:1032.000000px;}
.w7{width:640.500000px;}
.w3{width:660.000000px;}
.w6{width:664.500000px;}
.w1{width:667.500000px;}
.w5{width:676.500000px;}
.w0{width:679.500000px;}
.w4{width:690.000000px;}
.w2{width:693.000000px;}
.x0{left:0.000000px;}
.xd7{left:47.850000px;}
.xd2{left:49.650000px;}
.xd6{left:51.150000px;}
.xbc{left:54.000000px;}
.xaf{left:55.050000px;}
.x89{left:56.550000px;}
.x7e{left:57.600000px;}
.x77{left:59.025000px;}
.x47{left:60.825000px;}
.x34{left:61.950000px;}
.x2a{left:63.375000px;}
.x1e{left:64.425000px;}
.xe1{left:65.550000px;}
.x19{left:66.975000px;}
.x3{left:69.825000px;}
.xf0{left:70.950000px;}
.xd{left:74.550000px;}
.xb0{left:75.600000px;}
.xd3{left:77.025000px;}
.x45{left:79.200000px;}
.xc3{left:80.250000px;}
.x7a{left:81.375000px;}
.xec{left:82.425000px;}
.x83{left:83.550000px;}
.x7b{left:84.600000px;}
.x49{left:86.025000px;}
.x50{left:87.150000px;}
.x2f{left:88.200000px;}
.x35{left:89.625000px;}
.x21{left:91.050000px;}
.x9d{left:92.175000px;}
.x1b{left:93.225000px;}
.xa6{left:94.650000px;}
.x7d{left:96.150000px;}
.xd0{left:97.198500px;}
.xcd{left:98.250000px;}
.xc6{left:99.375000px;}
.x16{left:101.550000px;}
.xd8{left:102.600000px;}
.x3e{left:103.650000px;}
.xa7{left:105.150000px;}
.xe6{left:106.573500px;}
.x1f{left:107.625000px;}
.xf2{left:108.750000px;}
.x99{left:109.800000px;}
.x7c{left:111.600000px;}
.x4a{left:113.400000px;}
.x5c{left:114.448500px;}
.x66{left:115.575000px;}
.x68{left:117.000000px;}
.x9c{left:118.050000px;}
.x67{left:119.175000px;}
.x37{left:120.975000px;}
.x5d{left:123.825000px;}
.x46{left:124.950000px;}
.x20{left:126.000000px;}
.xa2{left:127.425000px;}
.x52{left:129.975000px;}
.xfa{left:131.400000px;}
.xad{left:132.450000px;}
.x84{left:133.575000px;}
.xf3{left:135.000000px;}
.x98{left:136.050000px;}
.xf4{left:137.175000px;}
.xc0{left:138.600000px;}
.x63{left:139.650000px;}
.xe7{left:140.775000px;}
.xe{left:142.950000px;}
.xe8{left:144.000000px;}
.x5{left:145.050000px;}
.xd4{left:146.850000px;}
.x53{left:147.975000px;}
.x78{left:150.825000px;}
.xcb{left:151.950000px;}
.xdc{left:154.050000px;}
.xca{left:155.550000px;}
.xc9{left:156.975000px;}
.x22{left:158.025000px;}
.x79{left:162.375000px;}
.xdd{left:165.975000px;}
.xb3{left:168.150000px;}
.x81{left:170.250000px;}
.x85{left:172.800000px;}
.xba{left:177.150000px;}
.xc7{left:178.575000px;}
.xb4{left:180.000000px;}
.xc8{left:181.050000px;}
.x38{left:182.175000px;}
.x64{left:184.650000px;}
.xaa{left:186.150000px;}
.xbb{left:188.250000px;}
.x1a{left:189.375000px;}
.x93{left:190.425000px;}
.x74{left:193.350000px;}
.x54{left:194.773500px;}
.x75{left:197.250000px;}
.x6f{left:199.800000px;}
.x62{left:202.648500px;}
.x4{left:204.825000px;}
.x39{left:206.625000px;}
.xc4{left:207.750000px;}
.xab{left:209.850000px;}
.x55{left:211.648500px;}
.xc5{left:212.773500px;}
.xae{left:214.200000px;}
.xa1{left:215.625000px;}
.xa8{left:217.425000px;}
.xcc{left:218.850000px;}
.x73{left:222.148500px;}
.xc2{left:224.625000px;}
.x1{left:227.850000px;}
.x23{left:230.400000px;}
.x94{left:231.825000px;}
.x9{left:232.950000px;}
.x76{left:234.375000px;}
.x8b{left:236.175000px;}
.xac{left:238.650000px;}
.x51{left:240.825000px;}
.xb8{left:241.950000px;}
.xa9{left:243.375000px;}
.x6e{left:244.425000px;}
.xf{left:248.400000px;}
.xe0{left:249.450000px;}
.x10{left:253.425000px;}
.x70{left:258.150000px;}
.xf5{left:260.250000px;}
.x11{left:262.800000px;}
.x6{left:266.025000px;}
.xc1{left:267.825000px;}
.x4d{left:270.000000px;}
.xa{left:272.850000px;}
.xb{left:276.450000px;}
.x24{left:278.250000px;}
.x71{left:281.550000px;}
.x18{left:282.975000px;}
.x25{left:284.400000px;}
.x7{left:288.375000px;}
.x65{left:290.175000px;}
.xb1{left:291.600000px;}
.xd1{left:297.750000px;}
.x3f{left:299.550000px;}
.x86{left:301.650000px;}
.xf6{left:302.775000px;}
.x2{left:304.575000px;}
.x56{left:307.425000px;}
.x48{left:308.850000px;}
.x17{left:315.375000px;}
.x26{left:317.550000px;}
.x2b{left:318.600000px;}
.xd9{left:320.775000px;}
.x27{left:323.625000px;}
.x8c{left:325.050000px;}
.x6a{left:328.650000px;}
.xe3{left:330.150000px;}
.x2c{left:332.625000px;}
.x8a{left:334.425000px;}
.xc{left:335.550000px;}
.xf7{left:336.975000px;}
.xb5{left:339.150000px;}
.x43{left:340.200000px;}
.x72{left:342.750000px;}
.xa5{left:344.550000px;}
.x32{left:348.150000px;}
.xb2{left:352.800000px;}
.xf1{left:357.150000px;}
.xb6{left:361.800000px;}
.xbf{left:363.600000px;}
.x3a{left:365.025000px;}
.xbd{left:366.150000px;}
.x33{left:372.225000px;}
.xb7{left:373.650000px;}
.x82{left:376.575000px;}
.xbe{left:377.625000px;}
.x57{left:383.025000px;}
.x12{left:388.423500px;}
.x6b{left:391.350000px;}
.xe4{left:393.150000px;}
.xda{left:398.548500px;}
.x8{left:406.798500px;}
.x9e{left:414.750000px;}
.xe9{left:416.173500px;}
.x7f{left:420.150000px;}
.x95{left:421.950000px;}
.x91{left:425.850000px;}
.x13{left:427.350000px;}
.x80{left:430.575000px;}
.x8d{left:433.423500px;}
.x40{left:435.975000px;}
.x3b{left:437.400000px;}
.xf9{left:440.250000px;}
.x41{left:442.423500px;}
.x92{left:446.400000px;}
.x6c{left:450.375000px;}
.x87{left:453.975000px;}
.xe5{left:459.750000px;}
.xee{left:461.550000px;}
.x58{left:462.975000px;}
.x28{left:464.400000px;}
.x42{left:468.750000px;}
.x2d{left:470.850000px;}
.xde{left:474.450000px;}
.x88{left:475.575000px;}
.x4b{left:477.375000px;}
.x9a{left:478.425000px;}
.x69{left:480.975000px;}
.x1c{left:483.150000px;}
.x9f{left:484.200000px;}
.x8e{left:485.625000px;}
.xce{left:487.050000px;}
.x2e{left:488.550000px;}
.xdb{left:490.350000px;}
.x30{left:493.575000px;}
.xb9{left:495.000000px;}
.xa0{left:496.050000px;}
.xcf{left:498.975000px;}
.x59{left:504.000000px;}
.xd5{left:507.975000px;}
.xeb{left:510.825000px;}
.x14{left:514.800000px;}
.x8f{left:516.975000px;}
.xf8{left:518.025000px;}
.x90{left:520.200000px;}
.x5a{left:522.000000px;}
.x9b{left:529.200000px;}
.x5f{left:531.000000px;}
.x36{left:532.800000px;}
.x96{left:534.600000px;}
.x29{left:536.025000px;}
.x3c{left:538.950000px;}
.x6d{left:540.375000px;}
.xdf{left:541.800000px;}
.x1d{left:543.225000px;}
.xa3{left:544.350000px;}
.x4c{left:545.775000px;}
.xea{left:550.425000px;}
.x44{left:554.025000px;}
.x31{left:557.250000px;}
.xa4{left:558.375000px;}
.x4e{left:559.800000px;}
.x5b{left:562.350000px;}
.xed{left:564.825000px;}
.x15{left:571.650000px;}
.xe2{left:574.575000px;}
.x97{left:576.000000px;}
.xef{left:577.800000px;}
.x3d{left:579.600000px;}
.x5e{left:595.425000px;}
.x61{left:596.550000px;}
.x60{left:598.350000px;}
.x4f{left:599.400000px;}
@media print{
.v1{vertical-align:-1.333333pt;}
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws0{word-spacing:0.000000pt;}
._0{width:6.336594pt;}
.fs8{font-size:32.000000pt;}
.fs9{font-size:37.333333pt;}
.fsa{font-size:42.666667pt;}
.fs1{font-size:48.000000pt;}
.fs6{font-size:53.333333pt;}
.fs4{font-size:58.666667pt;}
.fs3{font-size:64.000000pt;}
.fs5{font-size:69.333333pt;}
.fsb{font-size:74.666667pt;}
.fs2{font-size:85.333333pt;}
.fs7{font-size:149.333333pt;}
.fs0{font-size:154.666667pt;}
.y0{bottom:0.000000pt;}
.y1f4{bottom:74.065333pt;}
.y1f3{bottom:74.732000pt;}
.y1f2{bottom:75.666667pt;}
.y2a8{bottom:79.598667pt;}
.y2a7{bottom:80.865333pt;}
.y14f{bottom:81.000000pt;}
.y22c{bottom:81.465333pt;}
.y150{bottom:81.598667pt;}
.y151{bottom:82.265333pt;}
.y25e{bottom:82.532000pt;}
.y25d{bottom:82.865333pt;}
.y152{bottom:82.932000pt;}
.yfd{bottom:86.000000pt;}
.y1bb{bottom:86.932000pt;}
.y63{bottom:87.000000pt;}
.y1f1{bottom:89.732000pt;}
.yb9{bottom:90.532000pt;}
.y2a6{bottom:94.598667pt;}
.y22b{bottom:96.800000pt;}
.y14e{bottom:97.333333pt;}
.y25c{bottom:98.265333pt;}
.yfc{bottom:99.466667pt;}
.yfb{bottom:99.800000pt;}
.yfa{bottom:100.065333pt;}
.y1ba{bottom:101.065333pt;}
.yf9{bottom:101.666667pt;}
.y62{bottom:102.065333pt;}
.y1f0{bottom:104.532000pt;}
.yb6{bottom:105.532000pt;}
.yb7{bottom:106.466667pt;}
.yb8{bottom:107.133333pt;}
.y2a5{bottom:110.000000pt;}
.y2a4{bottom:110.265333pt;}
.y2a3{bottom:110.598667pt;}
.y25b{bottom:110.732000pt;}
.y22a{bottom:111.800000pt;}
.y14d{bottom:112.732000pt;}
.y25a{bottom:113.333333pt;}
.y61{bottom:113.932000pt;}
.yf8{bottom:116.133333pt;}
.y60{bottom:116.466667pt;}
.y1b9{bottom:117.000000pt;}
.y5f{bottom:117.133333pt;}
.y1ef{bottom:119.532000pt;}
.yb5{bottom:120.265333pt;}
.y1ee{bottom:121.398667pt;}
.y2a2{bottom:124.666667pt;}
.y259{bottom:125.732000pt;}
.y5e{bottom:126.398667pt;}
.y229{bottom:126.865333pt;}
.y14a{bottom:127.398667pt;}
.y5d{bottom:127.666667pt;}
.y14b{bottom:128.065333pt;}
.y258{bottom:128.265333pt;}
.y14c{bottom:128.333333pt;}
.y5c{bottom:128.932000pt;}
.yf7{bottom:130.532000pt;}
.y5b{bottom:130.598667pt;}
.y1b8{bottom:131.466667pt;}
.yf6{bottom:132.133333pt;}
.y1b7{bottom:132.333333pt;}
.y1b6{bottom:132.398667pt;}
.y1b5{bottom:132.666667pt;}
.y1b4{bottom:132.732000pt;}
.yf5{bottom:133.065333pt;}
.yf4{bottom:133.398667pt;}
.yb4{bottom:135.333333pt;}
.y1ed{bottom:136.133333pt;}
.y2a1{bottom:138.800000pt;}
.y2a0{bottom:139.398667pt;}
.y29f{bottom:140.065333pt;}
.y227{bottom:141.598667pt;}
.y5a{bottom:142.065333pt;}
.y228{bottom:142.265333pt;}
.y59{bottom:143.000000pt;}
.y149{bottom:143.065333pt;}
.y58{bottom:144.932000pt;}
.y1b3{bottom:146.800000pt;}
.y57{bottom:146.865333pt;}
.y1b2{bottom:147.065333pt;}
.y1b1{bottom:147.732000pt;}
.yf3{bottom:148.065333pt;}
.y1ec{bottom:149.932000pt;}
.yb3{bottom:150.666667pt;}
.y29e{bottom:154.800000pt;}
.y225{bottom:156.265333pt;}
.y224{bottom:156.333333pt;}
.y226{bottom:156.932000pt;}
.y148{bottom:157.466667pt;}
.y56{bottom:157.800000pt;}
.y55{bottom:159.000000pt;}
.y54{bottom:159.666667pt;}
.y53{bottom:160.666667pt;}
.y1b0{bottom:161.198667pt;}
.yf2{bottom:161.532000pt;}
.y1af{bottom:162.065333pt;}
.y1ae{bottom:162.398667pt;}
.y52{bottom:162.532000pt;}
.y1eb{bottom:164.333333pt;}
.yb0{bottom:165.065333pt;}
.yb1{bottom:165.398667pt;}
.yb2{bottom:166.333333pt;}
.y29d{bottom:168.198667pt;}
.y29c{bottom:168.532000pt;}
.y29b{bottom:168.865333pt;}
.y29a{bottom:169.532000pt;}
.y299{bottom:169.800000pt;}
.y298{bottom:170.466667pt;}
.y143{bottom:171.265333pt;}
.y51{bottom:171.532000pt;}
.y144{bottom:171.598667pt;}
.y50{bottom:171.865333pt;}
.y223{bottom:172.000000pt;}
.y145{bottom:172.865333pt;}
.y4f{bottom:174.732000pt;}
.y146{bottom:174.800000pt;}
.y147{bottom:175.133333pt;}
.yf1{bottom:176.265333pt;}
.y1ad{bottom:177.198667pt;}
.y1ac{bottom:177.800000pt;}
.y1ab{bottom:177.865333pt;}
.yf0{bottom:178.466667pt;}
.y1e9{bottom:179.065333pt;}
.y1ea{bottom:179.398667pt;}
.y1e8{bottom:179.666667pt;}
.yaf{bottom:180.133333pt;}
.y1e7{bottom:180.598667pt;}
.y257{bottom:183.065333pt;}
.y297{bottom:184.865333pt;}
.y140{bottom:186.932000pt;}
.y222{bottom:187.065333pt;}
.y141{bottom:187.265333pt;}
.y4e{bottom:187.532000pt;}
.y4d{bottom:188.532000pt;}
.y142{bottom:188.800000pt;}
.y1aa{bottom:190.666667pt;}
.y4c{bottom:190.732000pt;}
.y1a9{bottom:190.932000pt;}
.y1a8{bottom:191.932000pt;}
.yef{bottom:192.265333pt;}
.y1a7{bottom:192.800000pt;}
.yae{bottom:195.133333pt;}
.y1e6{bottom:195.398667pt;}
.y256{bottom:199.333333pt;}
.y296{bottom:200.198667pt;}
.y21f{bottom:201.732000pt;}
.y21e{bottom:201.800000pt;}
.y220{bottom:202.065333pt;}
.y221{bottom:202.398667pt;}
.y13f{bottom:202.666667pt;}
.y4b{bottom:204.198667pt;}
.y2cf{bottom:205.065333pt;}
.y2ce{bottom:205.398667pt;}
.y1a6{bottom:205.932000pt;}
.yee{bottom:206.000000pt;}
.yed{bottom:206.333333pt;}
.y1a5{bottom:206.932000pt;}
.yec{bottom:207.000000pt;}
.y1a4{bottom:207.198667pt;}
.y1a3{bottom:207.265333pt;}
.yeb{bottom:207.932000pt;}
.yea{bottom:208.598667pt;}
.y1e5{bottom:209.732000pt;}
.yac{bottom:210.198667pt;}
.yad{bottom:211.800000pt;}
.y295{bottom:214.598667pt;}
.y21b{bottom:216.800000pt;}
.y21c{bottom:217.133333pt;}
.y255{bottom:217.265333pt;}
.y13e{bottom:217.333333pt;}
.y21d{bottom:217.398667pt;}
.y4a{bottom:218.865333pt;}
.y2cd{bottom:220.133333pt;}
.y49{bottom:221.065333pt;}
.ye9{bottom:221.398667pt;}
.y48{bottom:221.732000pt;}
.y1a2{bottom:222.265333pt;}
.y1e3{bottom:224.132000pt;}
.y1e4{bottom:224.465333pt;}
.y47{bottom:224.865333pt;}
.y1e2{bottom:225.132000pt;}
.yab{bottom:225.532000pt;}
.y294{bottom:230.000000pt;}
.y21a{bottom:231.865333pt;}
.y46{bottom:232.265333pt;}
.y45{bottom:232.666667pt;}
.y13d{bottom:233.065333pt;}
.y254{bottom:234.865333pt;}
.y44{bottom:235.198667pt;}
.y1a1{bottom:237.333333pt;}
.ye8{bottom:238.333333pt;}
.y1e1{bottom:239.532000pt;}
.yaa{bottom:240.265333pt;}
.y293{bottom:243.065333pt;}
.y292{bottom:244.732000pt;}
.y138{bottom:246.132000pt;}
.y139{bottom:246.465333pt;}
.y219{bottom:247.198667pt;}
.y13a{bottom:247.732000pt;}
.y43{bottom:249.598667pt;}
.y13b{bottom:249.666667pt;}
.ye7{bottom:249.865333pt;}
.y2cc{bottom:249.932000pt;}
.y13c{bottom:250.000000pt;}
.ye6{bottom:250.798667pt;}
.y1a0{bottom:251.065333pt;}
.y19f{bottom:251.398667pt;}
.y19e{bottom:252.065333pt;}
.ye5{bottom:252.465333pt;}
.y1e0{bottom:254.598667pt;}
.ya9{bottom:255.666667pt;}
.y291{bottom:259.732000pt;}
.y290{bottom:261.000000pt;}
.y218{bottom:261.932000pt;}
.y137{bottom:263.132000pt;}
.y2cb{bottom:265.265333pt;}
.y19d{bottom:265.798667pt;}
.y19c{bottom:266.398667pt;}
.y42{bottom:267.198667pt;}
.y19b{bottom:267.398667pt;}
.ye4{bottom:268.398667pt;}
.y1df{bottom:269.598667pt;}
.y1dd{bottom:269.932000pt;}
.y253{bottom:270.132000pt;}
.y1de{bottom:270.198667pt;}
.ya8{bottom:270.333333pt;}
.y28f{bottom:273.132000pt;}
.y28e{bottom:274.465333pt;}
.y28d{bottom:275.732000pt;}
.y217{bottom:277.000000pt;}
.y136{bottom:278.132000pt;}
.y41{bottom:280.000000pt;}
.y2ca{bottom:280.333333pt;}
.y19a{bottom:281.198667pt;}
.ye3{bottom:281.598667pt;}
.y199{bottom:281.798667pt;}
.y198{bottom:282.465333pt;}
.ye2{bottom:283.798667pt;}
.ye1{bottom:284.132000pt;}
.y1dc{bottom:285.000000pt;}
.ya7{bottom:285.732000pt;}
.y252{bottom:288.333333pt;}
.y28c{bottom:290.465333pt;}
.y216{bottom:291.666667pt;}
.y133{bottom:292.532000pt;}
.y134{bottom:293.798667pt;}
.y40{bottom:294.732000pt;}
.y135{bottom:294.798667pt;}
.y2c9{bottom:295.333333pt;}
.y197{bottom:296.532000pt;}
.ye0{bottom:296.598667pt;}
.y196{bottom:297.465333pt;}
.y195{bottom:297.532000pt;}
.ydf{bottom:298.798667pt;}
.y1db{bottom:299.398667pt;}
.ya6{bottom:300.732000pt;}
.y28b{bottom:303.198667pt;}
.y28a{bottom:303.265333pt;}
.y289{bottom:304.532000pt;}
.y288{bottom:305.532000pt;}
.y251{bottom:306.532000pt;}
.y215{bottom:307.065333pt;}
.y3f{bottom:308.132000pt;}
.y132{bottom:308.198667pt;}
.y3e{bottom:309.465333pt;}
.y2c8{bottom:310.398667pt;}
.y194{bottom:310.598667pt;}
.y193{bottom:310.932000pt;}
.y3d{bottom:311.000000pt;}
.y192{bottom:311.865333pt;}
.y191{bottom:312.198667pt;}
.y3c{bottom:312.333333pt;}
.y190{bottom:312.532000pt;}
.y3b{bottom:312.932000pt;}
.y1da{bottom:314.398667pt;}
.y1d9{bottom:314.666667pt;}
.ya5{bottom:315.465333pt;}
.y287{bottom:318.265333pt;}
.y286{bottom:319.532000pt;}
.y285{bottom:320.865333pt;}
.y213{bottom:321.732000pt;}
.y212{bottom:321.798667pt;}
.y3a{bottom:321.932000pt;}
.y214{bottom:322.065333pt;}
.y39{bottom:322.532000pt;}
.y131{bottom:323.265333pt;}
.y250{bottom:325.132000pt;}
.y38{bottom:325.398667pt;}
.y18f{bottom:325.932000pt;}
.y18e{bottom:326.598667pt;}
.yde{bottom:326.666667pt;}
.y18d{bottom:327.265333pt;}
.y1d8{bottom:329.398667pt;}
.y1d7{bottom:329.732000pt;}
.y1d6{bottom:329.798667pt;}
.ya4{bottom:330.865333pt;}
.y211{bottom:336.798667pt;}
.y130{bottom:337.333333pt;}
.y2c6{bottom:340.132000pt;}
.y2c7{bottom:340.465333pt;}
.y18c{bottom:341.000000pt;}
.ydd{bottom:341.398667pt;}
.y18b{bottom:341.598667pt;}
.y18a{bottom:342.000000pt;}
.y24f{bottom:342.065333pt;}
.y37{bottom:342.732000pt;}
.y36{bottom:343.398667pt;}
.ydc{bottom:343.932000pt;}
.ya2{bottom:345.198667pt;}
.ya3{bottom:345.865333pt;}
.y20f{bottom:351.798667pt;}
.y210{bottom:351.865333pt;}
.y35{bottom:352.333333pt;}
.y34{bottom:352.932000pt;}
.y12f{bottom:353.065333pt;}
.y33{bottom:353.265333pt;}
.y32{bottom:353.932000pt;}
.y31{bottom:354.532000pt;}
.y2f{bottom:354.598667pt;}
.y2c5{bottom:355.198667pt;}
.y189{bottom:356.666667pt;}
.y2e{bottom:356.798667pt;}
.ydb{bottom:357.398667pt;}
.y30{bottom:357.732000pt;}
.y24e{bottom:360.000000pt;}
.y24d{bottom:360.598667pt;}
.ya1{bottom:361.865333pt;}
.y20e{bottom:366.865333pt;}
.y2d{bottom:367.000000pt;}
.y2c{bottom:367.666667pt;}
.y12e{bottom:368.065333pt;}
.y2b{bottom:368.333333pt;}
.y284{bottom:369.198667pt;}
.y2a{bottom:369.265333pt;}
.y2c3{bottom:370.198667pt;}
.y2c4{bottom:370.532000pt;}
.y188{bottom:370.732000pt;}
.y187{bottom:371.398667pt;}
.yda{bottom:371.465333pt;}
.y29{bottom:371.798667pt;}
.y186{bottom:372.000000pt;}
.y1d5{bottom:372.333333pt;}
.ya0{bottom:377.198667pt;}
.y24c{bottom:378.198667pt;}
.y24b{bottom:378.865333pt;}
.y20d{bottom:381.598667pt;}
.y28{bottom:383.065333pt;}
.y12c{bottom:385.000000pt;}
.y27{bottom:385.265333pt;}
.y12d{bottom:385.598667pt;}
.y26{bottom:386.265333pt;}
.y185{bottom:386.465333pt;}
.y283{bottom:387.065333pt;}
.y25{bottom:387.532000pt;}
.yd9{bottom:388.798667pt;}
.y1d4{bottom:389.598667pt;}
.y1d3{bottom:390.865333pt;}
.y9f{bottom:392.265333pt;}
.y12b{bottom:396.532000pt;}
.y20c{bottom:396.666667pt;}
.y2c1{bottom:399.666667pt;}
.y24{bottom:400.000000pt;}
.y2c2{bottom:400.598667pt;}
.yd8{bottom:401.265333pt;}
.y184{bottom:401.465333pt;}
.y282{bottom:402.798667pt;}
.yd7{bottom:403.465333pt;}
.y281{bottom:403.666667pt;}
.yd6{bottom:404.065333pt;}
.y280{bottom:405.333333pt;}
.y9e{bottom:406.666667pt;}
.y24a{bottom:409.598667pt;}
.y20b{bottom:411.666667pt;}
.y12a{bottom:413.198667pt;}
.y183{bottom:415.265333pt;}
.y2c0{bottom:415.398667pt;}
.y182{bottom:415.532000pt;}
.y181{bottom:416.532000pt;}
.yd5{bottom:416.598667pt;}
.y23{bottom:417.265333pt;}
.y1d2{bottom:417.465333pt;}
.y22{bottom:417.865333pt;}
.y21{bottom:418.198667pt;}
.y9c{bottom:421.732000pt;}
.y9d{bottom:423.000000pt;}
.y27f{bottom:423.598667pt;}
.y129{bottom:428.265333pt;}
.y20{bottom:430.065333pt;}
.y2bf{bottom:430.398667pt;}
.y180{bottom:431.198667pt;}
.yd4{bottom:432.265333pt;}
.yd3{bottom:434.198667pt;}
.y9b{bottom:437.398667pt;}
.y249{bottom:439.398667pt;}
.y27e{bottom:440.198667pt;}
.y126{bottom:442.333333pt;}
.y1f{bottom:443.198667pt;}
.y127{bottom:444.198667pt;}
.y1d1{bottom:444.598667pt;}
.y128{bottom:445.465333pt;}
.y17f{bottom:446.000000pt;}
.y17e{bottom:447.198667pt;}
.y99{bottom:451.732000pt;}
.y98{bottom:451.798667pt;}
.y9a{bottom:452.732000pt;}
.y20a{bottom:454.265333pt;}
.y125{bottom:456.333333pt;}
.y248{bottom:457.865333pt;}
.y27d{bottom:458.132000pt;}
.y1e{bottom:458.598667pt;}
.y17d{bottom:461.065333pt;}
.y1d0{bottom:461.932000pt;}
.y93{bottom:466.465333pt;}
.y94{bottom:466.532000pt;}
.y95{bottom:467.465333pt;}
.y96{bottom:467.732000pt;}
.y97{bottom:468.465333pt;}
.y1d{bottom:470.732000pt;}
.y1c{bottom:471.065333pt;}
.y209{bottom:472.132000pt;}
.y1b{bottom:473.598667pt;}
.y124{bottom:473.666667pt;}
.y247{bottom:474.865333pt;}
.y27c{bottom:475.398667pt;}
.y17c{bottom:476.000000pt;}
.y1cf{bottom:480.132000pt;}
.yd2{bottom:481.865333pt;}
.y90{bottom:482.198667pt;}
.y91{bottom:484.065333pt;}
.y92{bottom:484.398667pt;}
.y123{bottom:487.132000pt;}
.y208{bottom:490.065333pt;}
.y17b{bottom:490.798667pt;}
.y246{bottom:491.198667pt;}
.y245{bottom:492.798667pt;}
.y27b{bottom:493.333333pt;}
.yd1{bottom:496.932000pt;}
.y8e{bottom:497.265333pt;}
.y8f{bottom:498.798667pt;}
.yd0{bottom:499.465333pt;}
.ycf{bottom:500.132000pt;}
.y120{bottom:500.532000pt;}
.y121{bottom:501.198667pt;}
.y122{bottom:503.400000pt;}
.y17a{bottom:505.798667pt;}
.y207{bottom:507.333333pt;}
.y206{bottom:507.666667pt;}
.y1a{bottom:508.465333pt;}
.y27a{bottom:510.000000pt;}
.y2be{bottom:510.066667pt;}
.y1ce{bottom:510.265333pt;}
.y244{bottom:510.400000pt;}
.y8d{bottom:512.532000pt;}
.y279{bottom:512.798667pt;}
.y278{bottom:513.465333pt;}
.y11d{bottom:517.798667pt;}
.y179{bottom:520.265333pt;}
.y11e{bottom:520.400000pt;}
.y11f{bottom:520.733333pt;}
.y178{bottom:521.465333pt;}
.y177{bottom:521.798667pt;}
.y8c{bottom:527.333333pt;}
.y277{bottom:528.198667pt;}
.y243{bottom:528.598667pt;}
.yce{bottom:529.865333pt;}
.y276{bottom:530.798667pt;}
.y11a{bottom:531.932000pt;}
.y11b{bottom:533.198667pt;}
.y205{bottom:534.598667pt;}
.y11c{bottom:534.798667pt;}
.y176{bottom:535.598667pt;}
.y2bd{bottom:540.132000pt;}
.y1cd{bottom:540.598667pt;}
.y8b{bottom:542.666667pt;}
.y242{bottom:544.932000pt;}
.y241{bottom:545.865333pt;}
.y115{bottom:545.932000pt;}
.y116{bottom:546.598667pt;}
.y240{bottom:546.865333pt;}
.y117{bottom:547.265333pt;}
.y275{bottom:548.066667pt;}
.y118{bottom:548.532000pt;}
.y119{bottom:549.798667pt;}
.y19{bottom:550.132000pt;}
.y175{bottom:550.598667pt;}
.y8a{bottom:557.400000pt;}
.y2bc{bottom:557.733333pt;}
.y2bb{bottom:557.798667pt;}
.y2ba{bottom:558.066667pt;}
.y1cc{bottom:558.198667pt;}
.ycd{bottom:560.265333pt;}
.y204{bottom:561.733333pt;}
.y114{bottom:563.532000pt;}
.y23f{bottom:563.800000pt;}
.y274{bottom:564.398667pt;}
.y174{bottom:565.000000pt;}
.y173{bottom:565.598667pt;}
.y172{bottom:566.265333pt;}
.y88{bottom:572.466667pt;}
.y89{bottom:574.065333pt;}
.ycc{bottom:574.333333pt;}
.y2b9{bottom:576.000000pt;}
.ycb{bottom:577.265333pt;}
.yca{bottom:577.865333pt;}
.y113{bottom:578.265333pt;}
.y203{bottom:579.333333pt;}
.y171{bottom:580.666667pt;}
.y23e{bottom:581.398667pt;}
.y273{bottom:581.666667pt;}
.y18{bottom:582.398667pt;}
.y86{bottom:586.466667pt;}
.y87{bottom:587.133333pt;}
.y1cb{bottom:588.333333pt;}
.y110{bottom:592.333333pt;}
.y2b8{bottom:593.598667pt;}
.y111{bottom:594.265333pt;}
.y112{bottom:594.932000pt;}
.y170{bottom:595.065333pt;}
.y16f{bottom:595.398667pt;}
.y16e{bottom:595.732000pt;}
.y16d{bottom:596.065333pt;}
.y202{bottom:596.932000pt;}
.y23d{bottom:599.000000pt;}
.y272{bottom:599.598667pt;}
.y85{bottom:602.532000pt;}
.y17{bottom:606.065333pt;}
.yc9{bottom:606.666667pt;}
.yc8{bottom:607.666667pt;}
.y10d{bottom:608.000000pt;}
.y10e{bottom:609.598667pt;}
.y10f{bottom:610.333333pt;}
.y16c{bottom:610.732000pt;}
.y2b7{bottom:612.800000pt;}
.y1c8{bottom:615.865333pt;}
.y271{bottom:617.133333pt;}
.y23c{bottom:617.333333pt;}
.y84{bottom:617.532000pt;}
.y1ca{bottom:618.398667pt;}
.y1c9{bottom:618.666667pt;}
.y270{bottom:619.932000pt;}
.y16{bottom:620.133333pt;}
.y26f{bottom:620.666667pt;}
.y201{bottom:623.865333pt;}
.y16b{bottom:626.133333pt;}
.y16a{bottom:626.398667pt;}
.y169{bottom:626.466667pt;}
.y2b6{bottom:630.732000pt;}
.y7e{bottom:631.666667pt;}
.y7f{bottom:632.532000pt;}
.y80{bottom:632.932000pt;}
.y81{bottom:633.198667pt;}
.y82{bottom:633.532000pt;}
.y83{bottom:633.865333pt;}
.y26e{bottom:634.800000pt;}
.y23b{bottom:635.198667pt;}
.yc7{bottom:635.466667pt;}
.y1c7{bottom:636.598667pt;}
.yc6{bottom:637.065333pt;}
.y1c6{bottom:637.932000pt;}
.y168{bottom:639.865333pt;}
.y167{bottom:640.532000pt;}
.y166{bottom:641.133333pt;}
.y7d{bottom:647.333333pt;}
.y2b5{bottom:648.000000pt;}
.y2b4{bottom:648.333333pt;}
.y2b3{bottom:648.598667pt;}
.y200{bottom:651.000000pt;}
.y10c{bottom:651.598667pt;}
.yc5{bottom:651.800000pt;}
.y26d{bottom:652.666667pt;}
.y23a{bottom:652.800000pt;}
.yc3{bottom:654.000000pt;}
.yc4{bottom:654.065333pt;}
.yc2{bottom:654.333333pt;}
.y1c5{bottom:654.532000pt;}
.y239{bottom:654.732000pt;}
.yc1{bottom:655.333333pt;}
.y7c{bottom:662.333333pt;}
.y2b2{bottom:665.932000pt;}
.y1ff{bottom:668.666667pt;}
.y105{bottom:669.800000pt;}
.y106{bottom:670.466667pt;}
.y107{bottom:671.065333pt;}
.y238{bottom:671.333333pt;}
.y108{bottom:671.398667pt;}
.y109{bottom:672.065333pt;}
.y26c{bottom:672.532000pt;}
.y10a{bottom:672.666667pt;}
.y10b{bottom:673.333333pt;}
.y7b{bottom:677.398667pt;}
.y15{bottom:678.398667pt;}
.y14{bottom:679.065333pt;}
.y12{bottom:681.000000pt;}
.y11{bottom:682.265333pt;}
.y165{bottom:682.732000pt;}
.y10{bottom:683.198667pt;}
.yf{bottom:683.532000pt;}
.y2b1{bottom:683.865333pt;}
.y164{bottom:684.000000pt;}
.y163{bottom:684.333333pt;}
.y162{bottom:684.398667pt;}
.y1c4{bottom:685.266667pt;}
.yc0{bottom:685.398667pt;}
.y1fe{bottom:685.933333pt;}
.yd{bottom:686.065333pt;}
.y237{bottom:686.732000pt;}
.y1fd{bottom:686.865333pt;}
.y1fc{bottom:687.198667pt;}
.y26b{bottom:687.865333pt;}
.y236{bottom:689.933333pt;}
.y235{bottom:690.532000pt;}
.y13{bottom:691.198667pt;}
.y7a{bottom:693.732000pt;}
.ye{bottom:695.398667pt;}
.y104{bottom:699.266667pt;}
.y161{bottom:700.666667pt;}
.y160{bottom:701.666667pt;}
.y15f{bottom:701.933333pt;}
.y26a{bottom:702.933333pt;}
.y1fb{bottom:703.865333pt;}
.y269{bottom:704.198667pt;}
.y268{bottom:704.865333pt;}
.y75{bottom:706.800000pt;}
.y234{bottom:706.865333pt;}
.y267{bottom:707.065333pt;}
.y76{bottom:707.133333pt;}
.y77{bottom:707.198667pt;}
.y78{bottom:707.800000pt;}
.y79{bottom:708.732000pt;}
.y2b0{bottom:714.266667pt;}
.ybf{bottom:714.532000pt;}
.y1c3{bottom:715.333333pt;}
.y1fa{bottom:721.133333pt;}
.y72{bottom:722.532000pt;}
.y73{bottom:723.133333pt;}
.y74{bottom:724.133333pt;}
.y233{bottom:724.466667pt;}
.y266{bottom:727.198667pt;}
.yc{bottom:728.666667pt;}
.ybe{bottom:729.198667pt;}
.yb{bottom:729.933333pt;}
.ya{bottom:730.600000pt;}
.y9{bottom:730.933333pt;}
.y15e{bottom:731.732000pt;}
.ybd{bottom:731.800000pt;}
.y1c2{bottom:732.333333pt;}
.ybc{bottom:732.732000pt;}
.y1c0{bottom:733.266667pt;}
.y1c1{bottom:733.600000pt;}
.y70{bottom:737.198667pt;}
.y71{bottom:738.865333pt;}
.y1f9{bottom:739.333333pt;}
.y265{bottom:741.333333pt;}
.y2af{bottom:744.333333pt;}
.y101{bottom:747.600000pt;}
.y8{bottom:748.198667pt;}
.y102{bottom:748.532000pt;}
.y103{bottom:748.865333pt;}
.y7{bottom:749.133333pt;}
.y1bf{bottom:749.933333pt;}
.y6{bottom:750.732000pt;}
.y6f{bottom:751.933333pt;}
.y5{bottom:752.266667pt;}
.y232{bottom:755.532000pt;}
.y1f8{bottom:756.933333pt;}
.y264{bottom:758.600000pt;}
.y15d{bottom:760.532000pt;}
.ybb{bottom:760.933333pt;}
.y15c{bottom:761.466667pt;}
.y15b{bottom:761.800000pt;}
.y2ae{bottom:761.933333pt;}
.y15a{bottom:762.133333pt;}
.y263{bottom:762.466667pt;}
.yba{bottom:762.532000pt;}
.y262{bottom:763.065333pt;}
.y6a{bottom:767.266667pt;}
.y6b{bottom:767.933333pt;}
.y6c{bottom:768.933333pt;}
.y6d{bottom:769.865333pt;}
.y6e{bottom:770.198667pt;}
.y1f7{bottom:774.266667pt;}
.y100{bottom:776.666667pt;}
.y159{bottom:776.800000pt;}
.y4{bottom:776.933333pt;}
.y158{bottom:777.198667pt;}
.y157{bottom:778.732000pt;}
.y156{bottom:779.398667pt;}
.y155{bottom:779.732000pt;}
.y2ad{bottom:779.865333pt;}
.y1be{bottom:780.666667pt;}
.y3{bottom:781.065333pt;}
.y67{bottom:783.000000pt;}
.y68{bottom:784.532000pt;}
.y69{bottom:784.933333pt;}
.y231{bottom:785.600000pt;}
.y261{bottom:791.532000pt;}
.y260{bottom:793.198667pt;}
.y66{bottom:796.732000pt;}
.y230{bottom:799.333333pt;}
.y22f{bottom:799.666667pt;}
.y1f6{bottom:802.065333pt;}
.y22e{bottom:802.198667pt;}
.y2{bottom:808.666667pt;}
.y154{bottom:809.532000pt;}
.y2ac{bottom:810.266667pt;}
.y2ab{bottom:810.600000pt;}
.y65{bottom:813.065333pt;}
.y1bc{bottom:828.600000pt;}
.y1bd{bottom:828.666667pt;}
.y1{bottom:832.333333pt;}
.y1f5{bottom:835.065333pt;}
.y25f{bottom:835.133333pt;}
.y22d{bottom:835.800000pt;}
.yfe{bottom:836.532000pt;}
.yff{bottom:836.865333pt;}
.y153{bottom:842.133333pt;}
.y2aa{bottom:843.466667pt;}
.y2a9{bottom:843.532000pt;}
.y64{bottom:844.133333pt;}
.ha{height:31.406250pt;}
.h14{height:36.622396pt;}
.h15{height:37.625000pt;}
.hf{height:38.937500pt;}
.h12{height:41.854167pt;}
.h18{height:41.875000pt;}
.hd{height:47.085938pt;}
.h2{height:47.109375pt;}
.h13{height:48.375000pt;}
.h6{height:50.062500pt;}
.h10{height:52.317708pt;}
.h8{height:52.343750pt;}
.h17{height:53.750000pt;}
.hb{height:55.625000pt;}
.h1e{height:56.216146pt;}
.he{height:57.549479pt;}
.h5{height:57.578125pt;}
.h1d{height:59.125000pt;}
.h21{height:62.781250pt;}
.h4{height:62.812500pt;}
.hc{height:64.500000pt;}
.h7{height:68.046875pt;}
.h20{height:73.244792pt;}
.h3{height:83.750000pt;}
.h9{height:150.500000pt;}
.h1{height:161.312500pt;}
.h1a{height:892.000000pt;}
.h1f{height:893.333333pt;}
.h1c{height:904.000000pt;}
.h16{height:905.333333pt;}
.h1b{height:908.000000pt;}
.h11{height:910.666667pt;}
.h0{height:912.000000pt;}
.h19{height:917.333333pt;}
.w7{width:569.333333pt;}
.w3{width:586.666667pt;}
.w6{width:590.666667pt;}
.w1{width:593.333333pt;}
.w5{width:601.333333pt;}
.w0{width:604.000000pt;}
.w4{width:613.333333pt;}
.w2{width:616.000000pt;}
.x0{left:0.000000pt;}
.xd7{left:42.533333pt;}
.xd2{left:44.133333pt;}
.xd6{left:45.466667pt;}
.xbc{left:48.000000pt;}
.xaf{left:48.933333pt;}
.x89{left:50.266667pt;}
.x7e{left:51.200000pt;}
.x77{left:52.466667pt;}
.x47{left:54.066667pt;}
.x34{left:55.066667pt;}
.x2a{left:56.333333pt;}
.x1e{left:57.266667pt;}
.xe1{left:58.266667pt;}
.x19{left:59.533333pt;}
.x3{left:62.066667pt;}
.xf0{left:63.066667pt;}
.xd{left:66.266667pt;}
.xb0{left:67.200000pt;}
.xd3{left:68.466667pt;}
.x45{left:70.400000pt;}
.xc3{left:71.333333pt;}
.x7a{left:72.333333pt;}
.xec{left:73.266667pt;}
.x83{left:74.266667pt;}
.x7b{left:75.200000pt;}
.x49{left:76.466667pt;}
.x50{left:77.466667pt;}
.x2f{left:78.400000pt;}
.x35{left:79.666667pt;}
.x21{left:80.933333pt;}
.x9d{left:81.933333pt;}
.x1b{left:82.866667pt;}
.xa6{left:84.133333pt;}
.x7d{left:85.466667pt;}
.xd0{left:86.398667pt;}
.xcd{left:87.333333pt;}
.xc6{left:88.333333pt;}
.x16{left:90.266667pt;}
.xd8{left:91.200000pt;}
.x3e{left:92.133333pt;}
.xa7{left:93.466667pt;}
.xe6{left:94.732000pt;}
.x1f{left:95.666667pt;}
.xf2{left:96.666667pt;}
.x99{left:97.600000pt;}
.x7c{left:99.200000pt;}
.x4a{left:100.800000pt;}
.x5c{left:101.732000pt;}
.x66{left:102.733333pt;}
.x68{left:104.000000pt;}
.x9c{left:104.933333pt;}
.x67{left:105.933333pt;}
.x37{left:107.533333pt;}
.x5d{left:110.066667pt;}
.x46{left:111.066667pt;}
.x20{left:112.000000pt;}
.xa2{left:113.266667pt;}
.x52{left:115.533333pt;}
.xfa{left:116.800000pt;}
.xad{left:117.733333pt;}
.x84{left:118.733333pt;}
.xf3{left:120.000000pt;}
.x98{left:120.933333pt;}
.xf4{left:121.933333pt;}
.xc0{left:123.200000pt;}
.x63{left:124.133333pt;}
.xe7{left:125.133333pt;}
.xe{left:127.066667pt;}
.xe8{left:128.000000pt;}
.x5{left:128.933333pt;}
.xd4{left:130.533333pt;}
.x53{left:131.533333pt;}
.x78{left:134.066667pt;}
.xcb{left:135.066667pt;}
.xdc{left:136.933333pt;}
.xca{left:138.266667pt;}
.xc9{left:139.533333pt;}
.x22{left:140.466667pt;}
.x79{left:144.333333pt;}
.xdd{left:147.533333pt;}
.xb3{left:149.466667pt;}
.x81{left:151.333333pt;}
.x85{left:153.600000pt;}
.xba{left:157.466667pt;}
.xc7{left:158.733333pt;}
.xb4{left:160.000000pt;}
.xc8{left:160.933333pt;}
.x38{left:161.933333pt;}
.x64{left:164.133333pt;}
.xaa{left:165.466667pt;}
.xbb{left:167.333333pt;}
.x1a{left:168.333333pt;}
.x93{left:169.266667pt;}
.x74{left:171.866667pt;}
.x54{left:173.132000pt;}
.x75{left:175.333333pt;}
.x6f{left:177.600000pt;}
.x62{left:180.132000pt;}
.x4{left:182.066667pt;}
.x39{left:183.666667pt;}
.xc4{left:184.666667pt;}
.xab{left:186.533333pt;}
.x55{left:188.132000pt;}
.xc5{left:189.132000pt;}
.xae{left:190.400000pt;}
.xa1{left:191.666667pt;}
.xa8{left:193.266667pt;}
.xcc{left:194.533333pt;}
.x73{left:197.465333pt;}
.xc2{left:199.666667pt;}
.x1{left:202.533333pt;}
.x23{left:204.800000pt;}
.x94{left:206.066667pt;}
.x9{left:207.066667pt;}
.x76{left:208.333333pt;}
.x8b{left:209.933333pt;}
.xac{left:212.133333pt;}
.x51{left:214.066667pt;}
.xb8{left:215.066667pt;}
.xa9{left:216.333333pt;}
.x6e{left:217.266667pt;}
.xf{left:220.800000pt;}
.xe0{left:221.733333pt;}
.x10{left:225.266667pt;}
.x70{left:229.466667pt;}
.xf5{left:231.333333pt;}
.x11{left:233.600000pt;}
.x6{left:236.466667pt;}
.xc1{left:238.066667pt;}
.x4d{left:240.000000pt;}
.xa{left:242.533333pt;}
.xb{left:245.733333pt;}
.x24{left:247.333333pt;}
.x71{left:250.266667pt;}
.x18{left:251.533333pt;}
.x25{left:252.800000pt;}
.x7{left:256.333333pt;}
.x65{left:257.933333pt;}
.xb1{left:259.200000pt;}
.xd1{left:264.666667pt;}
.x3f{left:266.266667pt;}
.x86{left:268.133333pt;}
.xf6{left:269.133333pt;}
.x2{left:270.733333pt;}
.x56{left:273.266667pt;}
.x48{left:274.533333pt;}
.x17{left:280.333333pt;}
.x26{left:282.266667pt;}
.x2b{left:283.200000pt;}
.xd9{left:285.133333pt;}
.x27{left:287.666667pt;}
.x8c{left:288.933333pt;}
.x6a{left:292.133333pt;}
.xe3{left:293.466667pt;}
.x2c{left:295.666667pt;}
.x8a{left:297.266667pt;}
.xc{left:298.266667pt;}
.xf7{left:299.533333pt;}
.xb5{left:301.466667pt;}
.x43{left:302.400000pt;}
.x72{left:304.666667pt;}
.xa5{left:306.266667pt;}
.x32{left:309.466667pt;}
.xb2{left:313.600000pt;}
.xf1{left:317.466667pt;}
.xb6{left:321.600000pt;}
.xbf{left:323.200000pt;}
.x3a{left:324.466667pt;}
.xbd{left:325.466667pt;}
.x33{left:330.866667pt;}
.xb7{left:332.133333pt;}
.x82{left:334.733333pt;}
.xbe{left:335.666667pt;}
.x57{left:340.466667pt;}
.x12{left:345.265333pt;}
.x6b{left:347.866667pt;}
.xe4{left:349.466667pt;}
.xda{left:354.265333pt;}
.x8{left:361.598667pt;}
.x9e{left:368.666667pt;}
.xe9{left:369.932000pt;}
.x7f{left:373.466667pt;}
.x95{left:375.066667pt;}
.x91{left:378.533333pt;}
.x13{left:379.866667pt;}
.x80{left:382.733333pt;}
.x8d{left:385.265333pt;}
.x40{left:387.533333pt;}
.x3b{left:388.800000pt;}
.xf9{left:391.333333pt;}
.x41{left:393.265333pt;}
.x92{left:396.800000pt;}
.x6c{left:400.333333pt;}
.x87{left:403.533333pt;}
.xe5{left:408.666667pt;}
.xee{left:410.266667pt;}
.x58{left:411.533333pt;}
.x28{left:412.800000pt;}
.x42{left:416.666667pt;}
.x2d{left:418.533333pt;}
.xde{left:421.733333pt;}
.x88{left:422.733333pt;}
.x4b{left:424.333333pt;}
.x9a{left:425.266667pt;}
.x69{left:427.533333pt;}
.x1c{left:429.466667pt;}
.x9f{left:430.400000pt;}
.x8e{left:431.666667pt;}
.xce{left:432.933333pt;}
.x2e{left:434.266667pt;}
.xdb{left:435.866667pt;}
.x30{left:438.733333pt;}
.xb9{left:440.000000pt;}
.xa0{left:440.933333pt;}
.xcf{left:443.533333pt;}
.x59{left:448.000000pt;}
.xd5{left:451.533333pt;}
.xeb{left:454.066667pt;}
.x14{left:457.600000pt;}
.x8f{left:459.533333pt;}
.xf8{left:460.466667pt;}
.x90{left:462.400000pt;}
.x5a{left:464.000000pt;}
.x9b{left:470.400000pt;}
.x5f{left:472.000000pt;}
.x36{left:473.600000pt;}
.x96{left:475.200000pt;}
.x29{left:476.466667pt;}
.x3c{left:479.066667pt;}
.x6d{left:480.333333pt;}
.xdf{left:481.600000pt;}
.x1d{left:482.866667pt;}
.xa3{left:483.866667pt;}
.x4c{left:485.133333pt;}
.xea{left:489.266667pt;}
.x44{left:492.466667pt;}
.x31{left:495.333333pt;}
.xa4{left:496.333333pt;}
.x4e{left:497.600000pt;}
.x5b{left:499.866667pt;}
.xed{left:502.066667pt;}
.x15{left:508.133333pt;}
.xe2{left:510.733333pt;}
.x97{left:512.000000pt;}
.xef{left:513.600000pt;}
.x3d{left:515.200000pt;}
.x5e{left:529.266667pt;}
.x61{left:530.266667pt;}
.x60{left:531.866667pt;}
.x4f{left:532.800000pt;}
}




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