
    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_558374977972d11dc775d51b.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_d8f2c08fc0d3f3d8e8e58b02.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_0d95c6ea15458202025f2939.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.435059;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_29993c05e7ea5819c4921aca.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_641948300e328b7f4638ccb1.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_95e38de889c6ffbd1cfb8f76.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_ea318db4dce32a7d63c05182.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_217454e8c03685bd67a916ea.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_c24e3b6dee2c85f35709c516.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_b337886f6c75e14e8f8bbdab.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_128a2db9f125162a2802f78c.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_ad56789f1058b4eb57d4dc53.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_80e0721422e617d62434bad4.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_e1133573aaa50f84bac0b775.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_af7b2640f2a6a0f100d1193b.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_85bc3b73c9e323fdae88f396.woff2')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_e97934c7b699d1ecb543eec0.woff2')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_da17cb97527879ba91b32ca9.woff2')format("woff");}.ff12{font-family:ff12;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:ff13;src:url('chunks/assets/font_a782e0ffef2319c31ff12e41.woff2')format("woff");}.ff13{font-family:ff13;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:ff14;src:url('chunks/assets/font_a61435acd0c6e62d44b841de.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_c1f6123625f00e9fadf0db2d.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_18b1b0e4cbf5d2298d5e6e7b.woff2')format("woff");}.ff16{font-family:ff16;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:ff17;src:url('chunks/assets/font_2ed9e4f5f219b88c1b85f8d7.woff2')format("woff");}.ff17{font-family:ff17;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url('chunks/assets/font_e6b7b36fbea969f73dcf8812.woff2')format("woff");}.ff18{font-family:ff18;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19;src:url('chunks/assets/font_c7252a781febca9ea7bf32ea.woff2')format("woff");}.ff19{font-family:ff19;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:ff1a;src:url('chunks/assets/font_7aeffd51f18a910fa2da9ae8.woff2')format("woff");}.ff1a{font-family:ff1a;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:ff1b;src:url('chunks/assets/font_a3cc5e3cdb5626b9e8e1e65d.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_406edfa614ce24305fe2582a.woff2')format("woff");}.ff1c{font-family:ff1c;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:ff1d;src:url('chunks/assets/font_661880d93206520e03915d00.woff2')format("woff");}.ff1d{font-family:ff1d;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:ff1e;src:url('chunks/assets/font_d1df8b69f5b9fb2d1c89e9ca.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_b2d9c0b203b1ef90430e06d6.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_f8e311d584d98eb8ebd28d46.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;}
.m66{transform:matrix(0.030000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.030000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.030000,0.000000,0.000000,0.250000,0,0);}
.m50{transform:matrix(0.057500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.057500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.057500,0.000000,0.000000,0.250000,0,0);}
.m6b{transform:matrix(0.067500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.067500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.067500,0.000000,0.000000,0.250000,0,0);}
.m4b{transform:matrix(0.085000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.085000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.085000,0.000000,0.000000,0.250000,0,0);}
.m5b{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);}
.m6c{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);}
.m30{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);}
.m67{transform:matrix(0.117500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.117500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.117500,0.000000,0.000000,0.250000,0,0);}
.m6f{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m36{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);}
.m58{transform:matrix(0.142500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142500,0.000000,0.000000,0.250000,0,0);}
.m54{transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);}
.m5a{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m0{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);}
.m46{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m4d{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);}
.m6d{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);}
.m4a{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.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);}
.m5d{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);}
.m6a{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);}
.m43{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);}
.m3a{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);}
.m62{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);}
.m3e{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);}
.m19{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);}
.m2{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);}
.m22{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);}
.m4{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);}
.m1{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);}
.m1c{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);}
.m3{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);}
.m14{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);}
.m11{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);}
.m18{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);}
.m10{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);}
.m12{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);}
.m17{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);}
.m5{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);}
.m16{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);}
.m3d{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);}
.m35{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);}
.m33{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);}
.m21{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);}
.m29{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);}
.ma{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);}
.mc{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);}
.m1b{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);}
.m1e{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);}
.me{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);}
.m44{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);}
.m9{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);}
.m34{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);}
.m31{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);}
.m1f{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);}
.m1d{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);}
.m41{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);}
.m39{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);}
.m42{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);}
.m48{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);}
.m8{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);}
.m27{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);}
.m20{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);}
.m13{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);}
.m6{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);}
.m4c{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);}
.md{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);}
.m2f{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);}
.m2e{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);}
.m52{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);}
.m55{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);}
.m28{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);}
.m2c{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);}
.m61{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);}
.m3c{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);}
.m25{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);}
.m26{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);}
.m45{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m49{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);}
.m53{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);}
.m5c{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m63{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m40{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m4f{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m56{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);}
.m2b{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);}
.m60{transform:matrix(0.590000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590000,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);}
.m59{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);}
.mf{transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);}
.m24{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);}
.m5e{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);}
.m3f{transform:matrix(0.647500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.647500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.647500,0.000000,0.000000,0.250000,0,0);}
.m2d{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);}
.m38{transform:matrix(0.675000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.675000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.675000,0.000000,0.000000,0.250000,0,0);}
.m6e{transform:matrix(0.772500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.772500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.772500,0.000000,0.000000,0.250000,0,0);}
.m5f{transform:matrix(3.410000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.410000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.410000,0.000000,0.000000,0.250000,0,0);}
.m51{transform:matrix(3.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.422500,0.000000,0.000000,0.250000,0,0);}
.m69{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);}
.m57{transform:matrix(3.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.472500,0.000000,0.000000,0.250000,0,0);}
.m64{transform:matrix(3.475000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.475000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.475000,0.000000,0.000000,0.250000,0,0);}
.m71{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);}
.m3b{transform:matrix(3.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.535000,0.000000,0.000000,0.250000,0,0);}
.m4e{transform:matrix(3.597500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.597500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.597500,0.000000,0.000000,0.250000,0,0);}
.m65{transform:matrix(3.600000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.600000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.600000,0.000000,0.000000,0.250000,0,0);}
.m47{transform:matrix(3.660000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.660000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.660000,0.000000,0.000000,0.250000,0,0);}
.m37{transform:matrix(3.712500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.712500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.712500,0.000000,0.000000,0.250000,0,0);}
.m68{transform:matrix(3.725000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.725000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.725000,0.000000,0.000000,0.250000,0,0);}
.m70{transform:matrix(3.897500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.897500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.897500,0.000000,0.000000,0.250000,0,0);}
.m1a{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);}
.v2{vertical-align:-2.400000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:1.800000px;}
.ls0{letter-spacing:0.000000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:0.000000px;}
._0{margin-left:-57.411020px;}
._1{margin-left:-38.537891px;}
._4{margin-left:-3.312710px;}
._2{margin-left:-1.734694px;}
._3{width:1.650000px;}
.fc0{color:transparent;}
.fs7{font-size:24.000000px;}
.fs3{font-size:42.000000px;}
.fs1{font-size:48.000000px;}
.fs2{font-size:54.000000px;}
.fs4{font-size:60.000000px;}
.fs6{font-size:66.000000px;}
.fs8{font-size:72.000000px;}
.fs5{font-size:78.000000px;}
.fs0{font-size:180.000000px;}
.y0{bottom:0.000000px;}
.y1f2{bottom:83.548500px;}
.y235{bottom:83.773500px;}
.y236{bottom:84.148500px;}
.y237{bottom:84.823500px;}
.y238{bottom:84.898500px;}
.y1f1{bottom:85.348500px;}
.y2b7{bottom:85.798500px;}
.y2b8{bottom:86.098500px;}
.y1a4{bottom:89.323500px;}
.y1a3{bottom:90.000000px;}
.y1a2{bottom:90.448500px;}
.y272{bottom:92.848500px;}
.y273{bottom:92.923500px;}
.yc2{bottom:99.073500px;}
.y233{bottom:100.648500px;}
.y87{bottom:100.723500px;}
.y1f0{bottom:101.098500px;}
.y234{bottom:101.398500px;}
.y1ef{bottom:101.473500px;}
.y146{bottom:102.223500px;}
.y147{bottom:102.598500px;}
.y1ee{bottom:102.973500px;}
.y2b5{bottom:103.048500px;}
.y2b6{bottom:103.798500px;}
.y10b{bottom:103.875000px;}
.y10c{bottom:103.948500px;}
.y37{bottom:104.023500px;}
.y10a{bottom:105.000000px;}
.y1a1{bottom:106.573500px;}
.y271{bottom:109.423500px;}
.y270{bottom:110.098500px;}
.y26f{bottom:110.173500px;}
.yc0{bottom:115.948500px;}
.yc1{bottom:116.025000px;}
.y86{bottom:116.173500px;}
.y22f{bottom:117.598500px;}
.y230{bottom:118.275000px;}
.y231{bottom:118.348500px;}
.y232{bottom:118.723500px;}
.y1ed{bottom:119.173500px;}
.y144{bottom:119.473500px;}
.y145{bottom:119.548500px;}
.y2b4{bottom:119.625000px;}
.y2b3{bottom:120.000000px;}
.y36{bottom:121.275000px;}
.y109{bottom:121.875000px;}
.y1a0{bottom:123.223500px;}
.y26e{bottom:126.673500px;}
.y85{bottom:131.625000px;}
.ybf{bottom:132.900000px;}
.y22e{bottom:134.923500px;}
.y143{bottom:136.125000px;}
.y2b1{bottom:136.500000px;}
.y2b0{bottom:136.573500px;}
.y2b2{bottom:137.250000px;}
.y35{bottom:138.223500px;}
.y2f1{bottom:139.798500px;}
.y19f{bottom:140.098500px;}
.y2f0{bottom:140.173500px;}
.y108{bottom:140.250000px;}
.y26d{bottom:143.625000px;}
.y83{bottom:146.400000px;}
.y84{bottom:146.775000px;}
.ybe{bottom:149.848500px;}
.y22d{bottom:151.798500px;}
.y142{bottom:153.375000px;}
.y1ec{bottom:153.750000px;}
.y2af{bottom:153.900000px;}
.y34{bottom:154.798500px;}
.y107{bottom:155.775000px;}
.y2ef{bottom:156.000000px;}
.y2ee{bottom:156.673500px;}
.y2ed{bottom:157.125000px;}
.y19e{bottom:157.348500px;}
.y26c{bottom:160.198500px;}
.y26b{bottom:160.573500px;}
.y81{bottom:161.923500px;}
.y82{bottom:162.598500px;}
.ybd{bottom:166.723500px;}
.y22c{bottom:168.750000px;}
.y2ac{bottom:170.025000px;}
.y141{bottom:170.323500px;}
.y2ad{bottom:170.400000px;}
.y2ae{bottom:170.775000px;}
.y106{bottom:171.973500px;}
.y33{bottom:172.048500px;}
.y105{bottom:172.275000px;}
.y2ec{bottom:172.875000px;}
.y104{bottom:173.025000px;}
.y2eb{bottom:173.250000px;}
.y2ea{bottom:173.625000px;}
.y19d{bottom:173.923500px;}
.y2e9{bottom:174.000000px;}
.y19c{bottom:174.673500px;}
.y7e{bottom:176.625000px;}
.y7f{bottom:177.000000px;}
.y26a{bottom:177.150000px;}
.y80{bottom:177.750000px;}
.ybb{bottom:183.673500px;}
.ybc{bottom:184.048500px;}
.y1ea{bottom:185.698500px;}
.y1eb{bottom:185.775000px;}
.y13f{bottom:186.823500px;}
.y140{bottom:187.198500px;}
.y1e9{bottom:187.500000px;}
.y2ab{bottom:187.723500px;}
.y1e8{bottom:188.323500px;}
.y103{bottom:189.598500px;}
.y2e7{bottom:190.875000px;}
.y2e8{bottom:190.948500px;}
.y19b{bottom:191.250000px;}
.y7d{bottom:192.448500px;}
.y269{bottom:194.775000px;}
.y32{bottom:195.823500px;}
.yba{bottom:200.625000px;}
.y22b{bottom:202.948500px;}
.y13e{bottom:203.775000px;}
.y2aa{bottom:203.923500px;}
.y1e7{bottom:204.448500px;}
.y102{bottom:206.173500px;}
.y19a{bottom:206.698500px;}
.y199{bottom:207.073500px;}
.y7c{bottom:207.298500px;}
.y197{bottom:207.375000px;}
.y198{bottom:207.448500px;}
.y2e6{bottom:207.823500px;}
.y196{bottom:208.125000px;}
.y2e5{bottom:208.198500px;}
.y195{bottom:208.500000px;}
.y268{bottom:211.348500px;}
.y31{bottom:211.650000px;}
.yb9{bottom:217.500000px;}
.y2a5{bottom:220.500000px;}
.y13d{bottom:220.723500px;}
.y2a6{bottom:221.098500px;}
.y1e6{bottom:221.400000px;}
.y2a7{bottom:221.548500px;}
.y2a8{bottom:221.848500px;}
.y30{bottom:221.923500px;}
.y2a9{bottom:222.223500px;}
.y7b{bottom:222.375000px;}
.y2e{bottom:222.823500px;}
.y2f{bottom:222.900000px;}
.y101{bottom:223.423500px;}
.y194{bottom:223.650000px;}
.y193{bottom:223.948500px;}
.y192{bottom:224.400000px;}
.y2e4{bottom:224.698500px;}
.y2e3{bottom:224.775000px;}
.y191{bottom:225.073500px;}
.y190{bottom:225.448500px;}
.y267{bottom:228.223500px;}
.y229{bottom:228.823500px;}
.y266{bottom:228.900000px;}
.y22a{bottom:230.323500px;}
.yb8{bottom:234.448500px;}
.y78{bottom:236.775000px;}
.y79{bottom:237.073500px;}
.y13c{bottom:237.598500px;}
.y2a1{bottom:237.673500px;}
.y7a{bottom:237.900000px;}
.y1e5{bottom:237.973500px;}
.y2a2{bottom:238.048500px;}
.y2a3{bottom:238.423500px;}
.y2a4{bottom:238.798500px;}
.y100{bottom:239.625000px;}
.y1e4{bottom:239.775000px;}
.y18f{bottom:240.525000px;}
.yff{bottom:240.673500px;}
.y18e{bottom:240.900000px;}
.yfe{bottom:241.048500px;}
.y18d{bottom:241.948500px;}
.y2a{bottom:243.000000px;}
.y2b{bottom:243.298500px;}
.y2c{bottom:243.375000px;}
.y2d{bottom:243.673500px;}
.y265{bottom:245.473500px;}
.y228{bottom:246.900000px;}
.yb6{bottom:250.948500px;}
.yb7{bottom:251.323500px;}
.y76{bottom:252.973500px;}
.y77{bottom:254.098500px;}
.y29d{bottom:254.323500px;}
.y29e{bottom:254.625000px;}
.y13b{bottom:254.848500px;}
.y29f{bottom:255.000000px;}
.y2a0{bottom:255.673500px;}
.y1e3{bottom:256.650000px;}
.yfd{bottom:256.948500px;}
.y18c{bottom:257.773500px;}
.y18b{bottom:258.148500px;}
.y18a{bottom:258.523500px;}
.y189{bottom:258.598500px;}
.y188{bottom:258.898500px;}
.y29{bottom:260.323500px;}
.y264{bottom:262.125000px;}
.y227{bottom:263.773500px;}
.y74{bottom:266.625000px;}
.yb5{bottom:268.273500px;}
.y75{bottom:268.500000px;}
.y2e2{bottom:269.398500px;}
.y13a{bottom:271.798500px;}
.y29c{bottom:272.250000px;}
.y1e2{bottom:272.548500px;}
.yfc{bottom:273.148500px;}
.yfb{bottom:273.823500px;}
.yfa{bottom:274.198500px;}
.y187{bottom:275.773500px;}
.y28{bottom:277.573500px;}
.y263{bottom:278.625000px;}
.y262{bottom:278.698500px;}
.y261{bottom:279.000000px;}
.y260{bottom:279.298500px;}
.y226{bottom:281.098500px;}
.y71{bottom:283.500000px;}
.y72{bottom:283.875000px;}
.y73{bottom:283.948500px;}
.yb4{bottom:285.223500px;}
.y139{bottom:288.673500px;}
.y29b{bottom:289.198500px;}
.y1e1{bottom:289.423500px;}
.yf9{bottom:291.448500px;}
.y186{bottom:292.348500px;}
.y27{bottom:294.448500px;}
.y2e1{bottom:295.273500px;}
.y2e0{bottom:295.648500px;}
.y25f{bottom:295.948500px;}
.y2df{bottom:296.023500px;}
.y225{bottom:297.898500px;}
.y6e{bottom:300.148500px;}
.y6f{bottom:300.823500px;}
.y70{bottom:300.898500px;}
.yb3{bottom:302.098500px;}
.y138{bottom:305.323500px;}
.y29a{bottom:305.398500px;}
.y1e0{bottom:306.000000px;}
.y1df{bottom:307.423500px;}
.yf8{bottom:307.723500px;}
.y185{bottom:308.923500px;}
.y26{bottom:311.023500px;}
.y25e{bottom:312.823500px;}
.y224{bottom:314.548500px;}
.y6b{bottom:317.023500px;}
.y6c{bottom:317.698500px;}
.y6d{bottom:317.773500px;}
.yb1{bottom:318.673500px;}
.yb2{bottom:318.973500px;}
.y1de{bottom:321.823500px;}
.y137{bottom:322.198500px;}
.y1dd{bottom:322.500000px;}
.y297{bottom:322.723500px;}
.y298{bottom:323.398500px;}
.y1dc{bottom:323.625000px;}
.y299{bottom:324.148500px;}
.yf7{bottom:324.598500px;}
.y184{bottom:326.173500px;}
.y2de{bottom:327.000000px;}
.y25{bottom:327.898500px;}
.y24{bottom:327.973500px;}
.y25d{bottom:329.023500px;}
.y25c{bottom:329.398500px;}
.y25b{bottom:329.773500px;}
.y222{bottom:330.000000px;}
.y25a{bottom:330.148500px;}
.y259{bottom:330.448500px;}
.y223{bottom:331.798500px;}
.y69{bottom:333.973500px;}
.y6a{bottom:334.723500px;}
.yae{bottom:335.625000px;}
.yaf{bottom:335.923500px;}
.yb0{bottom:336.000000px;}
.y136{bottom:338.773500px;}
.y296{bottom:340.648500px;}
.y1db{bottom:341.323500px;}
.yf6{bottom:341.848500px;}
.y183{bottom:342.448500px;}
.y181{bottom:342.750000px;}
.y182{bottom:343.125000px;}
.y23{bottom:345.223500px;}
.y2dd{bottom:346.423500px;}
.y220{bottom:346.500000px;}
.y21f{bottom:346.573500px;}
.y258{bottom:346.648500px;}
.y221{bottom:348.000000px;}
.y68{bottom:350.848500px;}
.yad{bottom:352.500000px;}
.y135{bottom:356.023500px;}
.y295{bottom:356.173500px;}
.y1da{bottom:357.148500px;}
.yf5{bottom:358.423500px;}
.y180{bottom:359.698500px;}
.y22{bottom:361.423500px;}
.y257{bottom:363.598500px;}
.y256{bottom:363.898500px;}
.y21e{bottom:365.250000px;}
.y2dc{bottom:366.223500px;}
.y2db{bottom:367.348500px;}
.y67{bottom:367.798500px;}
.yac{bottom:369.448500px;}
.y133{bottom:372.598500px;}
.y134{bottom:372.973500px;}
.y1d9{bottom:374.023500px;}
.y294{bottom:374.548500px;}
.yf4{bottom:374.625000px;}
.yf3{bottom:375.000000px;}
.yf2{bottom:375.375000px;}
.y1d8{bottom:375.448500px;}
.y17e{bottom:375.523500px;}
.y17f{bottom:375.898500px;}
.yf1{bottom:376.048500px;}
.y17d{bottom:376.273500px;}
.y21{bottom:378.750000px;}
.y21d{bottom:382.573500px;}
.y66{bottom:384.000000px;}
.yab{bottom:386.323500px;}
.y2da{bottom:386.773500px;}
.y132{bottom:389.923500px;}
.y292{bottom:390.298500px;}
.y1d7{bottom:391.348500px;}
.y293{bottom:391.423500px;}
.yf0{bottom:392.323500px;}
.y1d6{bottom:392.698500px;}
.y1d5{bottom:392.773500px;}
.y17b{bottom:393.148500px;}
.y17a{bottom:393.223500px;}
.y17c{bottom:393.523500px;}
.y1f{bottom:395.625000px;}
.y20{bottom:396.000000px;}
.y219{bottom:396.898500px;}
.y21a{bottom:398.398500px;}
.y21b{bottom:398.773500px;}
.y21c{bottom:400.198500px;}
.y63{bottom:401.323500px;}
.y65{bottom:402.000000px;}
.y64{bottom:402.375000px;}
.yaa{bottom:403.198500px;}
.y131{bottom:406.423500px;}
.y2d9{bottom:406.875000px;}
.y291{bottom:407.625000px;}
.yef{bottom:408.523500px;}
.yee{bottom:408.823500px;}
.y1d4{bottom:409.348500px;}
.yed{bottom:409.500000px;}
.y179{bottom:410.098500px;}
.y218{bottom:414.223500px;}
.y1e{bottom:414.298500px;}
.y60{bottom:418.198500px;}
.y62{bottom:418.948500px;}
.y61{bottom:419.625000px;}
.ya9{bottom:420.148500px;}
.y130{bottom:423.375000px;}
.y28f{bottom:423.823500px;}
.y290{bottom:424.948500px;}
.y1d3{bottom:425.173500px;}
.yec{bottom:425.773500px;}
.y178{bottom:426.673500px;}
.yeb{bottom:426.823500px;}
.y177{bottom:426.973500px;}
.y174{bottom:427.048500px;}
.y176{bottom:427.423500px;}
.y175{bottom:427.723500px;}
.y2d8{bottom:427.798500px;}
.y217{bottom:432.973500px;}
.y255{bottom:434.923500px;}
.y5f{bottom:435.148500px;}
.ya8{bottom:436.723500px;}
.y12f{bottom:440.625000px;}
.y28e{bottom:440.698500px;}
.y1d2{bottom:441.298500px;}
.y1d1{bottom:443.173500px;}
.yea{bottom:443.398500px;}
.y173{bottom:443.923500px;}
.y2d7{bottom:445.423500px;}
.y2d6{bottom:447.223500px;}
.y1d{bottom:447.823500px;}
.y216{bottom:449.923500px;}
.y5e{bottom:452.023500px;}
.y254{bottom:455.023500px;}
.y12e{bottom:457.198500px;}
.y28c{bottom:457.273500px;}
.y1d0{bottom:459.000000px;}
.y28d{bottom:459.073500px;}
.ye9{bottom:459.598500px;}
.y172{bottom:460.875000px;}
.y214{bottom:465.000000px;}
.y1c{bottom:465.523500px;}
.y215{bottom:466.798500px;}
.y2d5{bottom:467.023500px;}
.y5d{bottom:468.223500px;}
.y12c{bottom:474.073500px;}
.y12d{bottom:474.148500px;}
.y28a{bottom:474.223500px;}
.y28b{bottom:475.273500px;}
.y253{bottom:476.250000px;}
.ye8{bottom:476.848500px;}
.ye7{bottom:476.923500px;}
.y1cf{bottom:477.375000px;}
.y170{bottom:477.750000px;}
.y171{bottom:477.823500px;}
.y1b{bottom:482.098500px;}
.y20f{bottom:482.250000px;}
.y210{bottom:482.625000px;}
.y211{bottom:483.673500px;}
.y212{bottom:484.048500px;}
.y213{bottom:484.500000px;}
.y5c{bottom:485.548500px;}
.y2d4{bottom:487.875000px;}
.y12b{bottom:491.023500px;}
.y1ce{bottom:492.148500px;}
.ye6{bottom:493.798500px;}
.y1cd{bottom:493.875000px;}
.y1cc{bottom:493.948500px;}
.y16f{bottom:494.323500px;}
.y252{bottom:495.375000px;}
.y251{bottom:496.348500px;}
.y250{bottom:496.423500px;}
.y1a{bottom:499.273500px;}
.y20c{bottom:500.323500px;}
.y20d{bottom:501.673500px;}
.y20e{bottom:501.750000px;}
.ya7{bottom:502.273500px;}
.y5b{bottom:502.423500px;}
.y2d3{bottom:507.000000px;}
.y12a{bottom:507.598500px;}
.y1cb{bottom:509.773500px;}
.ye5{bottom:510.375000px;}
.y16e{bottom:511.273500px;}
.y24f{bottom:515.473500px;}
.y19{bottom:516.223500px;}
.y20a{bottom:516.523500px;}
.y24e{bottom:516.598500px;}
.y20b{bottom:518.323500px;}
.y5a{bottom:519.000000px;}
.ya5{bottom:520.648500px;}
.ya6{bottom:520.948500px;}
.ya4{bottom:522.375000px;}
.y128{bottom:524.173500px;}
.y129{bottom:524.923500px;}
.y1ca{bottom:525.598500px;}
.y1c9{bottom:526.273500px;}
.ye4{bottom:526.948500px;}
.ye3{bottom:527.250000px;}
.y1c8{bottom:527.698500px;}
.y16d{bottom:528.223500px;}
.y18{bottom:533.173500px;}
.y209{bottom:533.773500px;}
.y24d{bottom:534.973500px;}
.y58{bottom:535.198500px;}
.y59{bottom:536.323500px;}
.y289{bottom:537.223500px;}
.y127{bottom:541.125000px;}
.ya3{bottom:541.875000px;}
.y1c7{bottom:543.223500px;}
.ye2{bottom:544.198500px;}
.y16c{bottom:545.098500px;}
.y1c6{bottom:545.698500px;}
.y2d2{bottom:547.273500px;}
.y207{bottom:549.223500px;}
.y17{bottom:549.750000px;}
.y208{bottom:551.098500px;}
.y57{bottom:552.823500px;}
.y24c{bottom:556.198500px;}
.y288{bottom:557.098500px;}
.y126{bottom:558.000000px;}
.y1c5{bottom:560.173500px;}
.ya2{bottom:561.673500px;}
.y16b{bottom:562.423500px;}
.y16{bottom:567.000000px;}
.y2d1{bottom:567.148500px;}
.y205{bottom:567.598500px;}
.y206{bottom:569.098500px;}
.y56{bottom:569.700000px;}
.y125{bottom:574.875000px;}
.y124{bottom:574.950000px;}
.y24b{bottom:575.250000px;}
.y1c4{bottom:577.423500px;}
.y287{bottom:577.575000px;}
.y16a{bottom:579.298500px;}
.ye1{bottom:582.000000px;}
.ya1{bottom:582.148500px;}
.y13{bottom:583.575000px;}
.y14{bottom:583.875000px;}
.y15{bottom:583.950000px;}
.y204{bottom:584.473500px;}
.y54{bottom:586.273500px;}
.y2d0{bottom:587.250000px;}
.y55{bottom:587.398500px;}
.y123{bottom:591.450000px;}
.y122{bottom:591.523500px;}
.y1c3{bottom:591.825000px;}
.y1c2{bottom:592.200000px;}
.y1c1{bottom:594.750000px;}
.y24a{bottom:595.125000px;}
.y169{bottom:595.875000px;}
.y168{bottom:596.548500px;}
.y285{bottom:597.000000px;}
.y286{bottom:597.375000px;}
.y11{bottom:600.523500px;}
.y12{bottom:600.825000px;}
.y203{bottom:601.125000px;}
.ya0{bottom:601.950000px;}
.ye0{bottom:602.173500px;}
.y53{bottom:603.223500px;}
.y121{bottom:608.398500px;}
.y167{bottom:613.200000px;}
.y249{bottom:614.473500px;}
.y248{bottom:615.298500px;}
.y10{bottom:617.398500px;}
.y284{bottom:617.848500px;}
.y52{bottom:620.173500px;}
.yde{bottom:621.898500px;}
.y2cf{bottom:622.200000px;}
.ydf{bottom:622.273500px;}
.y9f{bottom:622.500000px;}
.y120{bottom:624.973500px;}
.y166{bottom:630.075000px;}
.y165{bottom:630.375000px;}
.y164{bottom:630.450000px;}
.ye{bottom:633.898500px;}
.yf{bottom:634.348500px;}
.y247{bottom:635.398500px;}
.y50{bottom:636.750000px;}
.y51{bottom:637.423500px;}
.y283{bottom:638.025000px;}
.ydd{bottom:641.400000px;}
.y11e{bottom:641.848500px;}
.y11f{bottom:641.923500px;}
.ydc{bottom:642.073500px;}
.y9e{bottom:642.298500px;}
.ydb{bottom:642.448500px;}
.y163{bottom:646.948500px;}
.y1c0{bottom:649.125000px;}
.y2ce{bottom:652.423500px;}
.y4e{bottom:653.250000px;}
.y4f{bottom:654.000000px;}
.y246{bottom:654.448500px;}
.y245{bottom:654.823500px;}
.y244{bottom:656.250000px;}
.y282{bottom:658.198500px;}
.y11d{bottom:658.798500px;}
.yda{bottom:661.948500px;}
.y9d{bottom:662.098500px;}
.y161{bottom:663.900000px;}
.y162{bottom:664.198500px;}
.y1bf{bottom:669.223500px;}
.y4d{bottom:670.573500px;}
.y2cd{bottom:671.473500px;}
.y2cc{bottom:671.848500px;}
.y2cb{bottom:672.598500px;}
.y11c{bottom:675.375000px;}
.y202{bottom:676.650000px;}
.y243{bottom:677.173500px;}
.y281{bottom:678.000000px;}
.yd{bottom:678.973500px;}
.y160{bottom:680.775000px;}
.y9c{bottom:681.900000px;}
.yd9{bottom:682.048500px;}
.y4c{bottom:687.150000px;}
.y1be{bottom:687.973500px;}
.y1bd{bottom:689.025000px;}
.y1bc{bottom:690.448500px;}
.y2ca{bottom:692.400000px;}
.y1ff{bottom:694.650000px;}
.y200{bottom:695.400000px;}
.y242{bottom:696.223500px;}
.y15e{bottom:697.348500px;}
.y201{bottom:697.500000px;}
.y15f{bottom:697.723500px;}
.y280{bottom:698.173500px;}
.yc{bottom:699.073500px;}
.yb{bottom:699.150000px;}
.yd8{bottom:701.848500px;}
.y9b{bottom:702.375000px;}
.y4b{bottom:704.025000px;}
.y1bb{bottom:708.448500px;}
.y1ba{bottom:709.798500px;}
.y1b9{bottom:711.000000px;}
.y2c9{bottom:711.448500px;}
.y2c8{bottom:712.798500px;}
.y2c7{bottom:713.698500px;}
.y15c{bottom:714.298500px;}
.y15d{bottom:714.598500px;}
.y241{bottom:716.025000px;}
.y1fe{bottom:717.000000px;}
.y27f{bottom:717.973500px;}
.ya{bottom:718.875000px;}
.y8{bottom:719.250000px;}
.y9{bottom:719.323500px;}
.y4a{bottom:719.848500px;}
.yd7{bottom:721.275000px;}
.y9a{bottom:721.875000px;}
.yd6{bottom:722.025000px;}
.y1b8{bottom:728.625000px;}
.y1b7{bottom:730.423500px;}
.y2c6{bottom:730.875000px;}
.y1b6{bottom:731.173500px;}
.y2c5{bottom:731.625000px;}
.y1b5{bottom:731.848500px;}
.y2c4{bottom:732.750000px;}
.y119{bottom:732.973500px;}
.y11b{bottom:733.275000px;}
.y11a{bottom:733.348500px;}
.y240{bottom:736.198500px;}
.y1fd{bottom:736.798500px;}
.y47{bottom:737.473500px;}
.y48{bottom:737.848500px;}
.y49{bottom:737.923500px;}
.y27e{bottom:738.448500px;}
.yd5{bottom:741.823500px;}
.y99{bottom:743.473500px;}
.y7{bottom:745.948500px;}
.y6{bottom:746.323500px;}
.y1b4{bottom:748.798500px;}
.y2c3{bottom:752.173500px;}
.y45{bottom:753.298500px;}
.y46{bottom:754.423500px;}
.y23f{bottom:756.000000px;}
.y1f9{bottom:756.223500px;}
.y1fa{bottom:756.598500px;}
.y1fb{bottom:757.275000px;}
.y1fc{bottom:757.650000px;}
.y27d{bottom:758.625000px;}
.y98{bottom:761.098500px;}
.yd4{bottom:761.250000px;}
.y97{bottom:761.775000px;}
.yd3{bottom:762.000000px;}
.y96{bottom:762.900000px;}
.y118{bottom:766.423500px;}
.y44{bottom:769.198500px;}
.y1b3{bottom:770.775000px;}
.y2c2{bottom:771.973500px;}
.y15b{bottom:772.650000px;}
.y159{bottom:772.948500px;}
.y15a{bottom:773.025000px;}
.y27c{bottom:778.800000px;}
.y5{bottom:780.073500px;}
.y95{bottom:781.275000px;}
.yd2{bottom:781.425000px;}
.yd1{bottom:781.800000px;}
.yd0{bottom:782.098500px;}
.y94{bottom:782.698500px;}
.y93{bottom:783.073500px;}
.y1b2{bottom:789.448500px;}
.y23e{bottom:791.323500px;}
.y2c1{bottom:792.448500px;}
.y158{bottom:792.750000px;}
.y157{bottom:793.125000px;}
.y42{bottom:797.625000px;}
.y43{bottom:798.375000px;}
.y27b{bottom:798.598500px;}
.y117{bottom:800.625000px;}
.ycf{bottom:801.598500px;}
.yce{bottom:801.973500px;}
.ycd{bottom:802.348500px;}
.y1f7{bottom:806.323500px;}
.y1f8{bottom:807.000000px;}
.y1b1{bottom:809.323500px;}
.y156{bottom:811.875000px;}
.y154{bottom:812.175000px;}
.y155{bottom:812.250000px;}
.y153{bottom:812.625000px;}
.y152{bottom:812.925000px;}
.y92{bottom:816.223500px;}
.y91{bottom:816.900000px;}
.y40{bottom:818.473500px;}
.y27a{bottom:818.698500px;}
.y41{bottom:818.848500px;}
.y116{bottom:820.425000px;}
.y115{bottom:820.800000px;}
.ycc{bottom:821.400000px;}
.y4{bottom:821.550000px;}
.y3{bottom:821.925000px;}
.y1b0{bottom:829.800000px;}
.y2c0{bottom:832.425000px;}
.y23d{bottom:833.775000px;}
.y3d{bottom:838.275000px;}
.y279{bottom:838.573500px;}
.y3f{bottom:838.723500px;}
.y3e{bottom:839.025000px;}
.y114{bottom:839.848500px;}
.y113{bottom:840.223500px;}
.ycb{bottom:841.573500px;}
.y1af{bottom:846.375000px;}
.y150{bottom:846.823500px;}
.y151{bottom:847.125000px;}
.y1ae{bottom:848.473500px;}
.y1ad{bottom:849.598500px;}
.y1ac{bottom:850.650000px;}
.y90{bottom:850.723500px;}
.y1ab{bottom:851.025000px;}
.y2{bottom:851.400000px;}
.y1aa{bottom:851.698500px;}
.y2bf{bottom:852.223500px;}
.y1a9{bottom:852.448500px;}
.y23c{bottom:853.573500px;}
.y1f6{bottom:857.698500px;}
.y3c{bottom:858.525000px;}
.y112{bottom:859.650000px;}
.y111{bottom:859.723500px;}
.y110{bottom:860.025000px;}
.y278{bottom:860.175000px;}
.y10f{bottom:860.400000px;}
.yca{bottom:860.625000px;}
.yc9{bottom:861.375000px;}
.y1{bottom:866.550000px;}
.y8f{bottom:869.775000px;}
.y2be{bottom:872.400000px;}
.y1f5{bottom:878.250000px;}
.y3b{bottom:878.625000px;}
.y277{bottom:880.275000px;}
.yc8{bottom:881.848500px;}
.y14f{bottom:884.175000px;}
.y1a8{bottom:885.223500px;}
.y23b{bottom:887.400000px;}
.y8e{bottom:888.223500px;}
.y8d{bottom:888.823500px;}
.y8c{bottom:890.025000px;}
.y8b{bottom:891.448500px;}
.y8a{bottom:891.750000px;}
.y2bd{bottom:892.500000px;}
.y10e{bottom:897.525000px;}
.y3a{bottom:898.050000px;}
.y1f4{bottom:898.125000px;}
.y275{bottom:900.073500px;}
.y276{bottom:900.150000px;}
.yc7{bottom:901.275000px;}
.yc6{bottom:901.723500px;}
.yc5{bottom:902.400000px;}
.y14e{bottom:902.925000px;}
.y14d{bottom:903.300000px;}
.y14c{bottom:903.598500px;}
.y14b{bottom:903.973500px;}
.y14a{bottom:904.050000px;}
.y149{bottom:904.348500px;}
.y89{bottom:909.750000px;}
.y2bc{bottom:911.698500px;}
.y2bb{bottom:914.848500px;}
.y39{bottom:918.598500px;}
.yc4{bottom:921.525000px;}
.y1f3{bottom:935.550000px;}
.y274{bottom:937.500000px;}
.y1a7{bottom:938.098500px;}
.y1a6{bottom:938.473500px;}
.y1a5{bottom:938.550000px;}
.y148{bottom:941.098500px;}
.y23a{bottom:941.775000px;}
.y239{bottom:942.150000px;}
.y88{bottom:947.250000px;}
.y2ba{bottom:950.098500px;}
.y2b9{bottom:950.175000px;}
.y10d{bottom:951.150000px;}
.y38{bottom:952.125000px;}
.yc3{bottom:955.348500px;}
.hb{height:23.554688px;}
.h11{height:41.200195px;}
.h5{height:41.220703px;}
.h13{height:47.085938px;}
.h2{height:47.109375px;}
.h16{height:52.971680px;}
.ha{height:52.998047px;}
.h1a{height:54.421875px;}
.h4{height:56.214844px;}
.h3{height:56.320312px;}
.h18{height:56.486719px;}
.hc{height:58.857422px;}
.h9{height:58.886719px;}
.h6{height:60.468750px;}
.hd{height:64.743164px;}
.h8{height:64.775391px;}
.h19{height:66.515625px;}
.hf{height:70.628906px;}
.h15{height:70.664062px;}
.he{height:72.562500px;}
.h7{height:76.552734px;}
.h17{height:78.609375px;}
.h1{height:176.660156px;}
.h1b{height:1011.000000px;}
.h10{height:1014.000000px;}
.h12{height:1018.500000px;}
.h14{height:1023.000000px;}
.h0{height:1026.000000px;}
.h1c{height:1029.000000px;}
.w7{width:651.000000px;}
.w6{width:652.500000px;}
.w4{width:660.000000px;}
.w2{width:661.500000px;}
.w1{width:664.500000px;}
.w8{width:666.000000px;}
.w0{width:667.500000px;}
.w5{width:672.000000px;}
.w3{width:675.000000px;}
.x0{left:0.000000px;}
.xcb{left:46.425000px;}
.x59{left:47.550000px;}
.x4b{left:49.348500px;}
.x3{left:51.450000px;}
.x1c{left:52.575000px;}
.x7f{left:54.375000px;}
.xe4{left:57.975000px;}
.xdc{left:59.025000px;}
.xdb{left:60.150000px;}
.xd9{left:61.575000px;}
.x90{left:67.650000px;}
.xe1{left:70.200000px;}
.xc7{left:73.425000px;}
.x5a{left:74.550000px;}
.x58{left:75.975000px;}
.xe6{left:77.400000px;}
.x17{left:78.450000px;}
.x10{left:79.575000px;}
.x55{left:80.625000px;}
.x4a{left:82.050000px;}
.x8{left:83.550000px;}
.x1{left:84.600000px;}
.x27{left:85.650000px;}
.x1a{left:87.450000px;}
.x65{left:88.575000px;}
.xa7{left:90.375000px;}
.xa1{left:91.425000px;}
.x21{left:92.850000px;}
.x5d{left:95.400000px;}
.x4c{left:96.823500px;}
.x50{left:97.948500px;}
.x4{left:101.175000px;}
.xb6{left:104.400000px;}
.xe{left:105.448500px;}
.x5e{left:106.948500px;}
.x8c{left:108.750000px;}
.xb2{left:109.800000px;}
.x6e{left:111.600000px;}
.xe0{left:112.650000px;}
.x1d{left:113.775000px;}
.xac{left:115.200000px;}
.x60{left:117.000000px;}
.x28{left:118.050000px;}
.x9b{left:119.850000px;}
.xcf{left:121.650000px;}
.x4d{left:123.150000px;}
.x95{left:124.200000px;}
.xad{left:126.750000px;}
.x8d{left:129.600000px;}
.xe9{left:131.400000px;}
.x22{left:132.825000px;}
.xc5{left:135.375000px;}
.x6f{left:137.850000px;}
.x2e{left:140.025000px;}
.x8e{left:141.150000px;}
.xd3{left:142.575000px;}
.xba{left:143.625000px;}
.xa4{left:144.750000px;}
.x41{left:145.800000px;}
.x42{left:157.350000px;}
.x9{left:166.350000px;}
.x92{left:167.775000px;}
.xf5{left:169.950000px;}
.x9c{left:177.450000px;}
.xcd{left:178.950000px;}
.x35{left:187.200000px;}
.xa{left:189.375000px;}
.x80{left:190.800000px;}
.x91{left:192.225000px;}
.xbe{left:196.575000px;}
.x83{left:198.000000px;}
.xd0{left:199.050000px;}
.x9d{left:200.850000px;}
.x96{left:202.648500px;}
.x13{left:204.148500px;}
.x75{left:205.950000px;}
.x11{left:207.750000px;}
.xd1{left:210.225000px;}
.x18{left:212.773500px;}
.x12{left:213.825000px;}
.x9f{left:215.250000px;}
.x51{left:216.750000px;}
.xa0{left:218.175000px;}
.x97{left:219.600000px;}
.x7a{left:223.575000px;}
.x1e{left:225.375000px;}
.xda{left:226.800000px;}
.x81{left:230.023500px;}
.xd4{left:231.150000px;}
.xd5{left:232.200000px;}
.xd6{left:233.250000px;}
.x7b{left:235.050000px;}
.x1f{left:236.850000px;}
.xed{left:238.350000px;}
.x84{left:239.775000px;}
.x2d{left:242.250000px;}
.xe5{left:243.750000px;}
.xa2{left:245.175000px;}
.xea{left:247.350000px;}
.x66{left:248.400000px;}
.xc1{left:250.575000px;}
.xbb{left:252.750000px;}
.x94{left:254.550000px;}
.xa3{left:256.650000px;}
.x14{left:257.775000px;}
.x52{left:260.625000px;}
.xbc{left:264.225000px;}
.x6{left:267.150000px;}
.xc9{left:268.200000px;}
.xef{left:269.625000px;}
.x7{left:270.750000px;}
.xf0{left:271.800000px;}
.x49{left:273.975000px;}
.xb0{left:275.775000px;}
.x47{left:277.575000px;}
.x7e{left:279.000000px;}
.xb1{left:280.800000px;}
.x8a{left:281.850000px;}
.x61{left:283.650000px;}
.xbf{left:285.450000px;}
.x85{left:287.625000px;}
.x48{left:288.750000px;}
.xa9{left:290.175000px;}
.xa8{left:291.600000px;}
.x4f{left:296.625000px;}
.xd2{left:297.750000px;}
.x2{left:298.800000px;}
.xbd{left:302.025000px;}
.x23{left:304.575000px;}
.x72{left:305.625000px;}
.x86{left:307.800000px;}
.x26{left:308.850000px;}
.x5f{left:310.650000px;}
.xb4{left:313.200000px;}
.x15{left:315.000000px;}
.x73{left:316.050000px;}
.x8f{left:317.850000px;}
.x87{left:319.650000px;}
.xc0{left:322.200000px;}
.x53{left:325.800000px;}
.x43{left:326.850000px;}
.x1b{left:332.625000px;}
.x67{left:335.175000px;}
.x44{left:338.775000px;}
.xc4{left:343.800000px;}
.xb3{left:346.650000px;}
.x5{left:347.775000px;}
.xd8{left:348.825000px;}
.xf2{left:350.625000px;}
.x24{left:351.750000px;}
.x88{left:353.550000px;}
.xb7{left:354.600000px;}
.x30{left:356.025000px;}
.x25{left:362.550000px;}
.xe3{left:363.975000px;}
.x89{left:365.025000px;}
.xb8{left:366.150000px;}
.x31{left:367.950000px;}
.x16{left:369.000000px;}
.xe7{left:372.225000px;}
.x78{left:374.400000px;}
.x70{left:375.450000px;}
.xc8{left:380.550000px;}
.x20{left:381.600000px;}
.xe8{left:384.150000px;}
.x79{left:385.575000px;}
.x29{left:388.048500px;}
.x71{left:390.600000px;}
.xa5{left:392.025000px;}
.x54{left:394.200000px;}
.x6b{left:397.423500px;}
.xc6{left:399.975000px;}
.xa6{left:403.575000px;}
.xd7{left:405.375000px;}
.x5c{left:407.173500px;}
.xf1{left:408.225000px;}
.x6c{left:410.775000px;}
.x19{left:412.200000px;}
.x2f{left:414.375000px;}
.xcc{left:416.548500px;}
.x4e{left:418.350000px;}
.x9e{left:422.250000px;}
.xb{left:425.548500px;}
.xc{left:428.025000px;}
.x74{left:432.000000px;}
.xf3{left:433.048500px;}
.x98{left:435.975000px;}
.x5b{left:437.400000px;}
.x3e{left:438.450000px;}
.x76{left:441.000000px;}
.x56{left:443.548500px;}
.xaa{left:448.950000px;}
.x3f{left:450.000000px;}
.x77{left:451.798500px;}
.xf4{left:452.850000px;}
.xeb{left:457.200000px;}
.xab{left:460.423500px;}
.x6d{left:465.825000px;}
.xdd{left:469.425000px;}
.x38{left:471.975000px;}
.x7c{left:473.400000px;}
.x2a{left:477.750000px;}
.x39{left:483.450000px;}
.x2b{left:486.375000px;}
.x68{left:495.375000px;}
.x99{left:496.800000px;}
.x9a{left:498.225000px;}
.x82{left:501.150000px;}
.xca{left:504.375000px;}
.xf{left:508.350000px;}
.x2c{left:511.575000px;}
.xc2{left:516.600000px;}
.xce{left:518.775000px;}
.x45{left:521.250000px;}
.x3d{left:523.800000px;}
.x57{left:525.225000px;}
.xc3{left:527.025000px;}
.x46{left:531.750000px;}
.xee{left:532.800000px;}
.xb5{left:536.400000px;}
.xec{left:537.450000px;}
.x62{left:540.000000px;}
.xd{left:543.600000px;}
.xb9{left:545.775000px;}
.x33{left:548.250000px;}
.x3b{left:551.175000px;}
.x7d{left:552.225000px;}
.x36{left:553.350000px;}
.x8b{left:555.150000px;}
.xe2{left:557.625000px;}
.x34{left:558.750000px;}
.x69{left:561.975000px;}
.xde{left:565.200000px;}
.x63{left:568.800000px;}
.x37{left:570.975000px;}
.xdf{left:572.400000px;}
.x3c{left:576.750000px;}
.xae{left:579.975000px;}
.x64{left:587.550000px;}
.x93{left:589.650000px;}
.x6a{left:593.625000px;}
.xaf{left:596.850000px;}
.x40{left:600.150000px;}
.x32{left:602.250000px;}
.x3a{left:603.750000px;}
@media print{
.v2{vertical-align:-2.133333pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:1.600000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws0{word-spacing:0.000000pt;}
._0{margin-left:-51.032018pt;}
._1{margin-left:-34.255903pt;}
._4{margin-left:-2.944632pt;}
._2{margin-left:-1.541950pt;}
._3{width:1.466667pt;}
.fs7{font-size:21.333333pt;}
.fs3{font-size:37.333333pt;}
.fs1{font-size:42.666667pt;}
.fs2{font-size:48.000000pt;}
.fs4{font-size:53.333333pt;}
.fs6{font-size:58.666667pt;}
.fs8{font-size:64.000000pt;}
.fs5{font-size:69.333333pt;}
.fs0{font-size:160.000000pt;}
.y0{bottom:0.000000pt;}
.y1f2{bottom:74.265333pt;}
.y235{bottom:74.465333pt;}
.y236{bottom:74.798667pt;}
.y237{bottom:75.398667pt;}
.y238{bottom:75.465333pt;}
.y1f1{bottom:75.865333pt;}
.y2b7{bottom:76.265333pt;}
.y2b8{bottom:76.532000pt;}
.y1a4{bottom:79.398667pt;}
.y1a3{bottom:80.000000pt;}
.y1a2{bottom:80.398667pt;}
.y272{bottom:82.532000pt;}
.y273{bottom:82.598667pt;}
.yc2{bottom:88.065333pt;}
.y233{bottom:89.465333pt;}
.y87{bottom:89.532000pt;}
.y1f0{bottom:89.865333pt;}
.y234{bottom:90.132000pt;}
.y1ef{bottom:90.198667pt;}
.y146{bottom:90.865333pt;}
.y147{bottom:91.198667pt;}
.y1ee{bottom:91.532000pt;}
.y2b5{bottom:91.598667pt;}
.y2b6{bottom:92.265333pt;}
.y10b{bottom:92.333333pt;}
.y10c{bottom:92.398667pt;}
.y37{bottom:92.465333pt;}
.y10a{bottom:93.333333pt;}
.y1a1{bottom:94.732000pt;}
.y271{bottom:97.265333pt;}
.y270{bottom:97.865333pt;}
.y26f{bottom:97.932000pt;}
.yc0{bottom:103.065333pt;}
.yc1{bottom:103.133333pt;}
.y86{bottom:103.265333pt;}
.y22f{bottom:104.532000pt;}
.y230{bottom:105.133333pt;}
.y231{bottom:105.198667pt;}
.y232{bottom:105.532000pt;}
.y1ed{bottom:105.932000pt;}
.y144{bottom:106.198667pt;}
.y145{bottom:106.265333pt;}
.y2b4{bottom:106.333333pt;}
.y2b3{bottom:106.666667pt;}
.y36{bottom:107.800000pt;}
.y109{bottom:108.333333pt;}
.y1a0{bottom:109.532000pt;}
.y26e{bottom:112.598667pt;}
.y85{bottom:117.000000pt;}
.ybf{bottom:118.133333pt;}
.y22e{bottom:119.932000pt;}
.y143{bottom:121.000000pt;}
.y2b1{bottom:121.333333pt;}
.y2b0{bottom:121.398667pt;}
.y2b2{bottom:122.000000pt;}
.y35{bottom:122.865333pt;}
.y2f1{bottom:124.265333pt;}
.y19f{bottom:124.532000pt;}
.y2f0{bottom:124.598667pt;}
.y108{bottom:124.666667pt;}
.y26d{bottom:127.666667pt;}
.y83{bottom:130.133333pt;}
.y84{bottom:130.466667pt;}
.ybe{bottom:133.198667pt;}
.y22d{bottom:134.932000pt;}
.y142{bottom:136.333333pt;}
.y1ec{bottom:136.666667pt;}
.y2af{bottom:136.800000pt;}
.y34{bottom:137.598667pt;}
.y107{bottom:138.466667pt;}
.y2ef{bottom:138.666667pt;}
.y2ee{bottom:139.265333pt;}
.y2ed{bottom:139.666667pt;}
.y19e{bottom:139.865333pt;}
.y26c{bottom:142.398667pt;}
.y26b{bottom:142.732000pt;}
.y81{bottom:143.932000pt;}
.y82{bottom:144.532000pt;}
.ybd{bottom:148.198667pt;}
.y22c{bottom:150.000000pt;}
.y2ac{bottom:151.133333pt;}
.y141{bottom:151.398667pt;}
.y2ad{bottom:151.466667pt;}
.y2ae{bottom:151.800000pt;}
.y106{bottom:152.865333pt;}
.y33{bottom:152.932000pt;}
.y105{bottom:153.133333pt;}
.y2ec{bottom:153.666667pt;}
.y104{bottom:153.800000pt;}
.y2eb{bottom:154.000000pt;}
.y2ea{bottom:154.333333pt;}
.y19d{bottom:154.598667pt;}
.y2e9{bottom:154.666667pt;}
.y19c{bottom:155.265333pt;}
.y7e{bottom:157.000000pt;}
.y7f{bottom:157.333333pt;}
.y26a{bottom:157.466667pt;}
.y80{bottom:158.000000pt;}
.ybb{bottom:163.265333pt;}
.ybc{bottom:163.598667pt;}
.y1ea{bottom:165.065333pt;}
.y1eb{bottom:165.133333pt;}
.y13f{bottom:166.065333pt;}
.y140{bottom:166.398667pt;}
.y1e9{bottom:166.666667pt;}
.y2ab{bottom:166.865333pt;}
.y1e8{bottom:167.398667pt;}
.y103{bottom:168.532000pt;}
.y2e7{bottom:169.666667pt;}
.y2e8{bottom:169.732000pt;}
.y19b{bottom:170.000000pt;}
.y7d{bottom:171.065333pt;}
.y269{bottom:173.133333pt;}
.y32{bottom:174.065333pt;}
.yba{bottom:178.333333pt;}
.y22b{bottom:180.398667pt;}
.y13e{bottom:181.133333pt;}
.y2aa{bottom:181.265333pt;}
.y1e7{bottom:181.732000pt;}
.y102{bottom:183.265333pt;}
.y19a{bottom:183.732000pt;}
.y199{bottom:184.065333pt;}
.y7c{bottom:184.265333pt;}
.y197{bottom:184.333333pt;}
.y198{bottom:184.398667pt;}
.y2e6{bottom:184.732000pt;}
.y196{bottom:185.000000pt;}
.y2e5{bottom:185.065333pt;}
.y195{bottom:185.333333pt;}
.y268{bottom:187.865333pt;}
.y31{bottom:188.133333pt;}
.yb9{bottom:193.333333pt;}
.y2a5{bottom:196.000000pt;}
.y13d{bottom:196.198667pt;}
.y2a6{bottom:196.532000pt;}
.y1e6{bottom:196.800000pt;}
.y2a7{bottom:196.932000pt;}
.y2a8{bottom:197.198667pt;}
.y30{bottom:197.265333pt;}
.y2a9{bottom:197.532000pt;}
.y7b{bottom:197.666667pt;}
.y2e{bottom:198.065333pt;}
.y2f{bottom:198.133333pt;}
.y101{bottom:198.598667pt;}
.y194{bottom:198.800000pt;}
.y193{bottom:199.065333pt;}
.y192{bottom:199.466667pt;}
.y2e4{bottom:199.732000pt;}
.y2e3{bottom:199.800000pt;}
.y191{bottom:200.065333pt;}
.y190{bottom:200.398667pt;}
.y267{bottom:202.865333pt;}
.y229{bottom:203.398667pt;}
.y266{bottom:203.466667pt;}
.y22a{bottom:204.732000pt;}
.yb8{bottom:208.398667pt;}
.y78{bottom:210.466667pt;}
.y79{bottom:210.732000pt;}
.y13c{bottom:211.198667pt;}
.y2a1{bottom:211.265333pt;}
.y7a{bottom:211.466667pt;}
.y1e5{bottom:211.532000pt;}
.y2a2{bottom:211.598667pt;}
.y2a3{bottom:211.932000pt;}
.y2a4{bottom:212.265333pt;}
.y100{bottom:213.000000pt;}
.y1e4{bottom:213.133333pt;}
.y18f{bottom:213.800000pt;}
.yff{bottom:213.932000pt;}
.y18e{bottom:214.133333pt;}
.yfe{bottom:214.265333pt;}
.y18d{bottom:215.065333pt;}
.y2a{bottom:216.000000pt;}
.y2b{bottom:216.265333pt;}
.y2c{bottom:216.333333pt;}
.y2d{bottom:216.598667pt;}
.y265{bottom:218.198667pt;}
.y228{bottom:219.466667pt;}
.yb6{bottom:223.065333pt;}
.yb7{bottom:223.398667pt;}
.y76{bottom:224.865333pt;}
.y77{bottom:225.865333pt;}
.y29d{bottom:226.065333pt;}
.y29e{bottom:226.333333pt;}
.y13b{bottom:226.532000pt;}
.y29f{bottom:226.666667pt;}
.y2a0{bottom:227.265333pt;}
.y1e3{bottom:228.133333pt;}
.yfd{bottom:228.398667pt;}
.y18c{bottom:229.132000pt;}
.y18b{bottom:229.465333pt;}
.y18a{bottom:229.798667pt;}
.y189{bottom:229.865333pt;}
.y188{bottom:230.132000pt;}
.y29{bottom:231.398667pt;}
.y264{bottom:233.000000pt;}
.y227{bottom:234.465333pt;}
.y74{bottom:237.000000pt;}
.yb5{bottom:238.465333pt;}
.y75{bottom:238.666667pt;}
.y2e2{bottom:239.465333pt;}
.y13a{bottom:241.598667pt;}
.y29c{bottom:242.000000pt;}
.y1e2{bottom:242.265333pt;}
.yfc{bottom:242.798667pt;}
.yfb{bottom:243.398667pt;}
.yfa{bottom:243.732000pt;}
.y187{bottom:245.132000pt;}
.y28{bottom:246.732000pt;}
.y263{bottom:247.666667pt;}
.y262{bottom:247.732000pt;}
.y261{bottom:248.000000pt;}
.y260{bottom:248.265333pt;}
.y226{bottom:249.865333pt;}
.y71{bottom:252.000000pt;}
.y72{bottom:252.333333pt;}
.y73{bottom:252.398667pt;}
.yb4{bottom:253.532000pt;}
.y139{bottom:256.598667pt;}
.y29b{bottom:257.065333pt;}
.y1e1{bottom:257.265333pt;}
.yf9{bottom:259.065333pt;}
.y186{bottom:259.865333pt;}
.y27{bottom:261.732000pt;}
.y2e1{bottom:262.465333pt;}
.y2e0{bottom:262.798667pt;}
.y25f{bottom:263.065333pt;}
.y2df{bottom:263.132000pt;}
.y225{bottom:264.798667pt;}
.y6e{bottom:266.798667pt;}
.y6f{bottom:267.398667pt;}
.y70{bottom:267.465333pt;}
.yb3{bottom:268.532000pt;}
.y138{bottom:271.398667pt;}
.y29a{bottom:271.465333pt;}
.y1e0{bottom:272.000000pt;}
.y1df{bottom:273.265333pt;}
.yf8{bottom:273.532000pt;}
.y185{bottom:274.598667pt;}
.y26{bottom:276.465333pt;}
.y25e{bottom:278.065333pt;}
.y224{bottom:279.598667pt;}
.y6b{bottom:281.798667pt;}
.y6c{bottom:282.398667pt;}
.y6d{bottom:282.465333pt;}
.yb1{bottom:283.265333pt;}
.yb2{bottom:283.532000pt;}
.y1de{bottom:286.065333pt;}
.y137{bottom:286.398667pt;}
.y1dd{bottom:286.666667pt;}
.y297{bottom:286.865333pt;}
.y298{bottom:287.465333pt;}
.y1dc{bottom:287.666667pt;}
.y299{bottom:288.132000pt;}
.yf7{bottom:288.532000pt;}
.y184{bottom:289.932000pt;}
.y2de{bottom:290.666667pt;}
.y25{bottom:291.465333pt;}
.y24{bottom:291.532000pt;}
.y25d{bottom:292.465333pt;}
.y25c{bottom:292.798667pt;}
.y25b{bottom:293.132000pt;}
.y222{bottom:293.333333pt;}
.y25a{bottom:293.465333pt;}
.y259{bottom:293.732000pt;}
.y223{bottom:294.932000pt;}
.y69{bottom:296.865333pt;}
.y6a{bottom:297.532000pt;}
.yae{bottom:298.333333pt;}
.yaf{bottom:298.598667pt;}
.yb0{bottom:298.666667pt;}
.y136{bottom:301.132000pt;}
.y296{bottom:302.798667pt;}
.y1db{bottom:303.398667pt;}
.yf6{bottom:303.865333pt;}
.y183{bottom:304.398667pt;}
.y181{bottom:304.666667pt;}
.y182{bottom:305.000000pt;}
.y23{bottom:306.865333pt;}
.y2dd{bottom:307.932000pt;}
.y220{bottom:308.000000pt;}
.y21f{bottom:308.065333pt;}
.y258{bottom:308.132000pt;}
.y221{bottom:309.333333pt;}
.y68{bottom:311.865333pt;}
.yad{bottom:313.333333pt;}
.y135{bottom:316.465333pt;}
.y295{bottom:316.598667pt;}
.y1da{bottom:317.465333pt;}
.yf5{bottom:318.598667pt;}
.y180{bottom:319.732000pt;}
.y22{bottom:321.265333pt;}
.y257{bottom:323.198667pt;}
.y256{bottom:323.465333pt;}
.y21e{bottom:324.666667pt;}
.y2dc{bottom:325.532000pt;}
.y2db{bottom:326.532000pt;}
.y67{bottom:326.932000pt;}
.yac{bottom:328.398667pt;}
.y133{bottom:331.198667pt;}
.y134{bottom:331.532000pt;}
.y1d9{bottom:332.465333pt;}
.y294{bottom:332.932000pt;}
.yf4{bottom:333.000000pt;}
.yf3{bottom:333.333333pt;}
.yf2{bottom:333.666667pt;}
.y1d8{bottom:333.732000pt;}
.y17e{bottom:333.798667pt;}
.y17f{bottom:334.132000pt;}
.yf1{bottom:334.265333pt;}
.y17d{bottom:334.465333pt;}
.y21{bottom:336.666667pt;}
.y21d{bottom:340.065333pt;}
.y66{bottom:341.333333pt;}
.yab{bottom:343.398667pt;}
.y2da{bottom:343.798667pt;}
.y132{bottom:346.598667pt;}
.y292{bottom:346.932000pt;}
.y1d7{bottom:347.865333pt;}
.y293{bottom:347.932000pt;}
.yf0{bottom:348.732000pt;}
.y1d6{bottom:349.065333pt;}
.y1d5{bottom:349.132000pt;}
.y17b{bottom:349.465333pt;}
.y17a{bottom:349.532000pt;}
.y17c{bottom:349.798667pt;}
.y1f{bottom:351.666667pt;}
.y20{bottom:352.000000pt;}
.y219{bottom:352.798667pt;}
.y21a{bottom:354.132000pt;}
.y21b{bottom:354.465333pt;}
.y21c{bottom:355.732000pt;}
.y63{bottom:356.732000pt;}
.y65{bottom:357.333333pt;}
.y64{bottom:357.666667pt;}
.yaa{bottom:358.398667pt;}
.y131{bottom:361.265333pt;}
.y2d9{bottom:361.666667pt;}
.y291{bottom:362.333333pt;}
.yef{bottom:363.132000pt;}
.yee{bottom:363.398667pt;}
.y1d4{bottom:363.865333pt;}
.yed{bottom:364.000000pt;}
.y179{bottom:364.532000pt;}
.y218{bottom:368.198667pt;}
.y1e{bottom:368.265333pt;}
.y60{bottom:371.732000pt;}
.y62{bottom:372.398667pt;}
.y61{bottom:373.000000pt;}
.ya9{bottom:373.465333pt;}
.y130{bottom:376.333333pt;}
.y28f{bottom:376.732000pt;}
.y290{bottom:377.732000pt;}
.y1d3{bottom:377.932000pt;}
.yec{bottom:378.465333pt;}
.y178{bottom:379.265333pt;}
.yeb{bottom:379.398667pt;}
.y177{bottom:379.532000pt;}
.y174{bottom:379.598667pt;}
.y176{bottom:379.932000pt;}
.y175{bottom:380.198667pt;}
.y2d8{bottom:380.265333pt;}
.y217{bottom:384.865333pt;}
.y255{bottom:386.598667pt;}
.y5f{bottom:386.798667pt;}
.ya8{bottom:388.198667pt;}
.y12f{bottom:391.666667pt;}
.y28e{bottom:391.732000pt;}
.y1d2{bottom:392.265333pt;}
.y1d1{bottom:393.932000pt;}
.yea{bottom:394.132000pt;}
.y173{bottom:394.598667pt;}
.y2d7{bottom:395.932000pt;}
.y2d6{bottom:397.532000pt;}
.y1d{bottom:398.065333pt;}
.y216{bottom:399.932000pt;}
.y5e{bottom:401.798667pt;}
.y254{bottom:404.465333pt;}
.y12e{bottom:406.398667pt;}
.y28c{bottom:406.465333pt;}
.y1d0{bottom:408.000000pt;}
.y28d{bottom:408.065333pt;}
.ye9{bottom:408.532000pt;}
.y172{bottom:409.666667pt;}
.y214{bottom:413.333333pt;}
.y1c{bottom:413.798667pt;}
.y215{bottom:414.932000pt;}
.y2d5{bottom:415.132000pt;}
.y5d{bottom:416.198667pt;}
.y12c{bottom:421.398667pt;}
.y12d{bottom:421.465333pt;}
.y28a{bottom:421.532000pt;}
.y28b{bottom:422.465333pt;}
.y253{bottom:423.333333pt;}
.ye8{bottom:423.865333pt;}
.ye7{bottom:423.932000pt;}
.y1cf{bottom:424.333333pt;}
.y170{bottom:424.666667pt;}
.y171{bottom:424.732000pt;}
.y1b{bottom:428.532000pt;}
.y20f{bottom:428.666667pt;}
.y210{bottom:429.000000pt;}
.y211{bottom:429.932000pt;}
.y212{bottom:430.265333pt;}
.y213{bottom:430.666667pt;}
.y5c{bottom:431.598667pt;}
.y2d4{bottom:433.666667pt;}
.y12b{bottom:436.465333pt;}
.y1ce{bottom:437.465333pt;}
.ye6{bottom:438.932000pt;}
.y1cd{bottom:439.000000pt;}
.y1cc{bottom:439.065333pt;}
.y16f{bottom:439.398667pt;}
.y252{bottom:440.333333pt;}
.y251{bottom:441.198667pt;}
.y250{bottom:441.265333pt;}
.y1a{bottom:443.798667pt;}
.y20c{bottom:444.732000pt;}
.y20d{bottom:445.932000pt;}
.y20e{bottom:446.000000pt;}
.ya7{bottom:446.465333pt;}
.y5b{bottom:446.598667pt;}
.y2d3{bottom:450.666667pt;}
.y12a{bottom:451.198667pt;}
.y1cb{bottom:453.132000pt;}
.ye5{bottom:453.666667pt;}
.y16e{bottom:454.465333pt;}
.y24f{bottom:458.198667pt;}
.y19{bottom:458.865333pt;}
.y20a{bottom:459.132000pt;}
.y24e{bottom:459.198667pt;}
.y20b{bottom:460.732000pt;}
.y5a{bottom:461.333333pt;}
.ya5{bottom:462.798667pt;}
.ya6{bottom:463.065333pt;}
.ya4{bottom:464.333333pt;}
.y128{bottom:465.932000pt;}
.y129{bottom:466.598667pt;}
.y1ca{bottom:467.198667pt;}
.y1c9{bottom:467.798667pt;}
.ye4{bottom:468.398667pt;}
.ye3{bottom:468.666667pt;}
.y1c8{bottom:469.065333pt;}
.y16d{bottom:469.532000pt;}
.y18{bottom:473.932000pt;}
.y209{bottom:474.465333pt;}
.y24d{bottom:475.532000pt;}
.y58{bottom:475.732000pt;}
.y59{bottom:476.732000pt;}
.y289{bottom:477.532000pt;}
.y127{bottom:481.000000pt;}
.ya3{bottom:481.666667pt;}
.y1c7{bottom:482.865333pt;}
.ye2{bottom:483.732000pt;}
.y16c{bottom:484.532000pt;}
.y1c6{bottom:485.065333pt;}
.y2d2{bottom:486.465333pt;}
.y207{bottom:488.198667pt;}
.y17{bottom:488.666667pt;}
.y208{bottom:489.865333pt;}
.y57{bottom:491.398667pt;}
.y24c{bottom:494.398667pt;}
.y288{bottom:495.198667pt;}
.y126{bottom:496.000000pt;}
.y1c5{bottom:497.932000pt;}
.ya2{bottom:499.265333pt;}
.y16b{bottom:499.932000pt;}
.y16{bottom:504.000000pt;}
.y2d1{bottom:504.132000pt;}
.y205{bottom:504.532000pt;}
.y206{bottom:505.865333pt;}
.y56{bottom:506.400000pt;}
.y125{bottom:511.000000pt;}
.y124{bottom:511.066667pt;}
.y24b{bottom:511.333333pt;}
.y1c4{bottom:513.265333pt;}
.y287{bottom:513.400000pt;}
.y16a{bottom:514.932000pt;}
.ye1{bottom:517.333333pt;}
.ya1{bottom:517.465333pt;}
.y13{bottom:518.733333pt;}
.y14{bottom:519.000000pt;}
.y15{bottom:519.066667pt;}
.y204{bottom:519.532000pt;}
.y54{bottom:521.132000pt;}
.y2d0{bottom:522.000000pt;}
.y55{bottom:522.132000pt;}
.y123{bottom:525.733333pt;}
.y122{bottom:525.798667pt;}
.y1c3{bottom:526.066667pt;}
.y1c2{bottom:526.400000pt;}
.y1c1{bottom:528.666667pt;}
.y24a{bottom:529.000000pt;}
.y169{bottom:529.666667pt;}
.y168{bottom:530.265333pt;}
.y285{bottom:530.666667pt;}
.y286{bottom:531.000000pt;}
.y11{bottom:533.798667pt;}
.y12{bottom:534.066667pt;}
.y203{bottom:534.333333pt;}
.ya0{bottom:535.066667pt;}
.ye0{bottom:535.265333pt;}
.y53{bottom:536.198667pt;}
.y121{bottom:540.798667pt;}
.y167{bottom:545.066667pt;}
.y249{bottom:546.198667pt;}
.y248{bottom:546.932000pt;}
.y10{bottom:548.798667pt;}
.y284{bottom:549.198667pt;}
.y52{bottom:551.265333pt;}
.yde{bottom:552.798667pt;}
.y2cf{bottom:553.066667pt;}
.ydf{bottom:553.132000pt;}
.y9f{bottom:553.333333pt;}
.y120{bottom:555.532000pt;}
.y166{bottom:560.066667pt;}
.y165{bottom:560.333333pt;}
.y164{bottom:560.400000pt;}
.ye{bottom:563.465333pt;}
.yf{bottom:563.865333pt;}
.y247{bottom:564.798667pt;}
.y50{bottom:566.000000pt;}
.y51{bottom:566.598667pt;}
.y283{bottom:567.133333pt;}
.ydd{bottom:570.133333pt;}
.y11e{bottom:570.532000pt;}
.y11f{bottom:570.598667pt;}
.ydc{bottom:570.732000pt;}
.y9e{bottom:570.932000pt;}
.ydb{bottom:571.065333pt;}
.y163{bottom:575.065333pt;}
.y1c0{bottom:577.000000pt;}
.y2ce{bottom:579.932000pt;}
.y4e{bottom:580.666667pt;}
.y4f{bottom:581.333333pt;}
.y246{bottom:581.732000pt;}
.y245{bottom:582.065333pt;}
.y244{bottom:583.333333pt;}
.y282{bottom:585.065333pt;}
.y11d{bottom:585.598667pt;}
.yda{bottom:588.398667pt;}
.y9d{bottom:588.532000pt;}
.y161{bottom:590.133333pt;}
.y162{bottom:590.398667pt;}
.y1bf{bottom:594.865333pt;}
.y4d{bottom:596.065333pt;}
.y2cd{bottom:596.865333pt;}
.y2cc{bottom:597.198667pt;}
.y2cb{bottom:597.865333pt;}
.y11c{bottom:600.333333pt;}
.y202{bottom:601.466667pt;}
.y243{bottom:601.932000pt;}
.y281{bottom:602.666667pt;}
.yd{bottom:603.532000pt;}
.y160{bottom:605.133333pt;}
.y9c{bottom:606.133333pt;}
.yd9{bottom:606.265333pt;}
.y4c{bottom:610.800000pt;}
.y1be{bottom:611.532000pt;}
.y1bd{bottom:612.466667pt;}
.y1bc{bottom:613.732000pt;}
.y2ca{bottom:615.466667pt;}
.y1ff{bottom:617.466667pt;}
.y200{bottom:618.133333pt;}
.y242{bottom:618.865333pt;}
.y15e{bottom:619.865333pt;}
.y201{bottom:620.000000pt;}
.y15f{bottom:620.198667pt;}
.y280{bottom:620.598667pt;}
.yc{bottom:621.398667pt;}
.yb{bottom:621.466667pt;}
.yd8{bottom:623.865333pt;}
.y9b{bottom:624.333333pt;}
.y4b{bottom:625.800000pt;}
.y1bb{bottom:629.732000pt;}
.y1ba{bottom:630.932000pt;}
.y1b9{bottom:632.000000pt;}
.y2c9{bottom:632.398667pt;}
.y2c8{bottom:633.598667pt;}
.y2c7{bottom:634.398667pt;}
.y15c{bottom:634.932000pt;}
.y15d{bottom:635.198667pt;}
.y241{bottom:636.466667pt;}
.y1fe{bottom:637.333333pt;}
.y27f{bottom:638.198667pt;}
.ya{bottom:639.000000pt;}
.y8{bottom:639.333333pt;}
.y9{bottom:639.398667pt;}
.y4a{bottom:639.865333pt;}
.yd7{bottom:641.133333pt;}
.y9a{bottom:641.666667pt;}
.yd6{bottom:641.800000pt;}
.y1b8{bottom:647.666667pt;}
.y1b7{bottom:649.265333pt;}
.y2c6{bottom:649.666667pt;}
.y1b6{bottom:649.932000pt;}
.y2c5{bottom:650.333333pt;}
.y1b5{bottom:650.532000pt;}
.y2c4{bottom:651.333333pt;}
.y119{bottom:651.532000pt;}
.y11b{bottom:651.800000pt;}
.y11a{bottom:651.865333pt;}
.y240{bottom:654.398667pt;}
.y1fd{bottom:654.932000pt;}
.y47{bottom:655.532000pt;}
.y48{bottom:655.865333pt;}
.y49{bottom:655.932000pt;}
.y27e{bottom:656.398667pt;}
.yd5{bottom:659.398667pt;}
.y99{bottom:660.865333pt;}
.y7{bottom:663.065333pt;}
.y6{bottom:663.398667pt;}
.y1b4{bottom:665.598667pt;}
.y2c3{bottom:668.598667pt;}
.y45{bottom:669.598667pt;}
.y46{bottom:670.598667pt;}
.y23f{bottom:672.000000pt;}
.y1f9{bottom:672.198667pt;}
.y1fa{bottom:672.532000pt;}
.y1fb{bottom:673.133333pt;}
.y1fc{bottom:673.466667pt;}
.y27d{bottom:674.333333pt;}
.y98{bottom:676.532000pt;}
.yd4{bottom:676.666667pt;}
.y97{bottom:677.133333pt;}
.yd3{bottom:677.333333pt;}
.y96{bottom:678.133333pt;}
.y118{bottom:681.265333pt;}
.y44{bottom:683.732000pt;}
.y1b3{bottom:685.133333pt;}
.y2c2{bottom:686.198667pt;}
.y15b{bottom:686.800000pt;}
.y159{bottom:687.065333pt;}
.y15a{bottom:687.133333pt;}
.y27c{bottom:692.266667pt;}
.y5{bottom:693.398667pt;}
.y95{bottom:694.466667pt;}
.yd2{bottom:694.600000pt;}
.yd1{bottom:694.933333pt;}
.yd0{bottom:695.198667pt;}
.y94{bottom:695.732000pt;}
.y93{bottom:696.065333pt;}
.y1b2{bottom:701.732000pt;}
.y23e{bottom:703.398667pt;}
.y2c1{bottom:704.398667pt;}
.y158{bottom:704.666667pt;}
.y157{bottom:705.000000pt;}
.y42{bottom:709.000000pt;}
.y43{bottom:709.666667pt;}
.y27b{bottom:709.865333pt;}
.y117{bottom:711.666667pt;}
.ycf{bottom:712.532000pt;}
.yce{bottom:712.865333pt;}
.ycd{bottom:713.198667pt;}
.y1f7{bottom:716.732000pt;}
.y1f8{bottom:717.333333pt;}
.y1b1{bottom:719.398667pt;}
.y156{bottom:721.666667pt;}
.y154{bottom:721.933333pt;}
.y155{bottom:722.000000pt;}
.y153{bottom:722.333333pt;}
.y152{bottom:722.600000pt;}
.y92{bottom:725.532000pt;}
.y91{bottom:726.133333pt;}
.y40{bottom:727.532000pt;}
.y27a{bottom:727.732000pt;}
.y41{bottom:727.865333pt;}
.y116{bottom:729.266667pt;}
.y115{bottom:729.600000pt;}
.ycc{bottom:730.133333pt;}
.y4{bottom:730.266667pt;}
.y3{bottom:730.600000pt;}
.y1b0{bottom:737.600000pt;}
.y2c0{bottom:739.933333pt;}
.y23d{bottom:741.133333pt;}
.y3d{bottom:745.133333pt;}
.y279{bottom:745.398667pt;}
.y3f{bottom:745.532000pt;}
.y3e{bottom:745.800000pt;}
.y114{bottom:746.532000pt;}
.y113{bottom:746.865333pt;}
.ycb{bottom:748.065333pt;}
.y1af{bottom:752.333333pt;}
.y150{bottom:752.732000pt;}
.y151{bottom:753.000000pt;}
.y1ae{bottom:754.198667pt;}
.y1ad{bottom:755.198667pt;}
.y1ac{bottom:756.133333pt;}
.y90{bottom:756.198667pt;}
.y1ab{bottom:756.466667pt;}
.y2{bottom:756.800000pt;}
.y1aa{bottom:757.065333pt;}
.y2bf{bottom:757.532000pt;}
.y1a9{bottom:757.732000pt;}
.y23c{bottom:758.732000pt;}
.y1f6{bottom:762.398667pt;}
.y3c{bottom:763.133333pt;}
.y112{bottom:764.133333pt;}
.y111{bottom:764.198667pt;}
.y110{bottom:764.466667pt;}
.y278{bottom:764.600000pt;}
.y10f{bottom:764.800000pt;}
.yca{bottom:765.000000pt;}
.yc9{bottom:765.666667pt;}
.y1{bottom:770.266667pt;}
.y8f{bottom:773.133333pt;}
.y2be{bottom:775.466667pt;}
.y1f5{bottom:780.666667pt;}
.y3b{bottom:781.000000pt;}
.y277{bottom:782.466667pt;}
.yc8{bottom:783.865333pt;}
.y14f{bottom:785.933333pt;}
.y1a8{bottom:786.865333pt;}
.y23b{bottom:788.800000pt;}
.y8e{bottom:789.532000pt;}
.y8d{bottom:790.065333pt;}
.y8c{bottom:791.133333pt;}
.y8b{bottom:792.398667pt;}
.y8a{bottom:792.666667pt;}
.y2bd{bottom:793.333333pt;}
.y10e{bottom:797.800000pt;}
.y3a{bottom:798.266667pt;}
.y1f4{bottom:798.333333pt;}
.y275{bottom:800.065333pt;}
.y276{bottom:800.133333pt;}
.yc7{bottom:801.133333pt;}
.yc6{bottom:801.532000pt;}
.yc5{bottom:802.133333pt;}
.y14e{bottom:802.600000pt;}
.y14d{bottom:802.933333pt;}
.y14c{bottom:803.198667pt;}
.y14b{bottom:803.532000pt;}
.y14a{bottom:803.600000pt;}
.y149{bottom:803.865333pt;}
.y89{bottom:808.666667pt;}
.y2bc{bottom:810.398667pt;}
.y2bb{bottom:813.198667pt;}
.y39{bottom:816.532000pt;}
.yc4{bottom:819.133333pt;}
.y1f3{bottom:831.600000pt;}
.y274{bottom:833.333333pt;}
.y1a7{bottom:833.865333pt;}
.y1a6{bottom:834.198667pt;}
.y1a5{bottom:834.266667pt;}
.y148{bottom:836.532000pt;}
.y23a{bottom:837.133333pt;}
.y239{bottom:837.466667pt;}
.y88{bottom:842.000000pt;}
.y2ba{bottom:844.532000pt;}
.y2b9{bottom:844.600000pt;}
.y10d{bottom:845.466667pt;}
.y38{bottom:846.333333pt;}
.yc3{bottom:849.198667pt;}
.hb{height:20.937500pt;}
.h11{height:36.622396pt;}
.h5{height:36.640625pt;}
.h13{height:41.854167pt;}
.h2{height:41.875000pt;}
.h16{height:47.085938pt;}
.ha{height:47.109375pt;}
.h1a{height:48.375000pt;}
.h4{height:49.968750pt;}
.h3{height:50.062500pt;}
.h18{height:50.210417pt;}
.hc{height:52.317708pt;}
.h9{height:52.343750pt;}
.h6{height:53.750000pt;}
.hd{height:57.549479pt;}
.h8{height:57.578125pt;}
.h19{height:59.125000pt;}
.hf{height:62.781250pt;}
.h15{height:62.812500pt;}
.he{height:64.500000pt;}
.h7{height:68.046875pt;}
.h17{height:69.875000pt;}
.h1{height:157.031250pt;}
.h1b{height:898.666667pt;}
.h10{height:901.333333pt;}
.h12{height:905.333333pt;}
.h14{height:909.333333pt;}
.h0{height:912.000000pt;}
.h1c{height:914.666667pt;}
.w7{width:578.666667pt;}
.w6{width:580.000000pt;}
.w4{width:586.666667pt;}
.w2{width:588.000000pt;}
.w1{width:590.666667pt;}
.w8{width:592.000000pt;}
.w0{width:593.333333pt;}
.w5{width:597.333333pt;}
.w3{width:600.000000pt;}
.x0{left:0.000000pt;}
.xcb{left:41.266667pt;}
.x59{left:42.266667pt;}
.x4b{left:43.865333pt;}
.x3{left:45.733333pt;}
.x1c{left:46.733333pt;}
.x7f{left:48.333333pt;}
.xe4{left:51.533333pt;}
.xdc{left:52.466667pt;}
.xdb{left:53.466667pt;}
.xd9{left:54.733333pt;}
.x90{left:60.133333pt;}
.xe1{left:62.400000pt;}
.xc7{left:65.266667pt;}
.x5a{left:66.266667pt;}
.x58{left:67.533333pt;}
.xe6{left:68.800000pt;}
.x17{left:69.733333pt;}
.x10{left:70.733333pt;}
.x55{left:71.666667pt;}
.x4a{left:72.933333pt;}
.x8{left:74.266667pt;}
.x1{left:75.200000pt;}
.x27{left:76.133333pt;}
.x1a{left:77.733333pt;}
.x65{left:78.733333pt;}
.xa7{left:80.333333pt;}
.xa1{left:81.266667pt;}
.x21{left:82.533333pt;}
.x5d{left:84.800000pt;}
.x4c{left:86.065333pt;}
.x50{left:87.065333pt;}
.x4{left:89.933333pt;}
.xb6{left:92.800000pt;}
.xe{left:93.732000pt;}
.x5e{left:95.065333pt;}
.x8c{left:96.666667pt;}
.xb2{left:97.600000pt;}
.x6e{left:99.200000pt;}
.xe0{left:100.133333pt;}
.x1d{left:101.133333pt;}
.xac{left:102.400000pt;}
.x60{left:104.000000pt;}
.x28{left:104.933333pt;}
.x9b{left:106.533333pt;}
.xcf{left:108.133333pt;}
.x4d{left:109.466667pt;}
.x95{left:110.400000pt;}
.xad{left:112.666667pt;}
.x8d{left:115.200000pt;}
.xe9{left:116.800000pt;}
.x22{left:118.066667pt;}
.xc5{left:120.333333pt;}
.x6f{left:122.533333pt;}
.x2e{left:124.466667pt;}
.x8e{left:125.466667pt;}
.xd3{left:126.733333pt;}
.xba{left:127.666667pt;}
.xa4{left:128.666667pt;}
.x41{left:129.600000pt;}
.x42{left:139.866667pt;}
.x9{left:147.866667pt;}
.x92{left:149.133333pt;}
.xf5{left:151.066667pt;}
.x9c{left:157.733333pt;}
.xcd{left:159.066667pt;}
.x35{left:166.400000pt;}
.xa{left:168.333333pt;}
.x80{left:169.600000pt;}
.x91{left:170.866667pt;}
.xbe{left:174.733333pt;}
.x83{left:176.000000pt;}
.xd0{left:176.933333pt;}
.x9d{left:178.533333pt;}
.x96{left:180.132000pt;}
.x13{left:181.465333pt;}
.x75{left:183.066667pt;}
.x11{left:184.666667pt;}
.xd1{left:186.866667pt;}
.x18{left:189.132000pt;}
.x12{left:190.066667pt;}
.x9f{left:191.333333pt;}
.x51{left:192.666667pt;}
.xa0{left:193.933333pt;}
.x97{left:195.200000pt;}
.x7a{left:198.733333pt;}
.x1e{left:200.333333pt;}
.xda{left:201.600000pt;}
.x81{left:204.465333pt;}
.xd4{left:205.466667pt;}
.xd5{left:206.400000pt;}
.xd6{left:207.333333pt;}
.x7b{left:208.933333pt;}
.x1f{left:210.533333pt;}
.xed{left:211.866667pt;}
.x84{left:213.133333pt;}
.x2d{left:215.333333pt;}
.xe5{left:216.666667pt;}
.xa2{left:217.933333pt;}
.xea{left:219.866667pt;}
.x66{left:220.800000pt;}
.xc1{left:222.733333pt;}
.xbb{left:224.666667pt;}
.x94{left:226.266667pt;}
.xa3{left:228.133333pt;}
.x14{left:229.133333pt;}
.x52{left:231.666667pt;}
.xbc{left:234.866667pt;}
.x6{left:237.466667pt;}
.xc9{left:238.400000pt;}
.xef{left:239.666667pt;}
.x7{left:240.666667pt;}
.xf0{left:241.600000pt;}
.x49{left:243.533333pt;}
.xb0{left:245.133333pt;}
.x47{left:246.733333pt;}
.x7e{left:248.000000pt;}
.xb1{left:249.600000pt;}
.x8a{left:250.533333pt;}
.x61{left:252.133333pt;}
.xbf{left:253.733333pt;}
.x85{left:255.666667pt;}
.x48{left:256.666667pt;}
.xa9{left:257.933333pt;}
.xa8{left:259.200000pt;}
.x4f{left:263.666667pt;}
.xd2{left:264.666667pt;}
.x2{left:265.600000pt;}
.xbd{left:268.466667pt;}
.x23{left:270.733333pt;}
.x72{left:271.666667pt;}
.x86{left:273.600000pt;}
.x26{left:274.533333pt;}
.x5f{left:276.133333pt;}
.xb4{left:278.400000pt;}
.x15{left:280.000000pt;}
.x73{left:280.933333pt;}
.x8f{left:282.533333pt;}
.x87{left:284.133333pt;}
.xc0{left:286.400000pt;}
.x53{left:289.600000pt;}
.x43{left:290.533333pt;}
.x1b{left:295.666667pt;}
.x67{left:297.933333pt;}
.x44{left:301.133333pt;}
.xc4{left:305.600000pt;}
.xb3{left:308.133333pt;}
.x5{left:309.133333pt;}
.xd8{left:310.066667pt;}
.xf2{left:311.666667pt;}
.x24{left:312.666667pt;}
.x88{left:314.266667pt;}
.xb7{left:315.200000pt;}
.x30{left:316.466667pt;}
.x25{left:322.266667pt;}
.xe3{left:323.533333pt;}
.x89{left:324.466667pt;}
.xb8{left:325.466667pt;}
.x31{left:327.066667pt;}
.x16{left:328.000000pt;}
.xe7{left:330.866667pt;}
.x78{left:332.800000pt;}
.x70{left:333.733333pt;}
.xc8{left:338.266667pt;}
.x20{left:339.200000pt;}
.xe8{left:341.466667pt;}
.x79{left:342.733333pt;}
.x29{left:344.932000pt;}
.x71{left:347.200000pt;}
.xa5{left:348.466667pt;}
.x54{left:350.400000pt;}
.x6b{left:353.265333pt;}
.xc6{left:355.533333pt;}
.xa6{left:358.733333pt;}
.xd7{left:360.333333pt;}
.x5c{left:361.932000pt;}
.xf1{left:362.866667pt;}
.x6c{left:365.133333pt;}
.x19{left:366.400000pt;}
.x2f{left:368.333333pt;}
.xcc{left:370.265333pt;}
.x4e{left:371.866667pt;}
.x9e{left:375.333333pt;}
.xb{left:378.265333pt;}
.xc{left:380.466667pt;}
.x74{left:384.000000pt;}
.xf3{left:384.932000pt;}
.x98{left:387.533333pt;}
.x5b{left:388.800000pt;}
.x3e{left:389.733333pt;}
.x76{left:392.000000pt;}
.x56{left:394.265333pt;}
.xaa{left:399.066667pt;}
.x3f{left:400.000000pt;}
.x77{left:401.598667pt;}
.xf4{left:402.533333pt;}
.xeb{left:406.400000pt;}
.xab{left:409.265333pt;}
.x6d{left:414.066667pt;}
.xdd{left:417.266667pt;}
.x38{left:419.533333pt;}
.x7c{left:420.800000pt;}
.x2a{left:424.666667pt;}
.x39{left:429.733333pt;}
.x2b{left:432.333333pt;}
.x68{left:440.333333pt;}
.x99{left:441.600000pt;}
.x9a{left:442.866667pt;}
.x82{left:445.466667pt;}
.xca{left:448.333333pt;}
.xf{left:451.866667pt;}
.x2c{left:454.733333pt;}
.xc2{left:459.200000pt;}
.xce{left:461.133333pt;}
.x45{left:463.333333pt;}
.x3d{left:465.600000pt;}
.x57{left:466.866667pt;}
.xc3{left:468.466667pt;}
.x46{left:472.666667pt;}
.xee{left:473.600000pt;}
.xb5{left:476.800000pt;}
.xec{left:477.733333pt;}
.x62{left:480.000000pt;}
.xd{left:483.200000pt;}
.xb9{left:485.133333pt;}
.x33{left:487.333333pt;}
.x3b{left:489.933333pt;}
.x7d{left:490.866667pt;}
.x36{left:491.866667pt;}
.x8b{left:493.466667pt;}
.xe2{left:495.666667pt;}
.x34{left:496.666667pt;}
.x69{left:499.533333pt;}
.xde{left:502.400000pt;}
.x63{left:505.600000pt;}
.x37{left:507.533333pt;}
.xdf{left:508.800000pt;}
.x3c{left:512.666667pt;}
.xae{left:515.533333pt;}
.x64{left:522.266667pt;}
.x93{left:524.133333pt;}
.x6a{left:527.666667pt;}
.xaf{left:530.533333pt;}
.x40{left:533.466667pt;}
.x32{left:535.333333pt;}
.x3a{left:536.666667pt;}
}




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