
    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_101250300bda69afa29fceb5.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_14eca174dc29155b6ce4f477.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_efd58abe3bc94497e50e492f.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_130fbcc6e1ea330796ef5327.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_c8244bdcc43f4e624cc39894.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_72b262c4de678506ae43232b.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_52f0d46e115a8385d8b8cf94.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_00ceaf786fb94d9f50dee37d.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_ac958ad54f7d28e2d5c18824.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_acee2a9ec6768efeeace0d41.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_2473216506bb7d1052da418c.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_c309bcec78320890e4dd8bec.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_e322d986d663530d3df17b77.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_c47c1ada57e31120358b51fd.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_09fdeae7e418141da3ac23e9.woff2')format("woff");}.fff{font-family:fff;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_13c6431547ca62f922c1a1fe.woff2')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_dc1aa49154bf05662b856098.woff2')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_58e9d7d5d5637a9007a0091c.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_7f8b8c99f7ef3fdb2ead5b4b.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_e47bb1db554e39e04db3df5a.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_e14df40a674ce9a727fc9999.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_61566d4de250f073a1933ad4.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_2e0ecab4624a578924779807.woff2')format("woff");}.ff17{font-family:ff17;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url('chunks/assets/font_99244e09f9f53940dee2e4ee.woff2')format("woff");}.ff18{font-family:ff18;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:ff19;src:url('chunks/assets/font_f579f6bdbca8aee1a28608b8.woff2')format("woff");}.ff19{font-family:ff19;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a;src:url('chunks/assets/font_8f7559783694db97eb7f99c5.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b;src:url('chunks/assets/font_013c574dafdae8cf296425da.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c;src:url('chunks/assets/font_fa7f4d4bfbe4af7364dea91d.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1d;src:url('chunks/assets/font_85b258c30b33b4ba2f5cbecb.woff2')format("woff");}.ff1d{font-family:ff1d;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:ff1e;src:url('chunks/assets/font_85d998744529579dfe668bfe.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_98a7ec5fd4c96284f309f0eb.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_6aefff00fd4e9e4f138ccd7b.woff2')format("woff");}.ff20{font-family:ff20;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff21;src:url('chunks/assets/font_82e2b90954751ec3d96fdba0.woff2')format("woff");}.ff21{font-family:ff21;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:ff22;src:url('chunks/assets/font_15d88b337dfa4a877640e170.woff2')format("woff");}.ff22{font-family:ff22;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:ff23;src:url('chunks/assets/font_0c8dd56ea0d1936e23b57ab2.woff2')format("woff");}.ff23{font-family:ff23;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:ff24;src:url('chunks/assets/font_0f4c46ab798e7039fc662fc7.woff2')format("woff");}.ff24{font-family:ff24;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:ff25;src:url('chunks/assets/font_7a482beb78ee5b2620c89099.woff2')format("woff");}.ff25{font-family:ff25;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff26;src:url('chunks/assets/font_4c622f80b7ec5008b65cf96d.woff2')format("woff");}.ff26{font-family:ff26;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:ff27;src:url('chunks/assets/font_ab947b45851acaa5f131949a.woff2')format("woff");}.ff27{font-family:ff27;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;}
.m61{transform:matrix(0.042500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.042500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.042500,0.000000,0.000000,0.250000,0,0);}
.m4e{transform:matrix(0.045000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.045000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.045000,0.000000,0.000000,0.250000,0,0);}
.m7{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);}
.m41{transform:matrix(0.077500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.077500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.077500,0.000000,0.000000,0.250000,0,0);}
.m59{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);}
.m74{transform:matrix(0.092500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.092500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.092500,0.000000,0.000000,0.250000,0,0);}
.m5c{transform:matrix(0.105000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105000,0.000000,0.000000,0.250000,0,0);}
.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);}
.m42{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);}
.m55{transform:matrix(0.127500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127500,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);}
.m37{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);}
.m4c{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);}
.m52{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m75{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.m44{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.m45{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m65{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);}
.m68{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);}
.m12{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);}
.m76{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m64{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);}
.m5f{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m49{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m67{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.mf{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);}
.m47{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);}
.m4b{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m46{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);}
.m73{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);}
.m40{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);}
.m3c{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);}
.m50{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);}
.m9{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);}
.m2b{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);}
.m11{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);}
.mb{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);}
.m36{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);}
.m23{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);}
.m8{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);}
.m39{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);}
.m34{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m4{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);}
.m24{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);}
.me{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);}
.m3a{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m19{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);}
.m6{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);}
.m25{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);}
.m1a{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);}
.m18{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);}
.m21{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);}
.m32{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);}
.m1e{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);}
.m20{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);}
.m15{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);}
.m28{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);}
.m35{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m14{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);}
.m31{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);}
.m1c{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);}
.m3e{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m2c{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);}
.m6b{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);}
.m38{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);}
.m1b{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);}
.m5{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m4d{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m33{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.mc{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);}
.m62{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);}
.m57{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m72{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);}
.m13{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);}
.m30{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);}
.m2e{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);}
.m51{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m5a{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);}
.m6a{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.m17{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);}
.m2a{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m5b{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m66{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.410000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410000,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);}
.m71{transform:matrix(0.487500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487500,0.000000,0.000000,0.250000,0,0);}
.m58{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m4a{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m56{transform:matrix(0.562500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562500,0.000000,0.000000,0.250000,0,0);}
.m5e{transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);}
.m77{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);}
.m69{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);}
.m4f{transform:matrix(0.655000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.655000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.655000,0.000000,0.000000,0.250000,0,0);}
.m54{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);}
.m3f{transform:matrix(0.672500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.672500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.672500,0.000000,0.000000,0.250000,0,0);}
.m63{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);}
.m22{transform:matrix(0.740000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.740000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.740000,0.000000,0.000000,0.250000,0,0);}
.m60{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);}
.m3d{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);}
.m70{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);}
.m48{transform:matrix(3.487500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.487500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.487500,0.000000,0.000000,0.250000,0,0);}
.m3b{transform:matrix(3.647500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.647500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.647500,0.000000,0.000000,0.250000,0,0);}
.m6e{transform:matrix(3.662500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.662500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.662500,0.000000,0.000000,0.250000,0,0);}
.m43{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);}
.m5d{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);}
.m53{transform:matrix(3.775000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.775000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.775000,0.000000,0.000000,0.250000,0,0);}
.m6d{transform:matrix(3.900000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.900000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.900000,0.000000,0.000000,0.250000,0,0);}
.ma{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:-9.900000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:1.200000px;}
.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;}
._2{margin-left:-24.684366px;}
._0{margin-left:-2.169204px;}
._1{width:19.183884px;}
.fc0{color:transparent;}
.fs9{font-size:36.000000px;}
.fs7{font-size:42.000000px;}
.fs8{font-size:48.000000px;}
.fs1{font-size:54.000000px;}
.fs5{font-size:60.000000px;}
.fs4{font-size:66.000000px;}
.fs3{font-size:72.000000px;}
.fsa{font-size:78.000000px;}
.fs6{font-size:84.000000px;}
.fs2{font-size:96.000000px;}
.fs0{font-size:174.000000px;}
.y0{bottom:0.000000px;}
.y2a3{bottom:83.398500px;}
.y2a4{bottom:86.698500px;}
.y117{bottom:87.673500px;}
.y1a8{bottom:89.923500px;}
.y158{bottom:90.598500px;}
.y26e{bottom:93.223500px;}
.y26d{bottom:94.348500px;}
.y3e{bottom:96.523500px;}
.y9a{bottom:97.348500px;}
.ye6{bottom:97.423500px;}
.y9b{bottom:98.698500px;}
.y9c{bottom:100.198500px;}
.y2a2{bottom:102.525000px;}
.y302{bottom:104.098500px;}
.y116{bottom:104.173500px;}
.y227{bottom:105.973500px;}
.y1a6{bottom:106.500000px;}
.y1dd{bottom:106.948500px;}
.y155{bottom:107.548500px;}
.y1a7{bottom:107.625000px;}
.y156{bottom:107.848500px;}
.y157{bottom:107.923500px;}
.y3d{bottom:111.598500px;}
.y26c{bottom:111.973500px;}
.y3c{bottom:113.025000px;}
.y3b{bottom:113.775000px;}
.y99{bottom:114.298500px;}
.y3a{bottom:114.525000px;}
.ye5{bottom:114.750000px;}
.y2a1{bottom:117.298500px;}
.y226{bottom:119.025000px;}
.y225{bottom:119.323500px;}
.y301{bottom:121.048500px;}
.y300{bottom:121.348500px;}
.y224{bottom:121.500000px;}
.y2ff{bottom:121.723500px;}
.y115{bottom:121.875000px;}
.y2fe{bottom:122.098500px;}
.y1a5{bottom:123.448500px;}
.y154{bottom:124.798500px;}
.y1dc{bottom:126.750000px;}
.y26b{bottom:127.125000px;}
.y39{bottom:128.923500px;}
.y96{bottom:129.000000px;}
.y38{bottom:129.223500px;}
.y26a{bottom:129.598500px;}
.y37{bottom:130.348500px;}
.y97{bottom:130.423500px;}
.y98{bottom:131.098500px;}
.ye2{bottom:131.698500px;}
.ye3{bottom:132.000000px;}
.y36{bottom:132.150000px;}
.ye4{bottom:132.298500px;}
.y223{bottom:136.275000px;}
.y2fd{bottom:136.500000px;}
.y2fc{bottom:136.798500px;}
.y2fb{bottom:136.875000px;}
.y222{bottom:136.948500px;}
.y2fa{bottom:137.173500px;}
.y2a0{bottom:137.400000px;}
.y2f9{bottom:137.548500px;}
.y2f8{bottom:137.625000px;}
.y2f7{bottom:137.923500px;}
.y2f6{bottom:138.298500px;}
.y113{bottom:138.823500px;}
.y114{bottom:140.548500px;}
.y151{bottom:141.375000px;}
.y1a4{bottom:141.448500px;}
.y1db{bottom:141.598500px;}
.y152{bottom:141.673500px;}
.y153{bottom:141.750000px;}
.y269{bottom:145.423500px;}
.y268{bottom:145.798500px;}
.y267{bottom:146.173500px;}
.y35{bottom:146.548500px;}
.y93{bottom:147.000000px;}
.y34{bottom:147.973500px;}
.ye0{bottom:148.198500px;}
.y33{bottom:148.650000px;}
.ye1{bottom:148.875000px;}
.y94{bottom:149.098500px;}
.y95{bottom:149.848500px;}
.y29f{bottom:151.798500px;}
.y2f5{bottom:153.448500px;}
.y2f4{bottom:153.750000px;}
.y2f3{bottom:154.125000px;}
.y111{bottom:154.198500px;}
.y2f2{bottom:154.500000px;}
.y2f1{bottom:154.875000px;}
.y2f0{bottom:155.173500px;}
.y221{bottom:155.323500px;}
.y112{bottom:156.073500px;}
.y19e{bottom:157.573500px;}
.y19f{bottom:157.948500px;}
.y1a0{bottom:158.025000px;}
.y150{bottom:158.625000px;}
.y1a1{bottom:158.698500px;}
.y1a2{bottom:159.000000px;}
.y1a3{bottom:159.448500px;}
.y1da{bottom:159.900000px;}
.y266{bottom:160.198500px;}
.y265{bottom:161.250000px;}
.y264{bottom:162.375000px;}
.y91{bottom:162.448500px;}
.y92{bottom:165.375000px;}
.yde{bottom:165.448500px;}
.ydf{bottom:165.823500px;}
.y220{bottom:170.400000px;}
.y21f{bottom:170.775000px;}
.y29e{bottom:170.848500px;}
.y2ef{bottom:171.073500px;}
.y2ee{bottom:171.448500px;}
.y2ed{bottom:171.750000px;}
.y2ec{bottom:171.823500px;}
.y2ea{bottom:172.125000px;}
.y2eb{bottom:172.198500px;}
.y21e{bottom:172.275000px;}
.y2e9{bottom:172.500000px;}
.y21d{bottom:174.375000px;}
.y19c{bottom:174.525000px;}
.y19d{bottom:174.598500px;}
.y14f{bottom:175.573500px;}
.y263{bottom:176.775000px;}
.y1d9{bottom:176.848500px;}
.y262{bottom:177.073500px;}
.y261{bottom:178.948500px;}
.y90{bottom:179.098500px;}
.ydd{bottom:182.775000px;}
.y29d{bottom:187.500000px;}
.y2e7{bottom:187.573500px;}
.y2e8{bottom:187.650000px;}
.y2e6{bottom:187.948500px;}
.y2e5{bottom:188.323500px;}
.y21c{bottom:188.473500px;}
.y2e4{bottom:189.073500px;}
.y21b{bottom:189.150000px;}
.y21a{bottom:189.900000px;}
.y219{bottom:190.573500px;}
.y218{bottom:191.025000px;}
.y1d7{bottom:191.173500px;}
.y19a{bottom:191.473500px;}
.y217{bottom:191.698500px;}
.y14d{bottom:192.073500px;}
.y14e{bottom:192.150000px;}
.y19b{bottom:192.525000px;}
.y1d8{bottom:194.098500px;}
.y8d{bottom:196.348500px;}
.y8e{bottom:197.025000px;}
.y260{bottom:197.625000px;}
.y32e{bottom:198.973500px;}
.y32{bottom:199.048500px;}
.y8f{bottom:199.573500px;}
.ydc{bottom:199.650000px;}
.y29a{bottom:202.948500px;}
.y216{bottom:204.673500px;}
.y29b{bottom:205.048500px;}
.y2e3{bottom:205.275000px;}
.y215{bottom:206.098500px;}
.y29c{bottom:206.548500px;}
.y214{bottom:207.525000px;}
.y1d6{bottom:209.250000px;}
.y14c{bottom:209.400000px;}
.y198{bottom:209.473500px;}
.y199{bottom:210.150000px;}
.y25f{bottom:210.973500px;}
.y25e{bottom:212.025000px;}
.y25d{bottom:212.775000px;}
.y8a{bottom:213.598500px;}
.y25c{bottom:213.823500px;}
.y110{bottom:213.973500px;}
.y8b{bottom:214.348500px;}
.y25b{bottom:214.573500px;}
.yda{bottom:216.223500px;}
.y32d{bottom:216.298500px;}
.y8c{bottom:216.525000px;}
.ydb{bottom:216.598500px;}
.y299{bottom:218.025000px;}
.y31{bottom:218.473500px;}
.y2e2{bottom:221.400000px;}
.y2e1{bottom:221.775000px;}
.y2e0{bottom:222.525000px;}
.y213{bottom:222.598500px;}
.y212{bottom:224.775000px;}
.y1d4{bottom:225.000000px;}
.y1d3{bottom:225.073500px;}
.y211{bottom:225.223500px;}
.y197{bottom:225.598500px;}
.y148{bottom:225.900000px;}
.y14a{bottom:225.973500px;}
.y149{bottom:226.275000px;}
.y14b{bottom:226.348500px;}
.y1d5{bottom:228.000000px;}
.y25a{bottom:229.723500px;}
.y89{bottom:231.598500px;}
.y32c{bottom:232.125000px;}
.yd7{bottom:232.798500px;}
.yd8{bottom:233.098500px;}
.yd9{bottom:233.473500px;}
.y10f{bottom:234.223500px;}
.y298{bottom:238.198500px;}
.y30{bottom:238.650000px;}
.y2df{bottom:239.098500px;}
.y210{bottom:240.298500px;}
.y147{bottom:242.923500px;}
.y196{bottom:243.298500px;}
.y259{bottom:244.500000px;}
.y258{bottom:244.798500px;}
.y257{bottom:246.973500px;}
.y88{bottom:249.598500px;}
.y329{bottom:249.673500px;}
.yd6{bottom:250.125000px;}
.y32a{bottom:250.798500px;}
.y32b{bottom:251.098500px;}
.y10e{bottom:254.398500px;}
.y297{bottom:255.148500px;}
.y2de{bottom:256.048500px;}
.y20f{bottom:256.875000px;}
.y2f{bottom:259.198500px;}
.y146{bottom:259.798500px;}
.y195{bottom:260.548500px;}
.y256{bottom:264.898500px;}
.y327{bottom:265.500000px;}
.y328{bottom:265.573500px;}
.yd4{bottom:266.250000px;}
.yd3{bottom:266.323500px;}
.y87{bottom:266.548500px;}
.yd5{bottom:267.000000px;}
.y295{bottom:270.598500px;}
.y2dd{bottom:271.875000px;}
.y2dc{bottom:272.923500px;}
.y296{bottom:273.448500px;}
.y20e{bottom:273.750000px;}
.y10d{bottom:273.823500px;}
.y1d2{bottom:275.773500px;}
.y191{bottom:276.448500px;}
.y145{bottom:276.750000px;}
.y192{bottom:277.500000px;}
.y193{bottom:277.798500px;}
.y194{bottom:277.875000px;}
.y2e{bottom:278.625000px;}
.y255{bottom:280.423500px;}
.y86{bottom:283.423500px;}
.y326{bottom:283.500000px;}
.yd2{bottom:283.573500px;}
.y293{bottom:285.673500px;}
.y294{bottom:288.598500px;}
.y2db{bottom:290.250000px;}
.y20d{bottom:290.323500px;}
.y144{bottom:293.625000px;}
.y10c{bottom:294.673500px;}
.y190{bottom:294.750000px;}
.y1cf{bottom:295.273500px;}
.y1d0{bottom:295.948500px;}
.y254{bottom:296.625000px;}
.y1d1{bottom:296.698500px;}
.y2d{bottom:297.750000px;}
.y253{bottom:298.125000px;}
.y252{bottom:299.173500px;}
.y2c{bottom:299.548500px;}
.y85{bottom:300.375000px;}
.y325{bottom:300.523500px;}
.y2b{bottom:300.598500px;}
.yd1{bottom:300.823500px;}
.y292{bottom:305.923500px;}
.y2da{bottom:306.073500px;}
.y20c{bottom:307.273500px;}
.y143{bottom:310.573500px;}
.y18e{bottom:311.023500px;}
.y18f{bottom:311.698500px;}
.y10b{bottom:313.723500px;}
.y251{bottom:313.875000px;}
.y1c9{bottom:315.375000px;}
.y1ca{bottom:315.823500px;}
.y84{bottom:315.898500px;}
.y250{bottom:316.423500px;}
.y1cb{bottom:316.500000px;}
.y323{bottom:316.723500px;}
.y1cd{bottom:316.798500px;}
.y1cc{bottom:316.875000px;}
.y324{bottom:317.023500px;}
.y1ce{bottom:317.173500px;}
.yd0{bottom:317.773500px;}
.y28f{bottom:319.198500px;}
.y290{bottom:319.573500px;}
.y291{bottom:320.625000px;}
.y2a{bottom:321.073500px;}
.y2d9{bottom:325.198500px;}
.y20b{bottom:326.698500px;}
.y142{bottom:327.523500px;}
.y18d{bottom:328.948500px;}
.y24f{bottom:332.625000px;}
.y83{bottom:333.823500px;}
.y322{bottom:333.973500px;}
.y10a{bottom:334.273500px;}
.ycd{bottom:334.348500px;}
.ycf{bottom:334.648500px;}
.yce{bottom:335.023500px;}
.y28d{bottom:337.573500px;}
.y29{bottom:337.648500px;}
.y28{bottom:339.148500px;}
.y28e{bottom:339.375000px;}
.y27{bottom:339.823500px;}
.y2d8{bottom:339.898500px;}
.y26{bottom:340.573500px;}
.y25{bottom:340.875000px;}
.y24{bottom:340.948500px;}
.y20a{bottom:341.098500px;}
.y23{bottom:341.250000px;}
.y1c8{bottom:342.750000px;}
.y141{bottom:344.398500px;}
.y18c{bottom:345.523500px;}
.y24e{bottom:345.973500px;}
.y24c{bottom:346.573500px;}
.y24d{bottom:346.648500px;}
.y24b{bottom:348.073500px;}
.y80{bottom:348.298500px;}
.y81{bottom:348.898500px;}
.y24a{bottom:349.948500px;}
.y321{bottom:350.548500px;}
.ycc{bottom:351.223500px;}
.y82{bottom:351.523500px;}
.y109{bottom:354.448500px;}
.y209{bottom:355.798500px;}
.y28c{bottom:356.250000px;}
.y2d7{bottom:356.848500px;}
.y208{bottom:356.923500px;}
.y207{bottom:359.098500px;}
.y22{bottom:359.250000px;}
.y13f{bottom:361.273500px;}
.y140{bottom:361.648500px;}
.y18b{bottom:361.723500px;}
.y1c7{bottom:363.673500px;}
.y7d{bottom:365.848500px;}
.y249{bottom:366.148500px;}
.y31f{bottom:367.125000px;}
.ycb{bottom:368.173500px;}
.y320{bottom:368.548500px;}
.y7f{bottom:368.773500px;}
.y7e{bottom:369.823500px;}
.y28b{bottom:370.348500px;}
.y206{bottom:372.448500px;}
.y2d6{bottom:373.048500px;}
.y2d5{bottom:373.348500px;}
.y205{bottom:373.875000px;}
.y2d4{bottom:374.398500px;}
.y108{bottom:374.548500px;}
.y204{bottom:375.973500px;}
.y203{bottom:377.398500px;}
.y13d{bottom:377.848500px;}
.y13e{bottom:378.223500px;}
.y189{bottom:378.598500px;}
.y18a{bottom:379.348500px;}
.y21{bottom:380.473500px;}
.y248{bottom:381.598500px;}
.y1c6{bottom:383.773500px;}
.y7c{bottom:384.223500px;}
.y31e{bottom:384.673500px;}
.yca{bottom:384.750000px;}
.y28a{bottom:389.773500px;}
.y2d3{bottom:389.923500px;}
.y2d2{bottom:390.673500px;}
.y2d1{bottom:392.098500px;}
.y202{bottom:392.625000px;}
.y13c{bottom:394.798500px;}
.y107{bottom:395.098500px;}
.y188{bottom:395.923500px;}
.y20{bottom:399.598500px;}
.y79{bottom:399.750000px;}
.y31b{bottom:399.898500px;}
.y31c{bottom:400.198500px;}
.y7a{bottom:401.173500px;}
.y31d{bottom:401.323500px;}
.yc9{bottom:401.625000px;}
.y7b{bottom:402.598500px;}
.y1c5{bottom:403.198500px;}
.y287{bottom:404.548500px;}
.y288{bottom:405.973500px;}
.y2d0{bottom:407.250000px;}
.y289{bottom:407.398500px;}
.y201{bottom:411.298500px;}
.y13a{bottom:411.673500px;}
.y13b{bottom:411.750000px;}
.y184{bottom:412.125000px;}
.y185{bottom:412.500000px;}
.y186{bottom:412.875000px;}
.y187{bottom:413.250000px;}
.y247{bottom:414.750000px;}
.y105{bottom:414.898500px;}
.y106{bottom:416.698500px;}
.y246{bottom:417.223500px;}
.y78{bottom:417.673500px;}
.yc7{bottom:418.198500px;}
.yc8{bottom:418.573500px;}
.y1f{bottom:419.398500px;}
.y285{bottom:420.673500px;}
.y284{bottom:420.750000px;}
.y200{bottom:422.848500px;}
.y1ff{bottom:423.148500px;}
.y2cf{bottom:423.448500px;}
.y286{bottom:423.598500px;}
.y1c4{bottom:423.750000px;}
.y2ce{bottom:424.798500px;}
.y2cd{bottom:425.548500px;}
.y1fe{bottom:426.000000px;}
.y139{bottom:428.625000px;}
.y182{bottom:429.750000px;}
.y183{bottom:430.125000px;}
.y76{bottom:432.073500px;}
.y31a{bottom:434.023500px;}
.y77{bottom:434.625000px;}
.yc6{bottom:435.073500px;}
.y1e{bottom:438.823500px;}
.y1d{bottom:440.250000px;}
.y1c{bottom:440.625000px;}
.y2cc{bottom:441.073500px;}
.y1fd{bottom:441.223500px;}
.y1b{bottom:441.375000px;}
.y1c3{bottom:443.923500px;}
.y1fc{bottom:444.750000px;}
.y138{bottom:445.500000px;}
.y137{bottom:445.573500px;}
.y181{bottom:446.698500px;}
.y104{bottom:447.673500px;}
.y73{bottom:448.648500px;}
.y74{bottom:448.723500px;}
.y75{bottom:450.823500px;}
.y319{bottom:451.348500px;}
.yc5{bottom:452.023500px;}
.y2cb{bottom:457.648500px;}
.y1c2{bottom:462.298500px;}
.y17e{bottom:463.573500px;}
.y17f{bottom:463.948500px;}
.y180{bottom:464.023500px;}
.y71{bottom:465.223500px;}
.y72{bottom:465.973500px;}
.y245{bottom:466.198500px;}
.y318{bottom:466.798500px;}
.yc4{bottom:468.223500px;}
.yc3{bottom:468.898500px;}
.y1a{bottom:473.773500px;}
.y2ca{bottom:473.848500px;}
.y2c9{bottom:474.223500px;}
.y19{bottom:474.448500px;}
.y2c8{bottom:475.198500px;}
.y2c7{bottom:476.023500px;}
.y283{bottom:477.973500px;}
.y17d{bottom:480.523500px;}
.y244{bottom:482.698500px;}
.y1c1{bottom:483.898500px;}
.y6e{bottom:484.348500px;}
.yc2{bottom:485.548500px;}
.y243{bottom:485.698500px;}
.y242{bottom:486.000000px;}
.yc1{bottom:486.223500px;}
.y6f{bottom:486.448500px;}
.y70{bottom:487.198500px;}
.y103{bottom:489.375000px;}
.y1fb{bottom:490.125000px;}
.y2c6{bottom:491.098500px;}
.y136{bottom:493.798500px;}
.y17b{bottom:497.398500px;}
.y17c{bottom:497.773500px;}
.y282{bottom:498.448500px;}
.y6d{bottom:501.973500px;}
.yc0{bottom:502.423500px;}
.ybf{bottom:502.798500px;}
.y241{bottom:503.625000px;}
.y1c0{bottom:504.375000px;}
.y2c5{bottom:508.348500px;}
.y100{bottom:509.548500px;}
.y101{bottom:510.298500px;}
.y102{bottom:510.673500px;}
.y179{bottom:513.673500px;}
.y17a{bottom:513.973500px;}
.y135{bottom:514.273500px;}
.y6c{bottom:518.548500px;}
.y281{bottom:518.625000px;}
.ybe{bottom:519.298500px;}
.y240{bottom:522.000000px;}
.y317{bottom:522.598500px;}
.y1bf{bottom:523.875000px;}
.y18{bottom:524.173500px;}
.y23f{bottom:525.223500px;}
.y2c4{bottom:525.298500px;}
.y1fa{bottom:525.823500px;}
.y23e{bottom:526.348500px;}
.yff{bottom:529.723500px;}
.y177{bottom:530.625000px;}
.y178{bottom:531.298500px;}
.y133{bottom:534.073500px;}
.y134{bottom:534.148500px;}
.y132{bottom:534.448500px;}
.y6b{bottom:535.500000px;}
.ybd{bottom:535.948500px;}
.ybc{bottom:536.250000px;}
.ybb{bottom:536.625000px;}
.y280{bottom:539.173500px;}
.y23d{bottom:541.500000px;}
.y2c3{bottom:542.173500px;}
.y1be{bottom:542.548500px;}
.y23c{bottom:542.923500px;}
.y2c2{bottom:543.598500px;}
.y23b{bottom:545.398500px;}
.y175{bottom:547.875000px;}
.y176{bottom:548.625000px;}
.y315{bottom:549.598500px;}
.yfe{bottom:549.898500px;}
.y316{bottom:550.648500px;}
.y6a{bottom:550.875000px;}
.yba{bottom:552.898500px;}
.y27f{bottom:557.173500px;}
.y2c0{bottom:558.375000px;}
.y2c1{bottom:558.750000px;}
.y2bf{bottom:559.500000px;}
.y23a{bottom:563.098500px;}
.y1f9{bottom:563.548500px;}
.y1bd{bottom:564.148500px;}
.y174{bottom:564.825000px;}
.y131{bottom:567.598500px;}
.y69{bottom:568.875000px;}
.yb9{bottom:570.075000px;}
.y2be{bottom:575.700000px;}
.y314{bottom:576.898500px;}
.y2bd{bottom:577.125000px;}
.y2bc{bottom:578.250000px;}
.y27e{bottom:579.148500px;}
.y17{bottom:580.348500px;}
.y1f8{bottom:580.798500px;}
.y171{bottom:581.325000px;}
.y172{bottom:581.398500px;}
.y173{bottom:582.000000px;}
.yfd{bottom:582.298500px;}
.y239{bottom:583.575000px;}
.y1bc{bottom:584.325000px;}
.y66{bottom:584.398500px;}
.y67{bottom:585.898500px;}
.yb7{bottom:586.648500px;}
.yb8{bottom:586.723500px;}
.yb6{bottom:587.023500px;}
.yb5{bottom:587.098500px;}
.y68{bottom:587.325000px;}
.yb4{bottom:587.398500px;}
.y2bb{bottom:592.273500px;}
.y2ba{bottom:592.875000px;}
.y2b9{bottom:594.450000px;}
.y27d{bottom:596.398500px;}
.y313{bottom:597.075000px;}
.y16e{bottom:598.273500px;}
.y1f7{bottom:598.500000px;}
.y16f{bottom:598.575000px;}
.y170{bottom:598.950000px;}
.y63{bottom:600.973500px;}
.y1f6{bottom:601.348500px;}
.y64{bottom:601.648500px;}
.y65{bottom:603.523500px;}
.y1bb{bottom:604.500000px;}
.y130{bottom:605.398500px;}
.y2b8{bottom:609.523500px;}
.y16b{bottom:615.148500px;}
.y16c{bottom:615.223500px;}
.y16d{bottom:615.523500px;}
.y238{bottom:615.973500px;}
.y311{bottom:616.950000px;}
.y5f{bottom:617.173500px;}
.y312{bottom:617.250000px;}
.y237{bottom:617.398500px;}
.y27c{bottom:617.625000px;}
.y60{bottom:619.348500px;}
.y61{bottom:621.075000px;}
.y62{bottom:621.825000px;}
.y1f5{bottom:622.273500px;}
.yfc{bottom:623.700000px;}
.y1ba{bottom:624.598500px;}
.y12f{bottom:625.575000px;}
.y2b7{bottom:626.473500px;}
.y16a{bottom:631.723500px;}
.y310{bottom:637.048500px;}
.y27b{bottom:638.098500px;}
.y1f4{bottom:642.375000px;}
.y2b6{bottom:643.048500px;}
.y1b9{bottom:643.348500px;}
.yfb{bottom:643.875000px;}
.y16{bottom:644.025000px;}
.y12e{bottom:645.000000px;}
.y12d{bottom:645.375000px;}
.y12b{bottom:645.673500px;}
.y12c{bottom:645.750000px;}
.y236{bottom:646.875000px;}
.y167{bottom:648.298500px;}
.yb3{bottom:648.598500px;}
.y168{bottom:648.673500px;}
.y169{bottom:649.048500px;}
.yb1{bottom:649.275000px;}
.yb2{bottom:649.348500px;}
.y30f{bottom:657.298500px;}
.y27a{bottom:658.275000px;}
.y2b5{bottom:659.625000px;}
.y1f3{bottom:661.500000px;}
.yfa{bottom:664.348500px;}
.y1b8{bottom:664.650000px;}
.y235{bottom:664.875000px;}
.y30e{bottom:677.400000px;}
.y279{bottom:678.150000px;}
.y2b4{bottom:678.298500px;}
.y12a{bottom:679.198500px;}
.y5a{bottom:682.650000px;}
.yb0{bottom:682.798500px;}
.y5b{bottom:683.025000px;}
.y5c{bottom:683.400000px;}
.yf9{bottom:683.775000px;}
.y1b7{bottom:684.375000px;}
.y5d{bottom:684.448500px;}
.y1f2{bottom:684.525000px;}
.y234{bottom:684.673500px;}
.y5e{bottom:685.573500px;}
.y166{bottom:693.298500px;}
.y2b3{bottom:693.750000px;}
.y2b2{bottom:695.923500px;}
.y2b1{bottom:696.298500px;}
.y30c{bottom:696.823500px;}
.y30d{bottom:697.573500px;}
.y278{bottom:697.948500px;}
.y1f1{bottom:702.150000px;}
.yf8{bottom:703.650000px;}
.y57{bottom:703.875000px;}
.y1b5{bottom:704.250000px;}
.y233{bottom:704.548500px;}
.y1b6{bottom:705.298500px;}
.y58{bottom:705.673500px;}
.y59{bottom:706.423500px;}
.y2b0{bottom:709.948500px;}
.y165{bottom:713.473500px;}
.y2af{bottom:713.548500px;}
.y129{bottom:716.625000px;}
.y30b{bottom:717.673500px;}
.y277{bottom:718.423500px;}
.yaf{bottom:722.775000px;}
.y55{bottom:723.000000px;}
.yae{bottom:723.150000px;}
.y56{bottom:723.673500px;}
.yad{bottom:723.823500px;}
.yf7{bottom:724.125000px;}
.y1b4{bottom:724.723500px;}
.y232{bottom:725.025000px;}
.y164{bottom:733.650000px;}
.y163{bottom:733.948500px;}
.y128{bottom:736.048500px;}
.y1f0{bottom:737.848500px;}
.y276{bottom:738.598500px;}
.yac{bottom:742.573500px;}
.y52{bottom:743.473500px;}
.yf6{bottom:743.923500px;}
.y53{bottom:744.223500px;}
.y54{bottom:745.650000px;}
.y231{bottom:747.750000px;}
.y30a{bottom:749.775000px;}
.y161{bottom:753.750000px;}
.y162{bottom:754.125000px;}
.y127{bottom:756.223500px;}
.y1b1{bottom:756.448500px;}
.y1b2{bottom:757.125000px;}
.y1b3{bottom:757.500000px;}
.y275{bottom:758.775000px;}
.y15{bottom:760.348500px;}
.y14{bottom:761.098500px;}
.y4f{bottom:762.298500px;}
.yab{bottom:762.673500px;}
.y12{bottom:763.198500px;}
.y50{bottom:763.348500px;}
.y51{bottom:763.650000px;}
.yf5{bottom:764.098500px;}
.y11{bottom:764.625000px;}
.y230{bottom:765.298500px;}
.yf{bottom:766.048500px;}
.y10{bottom:766.125000px;}
.yd{bottom:768.973500px;}
.y13{bottom:774.750000px;}
.y1ef{bottom:775.573500px;}
.y126{bottom:775.650000px;}
.y125{bottom:776.025000px;}
.y124{bottom:776.400000px;}
.y123{bottom:776.698500px;}
.y2ae{bottom:778.348500px;}
.ye{bottom:779.925000px;}
.yaa{bottom:782.848500px;}
.y4a{bottom:783.823500px;}
.yf4{bottom:784.275000px;}
.y22f{bottom:785.098500px;}
.y4b{bottom:785.625000px;}
.y4c{bottom:786.000000px;}
.y4d{bottom:786.375000px;}
.y4e{bottom:786.675000px;}
.y160{bottom:790.500000px;}
.y274{bottom:790.800000px;}
.y1b0{bottom:791.323500px;}
.y1ee{bottom:792.525000px;}
.y122{bottom:796.198500px;}
.y2ad{bottom:796.348500px;}
.y121{bottom:796.500000px;}
.y120{bottom:796.875000px;}
.ya9{bottom:802.650000px;}
.y45{bottom:802.875000px;}
.y46{bottom:803.250000px;}
.y47{bottom:804.000000px;}
.yf3{bottom:804.375000px;}
.y48{bottom:805.500000px;}
.y49{bottom:806.925000px;}
.y22e{bottom:807.073500px;}
.y1af{bottom:810.375000px;}
.y309{bottom:811.275000px;}
.y11f{bottom:815.625000px;}
.y2ac{bottom:815.848500px;}
.y11e{bottom:816.375000px;}
.yc{bottom:816.900000px;}
.y11d{bottom:817.050000px;}
.yb{bottom:818.323500px;}
.ya{bottom:819.000000px;}
.y9{bottom:819.375000px;}
.y1ed{bottom:822.750000px;}
.ya8{bottom:823.198500px;}
.y1ec{bottom:824.175000px;}
.yf2{bottom:824.250000px;}
.y22d{bottom:825.073500px;}
.y15f{bottom:827.925000px;}
.y273{bottom:828.598500px;}
.y1ae{bottom:830.250000px;}
.y308{bottom:831.073500px;}
.y2ab{bottom:836.323500px;}
.ya7{bottom:841.198500px;}
.y8{bottom:841.723500px;}
.y44{bottom:842.925000px;}
.ya6{bottom:843.000000px;}
.ya5{bottom:843.675000px;}
.y7{bottom:843.823500px;}
.ya4{bottom:844.050000px;}
.yf1{bottom:844.800000px;}
.y6{bottom:844.948500px;}
.y1eb{bottom:846.150000px;}
.y5{bottom:846.375000px;}
.y1ea{bottom:847.198500px;}
.y1e9{bottom:847.948500px;}
.y15e{bottom:848.098500px;}
.y1e8{bottom:848.698500px;}
.y11c{bottom:849.525000px;}
.y272{bottom:849.823500px;}
.y11b{bottom:849.900000px;}
.y1ad{bottom:850.348500px;}
.y307{bottom:851.250000px;}
.y2aa{bottom:856.198500px;}
.y22c{bottom:857.098500px;}
.ya3{bottom:861.750000px;}
.ya2{bottom:862.425000px;}
.ya1{bottom:863.098500px;}
.ya0{bottom:863.550000px;}
.y9f{bottom:864.223500px;}
.yee{bottom:864.900000px;}
.yef{bottom:865.573500px;}
.yf0{bottom:865.650000px;}
.y15d{bottom:867.525000px;}
.y15c{bottom:867.900000px;}
.y15b{bottom:868.275000px;}
.y271{bottom:870.000000px;}
.y1ac{bottom:870.223500px;}
.y306{bottom:871.050000px;}
.y4{bottom:874.425000px;}
.y2a9{bottom:877.723500px;}
.y3{bottom:878.698500px;}
.y1e7{bottom:879.973500px;}
.yed{bottom:884.698500px;}
.y11a{bottom:887.625000px;}
.y43{bottom:887.848500px;}
.y22b{bottom:888.823500px;}
.y1ab{bottom:890.323500px;}
.y305{bottom:891.223500px;}
.y2a8{bottom:896.473500px;}
.y15a{bottom:901.425000px;}
.y1e6{bottom:901.573500px;}
.y270{bottom:901.650000px;}
.y9e{bottom:903.525000px;}
.y1e5{bottom:903.750000px;}
.ye9{bottom:904.800000px;}
.yea{bottom:904.875000px;}
.y1e4{bottom:905.175000px;}
.yeb{bottom:905.250000px;}
.yec{bottom:905.550000px;}
.y22a{bottom:906.525000px;}
.y119{bottom:907.425000px;}
.y42{bottom:909.150000px;}
.y2{bottom:909.750000px;}
.y304{bottom:911.400000px;}
.y1e2{bottom:916.348500px;}
.y1e3{bottom:916.723500px;}
.y2a7{bottom:916.948500px;}
.y1e1{bottom:920.698500px;}
.y1aa{bottom:923.098500px;}
.y2a6{bottom:934.573500px;}
.y1{bottom:936.750000px;}
.y26f{bottom:940.500000px;}
.ye8{bottom:941.925000px;}
.ye7{bottom:942.000000px;}
.y159{bottom:942.073500px;}
.y229{bottom:943.198500px;}
.y228{bottom:943.573500px;}
.y118{bottom:944.175000px;}
.y40{bottom:945.448500px;}
.y3f{bottom:945.525000px;}
.y41{bottom:945.900000px;}
.y303{bottom:948.150000px;}
.y9d{bottom:950.625000px;}
.y2a5{bottom:953.698500px;}
.y1e0{bottom:957.375000px;}
.y1df{bottom:957.750000px;}
.y1de{bottom:957.823500px;}
.y1a9{bottom:961.275000px;}
.h13{height:35.332031px;}
.hc{height:41.220703px;}
.h20{height:43.804688px;}
.h12{height:47.085938px;}
.hd{height:47.109375px;}
.h1e{height:50.062500px;}
.he{height:52.971680px;}
.h2{height:52.998047px;}
.ha{height:54.421875px;}
.h6{height:56.320312px;}
.h15{height:58.857422px;}
.h7{height:58.886719px;}
.h11{height:60.468750px;}
.h17{height:64.743164px;}
.h5{height:64.775391px;}
.hb{height:66.515625px;}
.h1c{height:70.628906px;}
.h4{height:70.664062px;}
.h10{height:72.562500px;}
.h1f{height:76.552734px;}
.h19{height:78.609375px;}
.h21{height:82.400391px;}
.h8{height:82.441406px;}
.h3{height:94.218750px;}
.h9{height:170.771484px;}
.h1{height:181.476562px;}
.h16{height:1012.500000px;}
.h14{height:1014.000000px;}
.hf{height:1020.000000px;}
.h1d{height:1021.500000px;}
.h18{height:1023.000000px;}
.h1a{height:1024.500000px;}
.h0{height:1026.000000px;}
.h1b{height:1027.500000px;}
.w7{width:649.500000px;}
.w5{width:654.000000px;}
.w4{width:655.500000px;}
.w8{width:657.000000px;}
.w2{width:658.500000px;}
.w3{width:661.500000px;}
.w6{width:664.500000px;}
.w1{width:667.500000px;}
.w9{width:669.000000px;}
.w0{width:682.500000px;}
.x0{left:0.000000px;}
.xef{left:37.425000px;}
.xe9{left:38.550000px;}
.xe4{left:40.350000px;}
.xe2{left:41.400000px;}
.xc1{left:42.450000px;}
.xc2{left:44.250000px;}
.xa0{left:46.050000px;}
.x97{left:47.175000px;}
.x8e{left:48.223500px;}
.x29{left:52.200000px;}
.x16{left:53.250000px;}
.xd{left:54.375000px;}
.x3{left:55.425000px;}
.xa4{left:57.223500px;}
.x105{left:58.350000px;}
.x66{left:59.400000px;}
.x69{left:60.450000px;}
.xfe{left:61.950000px;}
.xf7{left:63.000000px;}
.xea{left:64.800000px;}
.xe7{left:65.850000px;}
.xe8{left:68.775000px;}
.xe3{left:70.575000px;}
.xe1{left:72.375000px;}
.x9c{left:73.425000px;}
.x9b{left:74.850000px;}
.xc4{left:76.350000px;}
.xc5{left:77.400000px;}
.x27{left:78.450000px;}
.x98{left:79.575000px;}
.x8d{left:80.625000px;}
.x11b{left:82.050000px;}
.x1d{left:83.175000px;}
.x19{left:84.600000px;}
.xab{left:85.650000px;}
.x15{left:86.775000px;}
.x89{left:88.200000px;}
.xf9{left:89.250000px;}
.x67{left:90.375000px;}
.xd1{left:91.425000px;}
.x7a{left:92.850000px;}
.xce{left:95.400000px;}
.x31{left:97.573500px;}
.x39{left:98.625000px;}
.x50{left:100.050000px;}
.x56{left:101.175000px;}
.x2a{left:102.975000px;}
.x61{left:104.025000px;}
.x1e{left:105.150000px;}
.xa1{left:108.000000px;}
.x10a{left:109.425000px;}
.x1f{left:111.600000px;}
.x74{left:113.025000px;}
.x8c{left:114.150000px;}
.x3f{left:115.950000px;}
.x86{left:117.375000px;}
.x8b{left:118.425000px;}
.xc0{left:119.850000px;}
.xd5{left:120.975000px;}
.xd3{left:122.025000px;}
.xd2{left:123.150000px;}
.xcb{left:124.575000px;}
.x4e{left:125.625000px;}
.x53{left:127.050000px;}
.xe{left:128.175000px;}
.x43{left:129.225000px;}
.x5{left:130.650000px;}
.x51{left:132.150000px;}
.x54{left:133.575000px;}
.x11a{left:136.050000px;}
.x84{left:137.550000px;}
.x8a{left:138.600000px;}
.x20{left:139.650000px;}
.x6b{left:141.450000px;}
.x40{left:142.575000px;}
.xfa{left:144.375000px;}
.x7f{left:146.550000px;}
.xbb{left:150.825000px;}
.x21{left:153.000000px;}
.x52{left:154.050000px;}
.x32{left:156.225000px;}
.x5d{left:157.650000px;}
.xb7{left:159.825000px;}
.xbf{left:160.950000px;}
.x7b{left:164.550000px;}
.x99{left:166.650000px;}
.xc6{left:170.250000px;}
.x46{left:172.425000px;}
.x22{left:175.650000px;}
.xf6{left:176.775000px;}
.x33{left:177.825000px;}
.xbc{left:183.975000px;}
.x47{left:185.025000px;}
.xf1{left:187.950000px;}
.x5b{left:189.000000px;}
.x4{left:190.425000px;}
.x6c{left:191.550000px;}
.x18{left:195.148500px;}
.x10b{left:196.200000px;}
.xae{left:198.375000px;}
.x5c{left:200.550000px;}
.x71{left:201.975000px;}
.xa2{left:204.825000px;}
.x73{left:206.625000px;}
.x58{left:208.050000px;}
.x4a{left:209.550000px;}
.xdb{left:211.350000px;}
.x1{left:213.148500px;}
.xf{left:216.750000px;}
.x9{left:218.850000px;}
.x59{left:219.975000px;}
.x25{left:221.398500px;}
.x28{left:223.200000px;}
.xaa{left:228.225000px;}
.x8f{left:230.775000px;}
.x10{left:231.825000px;}
.x1a{left:237.975000px;}
.x34{left:239.400000px;}
.xc9{left:240.825000px;}
.x42{left:241.950000px;}
.xb8{left:243.750000px;}
.x7e{left:246.600000px;}
.x5f{left:249.450000px;}
.x6{left:252.000000px;}
.x101{left:253.425000px;}
.xb9{left:255.225000px;}
.x5a{left:256.350000px;}
.xa{left:258.825000px;}
.x72{left:259.950000px;}
.xa3{left:261.375000px;}
.xb{left:262.425000px;}
.xa7{left:263.550000px;}
.xcf{left:264.975000px;}
.xe0{left:266.400000px;}
.x1b{left:268.575000px;}
.x17{left:269.625000px;}
.x4c{left:270.750000px;}
.x4d{left:272.550000px;}
.x7{left:274.350000px;}
.x110{left:275.775000px;}
.x10c{left:279.000000px;}
.x35{left:281.850000px;}
.x64{left:282.975000px;}
.x107{left:284.025000px;}
.xfb{left:285.150000px;}
.x1c{left:286.200000px;}
.x93{left:288.000000px;}
.xaf{left:289.425000px;}
.x2{left:290.550000px;}
.xa8{left:293.025000px;}
.x23{left:294.450000px;}
.x85{left:295.575000px;}
.x6d{left:298.425000px;}
.xfc{left:299.550000px;}
.x26{left:302.400000px;}
.x111{left:304.575000px;}
.x116{left:305.625000px;}
.x65{left:307.425000px;}
.x94{left:309.225000px;}
.x41{left:310.350000px;}
.xc7{left:311.400000px;}
.x36{left:312.450000px;}
.xa5{left:313.950000px;}
.x48{left:315.000000px;}
.x60{left:316.425000px;}
.xac{left:317.850000px;}
.x11d{left:318.975000px;}
.xc{left:321.450000px;}
.xa6{left:323.250000px;}
.x82{left:324.750000px;}
.xe5{left:326.550000px;}
.x118{left:329.025000px;}
.x37{left:330.150000px;}
.x92{left:333.000000px;}
.x83{left:334.425000px;}
.x2f{left:336.225000px;}
.x10d{left:339.450000px;}
.xf8{left:340.950000px;}
.xca{left:342.750000px;}
.xdc{left:344.550000px;}
.x30{left:345.975000px;}
.xc8{left:347.775000px;}
.xe6{left:350.625000px;}
.xad{left:352.800000px;}
.x7c{left:354.975000px;}
.xdd{left:358.575000px;}
.x108{left:360.000000px;}
.x6e{left:361.800000px;}
.x6f{left:362.850000px;}
.x24{left:364.350000px;}
.x112{left:367.575000px;}
.xd0{left:369.000000px;}
.x7d{left:371.550000px;}
.x57{left:374.775000px;}
.x11{left:377.250000px;}
.xff{left:379.425000px;}
.x117{left:380.550000px;}
.x49{left:383.025000px;}
.x106{left:384.825000px;}
.x70{left:385.950000px;}
.x4f{left:388.423500px;}
.x100{left:389.548500px;}
.xf2{left:391.650000px;}
.x8{left:392.775000px;}
.xd7{left:394.575000px;}
.x55{left:396.000000px;}
.xd9{left:399.975000px;}
.xf3{left:403.200000px;}
.xeb{left:405.000000px;}
.xec{left:406.048500px;}
.x95{left:407.548500px;}
.x3a{left:408.975000px;}
.xed{left:411.450000px;}
.x12{left:416.173500px;}
.xc3{left:417.600000px;}
.x103{left:418.650000px;}
.x104{left:420.450000px;}
.xee{left:423.375000px;}
.x44{left:426.225000px;}
.x9e{left:427.350000px;}
.x2b{left:430.200000px;}
.x11c{left:431.625000px;}
.x113{left:434.173500px;}
.x5e{left:437.400000px;}
.x9f{left:438.825000px;}
.xb2{left:445.350000px;}
.x3b{left:446.775000px;}
.x96{left:450.000000px;}
.x119{left:451.798500px;}
.xb3{left:456.825000px;}
.xb6{left:458.250000px;}
.xd8{left:459.375000px;}
.x114{left:461.550000px;}
.x10e{left:462.600000px;}
.x2c{left:465.825000px;}
.x68{left:468.000000px;}
.x11e{left:470.550000px;}
.xf0{left:474.450000px;}
.xf4{left:477.000000px;}
.x102{left:479.550000px;}
.x11f{left:482.025000px;}
.xde{left:484.200000px;}
.xda{left:485.625000px;}
.x109{left:487.425000px;}
.xf5{left:488.850000px;}
.x3c{left:489.975000px;}
.xdf{left:496.050000px;}
.x90{left:498.225000px;}
.x13{left:501.450000px;}
.x76{left:504.000000px;}
.x9d{left:506.175000px;}
.x9a{left:509.400000px;}
.xb5{left:514.050000px;}
.x4b{left:515.175000px;}
.x87{left:517.650000px;}
.xb0{left:518.775000px;}
.x80{left:523.425000px;}
.x2d{left:525.975000px;}
.x78{left:527.400000px;}
.xd6{left:529.575000px;}
.xfd{left:532.050000px;}
.x81{left:534.975000px;}
.x91{left:540.375000px;}
.x6a{left:542.175000px;}
.x88{left:543.600000px;}
.x79{left:547.200000px;}
.x45{left:551.550000px;}
.xb1{left:552.975000px;}
.x14{left:558.000000px;}
.x115{left:559.050000px;}
.x3d{left:560.175000px;}
.x2e{left:563.025000px;}
.x10f{left:569.850000px;}
.x77{left:571.350000px;}
.x75{left:576.000000px;}
.xb4{left:578.175000px;}
.xcc{left:582.150000px;}
.x3e{left:590.775000px;}
.xba{left:594.375000px;}
.x62{left:596.550000px;}
.xbe{left:598.650000px;}
.xd4{left:600.150000px;}
.xbd{left:601.575000px;}
.xa9{left:605.175000px;}
.x38{left:606.600000px;}
.x63{left:608.025000px;}
.xcd{left:609.150000px;}
@media print{
.v2{vertical-align:-8.800000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:1.066667pt;}
.ls0{letter-spacing:0.000000pt;}
.ws0{word-spacing:0.000000pt;}
._2{margin-left:-21.941658pt;}
._0{margin-left:-1.928181pt;}
._1{width:17.052342pt;}
.fs9{font-size:32.000000pt;}
.fs7{font-size:37.333333pt;}
.fs8{font-size:42.666667pt;}
.fs1{font-size:48.000000pt;}
.fs5{font-size:53.333333pt;}
.fs4{font-size:58.666667pt;}
.fs3{font-size:64.000000pt;}
.fsa{font-size:69.333333pt;}
.fs6{font-size:74.666667pt;}
.fs2{font-size:85.333333pt;}
.fs0{font-size:154.666667pt;}
.y0{bottom:0.000000pt;}
.y2a3{bottom:74.132000pt;}
.y2a4{bottom:77.065333pt;}
.y117{bottom:77.932000pt;}
.y1a8{bottom:79.932000pt;}
.y158{bottom:80.532000pt;}
.y26e{bottom:82.865333pt;}
.y26d{bottom:83.865333pt;}
.y3e{bottom:85.798667pt;}
.y9a{bottom:86.532000pt;}
.ye6{bottom:86.598667pt;}
.y9b{bottom:87.732000pt;}
.y9c{bottom:89.065333pt;}
.y2a2{bottom:91.133333pt;}
.y302{bottom:92.532000pt;}
.y116{bottom:92.598667pt;}
.y227{bottom:94.198667pt;}
.y1a6{bottom:94.666667pt;}
.y1dd{bottom:95.065333pt;}
.y155{bottom:95.598667pt;}
.y1a7{bottom:95.666667pt;}
.y156{bottom:95.865333pt;}
.y157{bottom:95.932000pt;}
.y3d{bottom:99.198667pt;}
.y26c{bottom:99.532000pt;}
.y3c{bottom:100.466667pt;}
.y3b{bottom:101.133333pt;}
.y99{bottom:101.598667pt;}
.y3a{bottom:101.800000pt;}
.ye5{bottom:102.000000pt;}
.y2a1{bottom:104.265333pt;}
.y226{bottom:105.800000pt;}
.y225{bottom:106.065333pt;}
.y301{bottom:107.598667pt;}
.y300{bottom:107.865333pt;}
.y224{bottom:108.000000pt;}
.y2ff{bottom:108.198667pt;}
.y115{bottom:108.333333pt;}
.y2fe{bottom:108.532000pt;}
.y1a5{bottom:109.732000pt;}
.y154{bottom:110.932000pt;}
.y1dc{bottom:112.666667pt;}
.y26b{bottom:113.000000pt;}
.y39{bottom:114.598667pt;}
.y96{bottom:114.666667pt;}
.y38{bottom:114.865333pt;}
.y26a{bottom:115.198667pt;}
.y37{bottom:115.865333pt;}
.y97{bottom:115.932000pt;}
.y98{bottom:116.532000pt;}
.ye2{bottom:117.065333pt;}
.ye3{bottom:117.333333pt;}
.y36{bottom:117.466667pt;}
.ye4{bottom:117.598667pt;}
.y223{bottom:121.133333pt;}
.y2fd{bottom:121.333333pt;}
.y2fc{bottom:121.598667pt;}
.y2fb{bottom:121.666667pt;}
.y222{bottom:121.732000pt;}
.y2fa{bottom:121.932000pt;}
.y2a0{bottom:122.133333pt;}
.y2f9{bottom:122.265333pt;}
.y2f8{bottom:122.333333pt;}
.y2f7{bottom:122.598667pt;}
.y2f6{bottom:122.932000pt;}
.y113{bottom:123.398667pt;}
.y114{bottom:124.932000pt;}
.y151{bottom:125.666667pt;}
.y1a4{bottom:125.732000pt;}
.y1db{bottom:125.865333pt;}
.y152{bottom:125.932000pt;}
.y153{bottom:126.000000pt;}
.y269{bottom:129.265333pt;}
.y268{bottom:129.598667pt;}
.y267{bottom:129.932000pt;}
.y35{bottom:130.265333pt;}
.y93{bottom:130.666667pt;}
.y34{bottom:131.532000pt;}
.ye0{bottom:131.732000pt;}
.y33{bottom:132.133333pt;}
.ye1{bottom:132.333333pt;}
.y94{bottom:132.532000pt;}
.y95{bottom:133.198667pt;}
.y29f{bottom:134.932000pt;}
.y2f5{bottom:136.398667pt;}
.y2f4{bottom:136.666667pt;}
.y2f3{bottom:137.000000pt;}
.y111{bottom:137.065333pt;}
.y2f2{bottom:137.333333pt;}
.y2f1{bottom:137.666667pt;}
.y2f0{bottom:137.932000pt;}
.y221{bottom:138.065333pt;}
.y112{bottom:138.732000pt;}
.y19e{bottom:140.065333pt;}
.y19f{bottom:140.398667pt;}
.y1a0{bottom:140.466667pt;}
.y150{bottom:141.000000pt;}
.y1a1{bottom:141.065333pt;}
.y1a2{bottom:141.333333pt;}
.y1a3{bottom:141.732000pt;}
.y1da{bottom:142.133333pt;}
.y266{bottom:142.398667pt;}
.y265{bottom:143.333333pt;}
.y264{bottom:144.333333pt;}
.y91{bottom:144.398667pt;}
.y92{bottom:147.000000pt;}
.yde{bottom:147.065333pt;}
.ydf{bottom:147.398667pt;}
.y220{bottom:151.466667pt;}
.y21f{bottom:151.800000pt;}
.y29e{bottom:151.865333pt;}
.y2ef{bottom:152.065333pt;}
.y2ee{bottom:152.398667pt;}
.y2ed{bottom:152.666667pt;}
.y2ec{bottom:152.732000pt;}
.y2ea{bottom:153.000000pt;}
.y2eb{bottom:153.065333pt;}
.y21e{bottom:153.133333pt;}
.y2e9{bottom:153.333333pt;}
.y21d{bottom:155.000000pt;}
.y19c{bottom:155.133333pt;}
.y19d{bottom:155.198667pt;}
.y14f{bottom:156.065333pt;}
.y263{bottom:157.133333pt;}
.y1d9{bottom:157.198667pt;}
.y262{bottom:157.398667pt;}
.y261{bottom:159.065333pt;}
.y90{bottom:159.198667pt;}
.ydd{bottom:162.466667pt;}
.y29d{bottom:166.666667pt;}
.y2e7{bottom:166.732000pt;}
.y2e8{bottom:166.800000pt;}
.y2e6{bottom:167.065333pt;}
.y2e5{bottom:167.398667pt;}
.y21c{bottom:167.532000pt;}
.y2e4{bottom:168.065333pt;}
.y21b{bottom:168.133333pt;}
.y21a{bottom:168.800000pt;}
.y219{bottom:169.398667pt;}
.y218{bottom:169.800000pt;}
.y1d7{bottom:169.932000pt;}
.y19a{bottom:170.198667pt;}
.y217{bottom:170.398667pt;}
.y14d{bottom:170.732000pt;}
.y14e{bottom:170.800000pt;}
.y19b{bottom:171.133333pt;}
.y1d8{bottom:172.532000pt;}
.y8d{bottom:174.532000pt;}
.y8e{bottom:175.133333pt;}
.y260{bottom:175.666667pt;}
.y32e{bottom:176.865333pt;}
.y32{bottom:176.932000pt;}
.y8f{bottom:177.398667pt;}
.ydc{bottom:177.466667pt;}
.y29a{bottom:180.398667pt;}
.y216{bottom:181.932000pt;}
.y29b{bottom:182.265333pt;}
.y2e3{bottom:182.466667pt;}
.y215{bottom:183.198667pt;}
.y29c{bottom:183.598667pt;}
.y214{bottom:184.466667pt;}
.y1d6{bottom:186.000000pt;}
.y14c{bottom:186.133333pt;}
.y198{bottom:186.198667pt;}
.y199{bottom:186.800000pt;}
.y25f{bottom:187.532000pt;}
.y25e{bottom:188.466667pt;}
.y25d{bottom:189.133333pt;}
.y8a{bottom:189.865333pt;}
.y25c{bottom:190.065333pt;}
.y110{bottom:190.198667pt;}
.y8b{bottom:190.532000pt;}
.y25b{bottom:190.732000pt;}
.yda{bottom:192.198667pt;}
.y32d{bottom:192.265333pt;}
.y8c{bottom:192.466667pt;}
.ydb{bottom:192.532000pt;}
.y299{bottom:193.800000pt;}
.y31{bottom:194.198667pt;}
.y2e2{bottom:196.800000pt;}
.y2e1{bottom:197.133333pt;}
.y2e0{bottom:197.800000pt;}
.y213{bottom:197.865333pt;}
.y212{bottom:199.800000pt;}
.y1d4{bottom:200.000000pt;}
.y1d3{bottom:200.065333pt;}
.y211{bottom:200.198667pt;}
.y197{bottom:200.532000pt;}
.y148{bottom:200.800000pt;}
.y14a{bottom:200.865333pt;}
.y149{bottom:201.133333pt;}
.y14b{bottom:201.198667pt;}
.y1d5{bottom:202.666667pt;}
.y25a{bottom:204.198667pt;}
.y89{bottom:205.865333pt;}
.y32c{bottom:206.333333pt;}
.yd7{bottom:206.932000pt;}
.yd8{bottom:207.198667pt;}
.yd9{bottom:207.532000pt;}
.y10f{bottom:208.198667pt;}
.y298{bottom:211.732000pt;}
.y30{bottom:212.133333pt;}
.y2df{bottom:212.532000pt;}
.y210{bottom:213.598667pt;}
.y147{bottom:215.932000pt;}
.y196{bottom:216.265333pt;}
.y259{bottom:217.333333pt;}
.y258{bottom:217.598667pt;}
.y257{bottom:219.532000pt;}
.y88{bottom:221.865333pt;}
.y329{bottom:221.932000pt;}
.yd6{bottom:222.333333pt;}
.y32a{bottom:222.932000pt;}
.y32b{bottom:223.198667pt;}
.y10e{bottom:226.132000pt;}
.y297{bottom:226.798667pt;}
.y2de{bottom:227.598667pt;}
.y20f{bottom:228.333333pt;}
.y2f{bottom:230.398667pt;}
.y146{bottom:230.932000pt;}
.y195{bottom:231.598667pt;}
.y256{bottom:235.465333pt;}
.y327{bottom:236.000000pt;}
.y328{bottom:236.065333pt;}
.yd4{bottom:236.666667pt;}
.yd3{bottom:236.732000pt;}
.y87{bottom:236.932000pt;}
.yd5{bottom:237.333333pt;}
.y295{bottom:240.532000pt;}
.y2dd{bottom:241.666667pt;}
.y2dc{bottom:242.598667pt;}
.y296{bottom:243.065333pt;}
.y20e{bottom:243.333333pt;}
.y10d{bottom:243.398667pt;}
.y1d2{bottom:245.132000pt;}
.y191{bottom:245.732000pt;}
.y145{bottom:246.000000pt;}
.y192{bottom:246.666667pt;}
.y193{bottom:246.932000pt;}
.y194{bottom:247.000000pt;}
.y2e{bottom:247.666667pt;}
.y255{bottom:249.265333pt;}
.y86{bottom:251.932000pt;}
.y326{bottom:252.000000pt;}
.yd2{bottom:252.065333pt;}
.y293{bottom:253.932000pt;}
.y294{bottom:256.532000pt;}
.y2db{bottom:258.000000pt;}
.y20d{bottom:258.065333pt;}
.y144{bottom:261.000000pt;}
.y10c{bottom:261.932000pt;}
.y190{bottom:262.000000pt;}
.y1cf{bottom:262.465333pt;}
.y1d0{bottom:263.065333pt;}
.y254{bottom:263.666667pt;}
.y1d1{bottom:263.732000pt;}
.y2d{bottom:264.666667pt;}
.y253{bottom:265.000000pt;}
.y252{bottom:265.932000pt;}
.y2c{bottom:266.265333pt;}
.y85{bottom:267.000000pt;}
.y325{bottom:267.132000pt;}
.y2b{bottom:267.198667pt;}
.yd1{bottom:267.398667pt;}
.y292{bottom:271.932000pt;}
.y2da{bottom:272.065333pt;}
.y20c{bottom:273.132000pt;}
.y143{bottom:276.065333pt;}
.y18e{bottom:276.465333pt;}
.y18f{bottom:277.065333pt;}
.y10b{bottom:278.865333pt;}
.y251{bottom:279.000000pt;}
.y1c9{bottom:280.333333pt;}
.y1ca{bottom:280.732000pt;}
.y84{bottom:280.798667pt;}
.y250{bottom:281.265333pt;}
.y1cb{bottom:281.333333pt;}
.y323{bottom:281.532000pt;}
.y1cd{bottom:281.598667pt;}
.y1cc{bottom:281.666667pt;}
.y324{bottom:281.798667pt;}
.y1ce{bottom:281.932000pt;}
.yd0{bottom:282.465333pt;}
.y28f{bottom:283.732000pt;}
.y290{bottom:284.065333pt;}
.y291{bottom:285.000000pt;}
.y2a{bottom:285.398667pt;}
.y2d9{bottom:289.065333pt;}
.y20b{bottom:290.398667pt;}
.y142{bottom:291.132000pt;}
.y18d{bottom:292.398667pt;}
.y24f{bottom:295.666667pt;}
.y83{bottom:296.732000pt;}
.y322{bottom:296.865333pt;}
.y10a{bottom:297.132000pt;}
.ycd{bottom:297.198667pt;}
.ycf{bottom:297.465333pt;}
.yce{bottom:297.798667pt;}
.y28d{bottom:300.065333pt;}
.y29{bottom:300.132000pt;}
.y28{bottom:301.465333pt;}
.y28e{bottom:301.666667pt;}
.y27{bottom:302.065333pt;}
.y2d8{bottom:302.132000pt;}
.y26{bottom:302.732000pt;}
.y25{bottom:303.000000pt;}
.y24{bottom:303.065333pt;}
.y20a{bottom:303.198667pt;}
.y23{bottom:303.333333pt;}
.y1c8{bottom:304.666667pt;}
.y141{bottom:306.132000pt;}
.y18c{bottom:307.132000pt;}
.y24e{bottom:307.532000pt;}
.y24c{bottom:308.065333pt;}
.y24d{bottom:308.132000pt;}
.y24b{bottom:309.398667pt;}
.y80{bottom:309.598667pt;}
.y81{bottom:310.132000pt;}
.y24a{bottom:311.065333pt;}
.y321{bottom:311.598667pt;}
.ycc{bottom:312.198667pt;}
.y82{bottom:312.465333pt;}
.y109{bottom:315.065333pt;}
.y209{bottom:316.265333pt;}
.y28c{bottom:316.666667pt;}
.y2d7{bottom:317.198667pt;}
.y208{bottom:317.265333pt;}
.y207{bottom:319.198667pt;}
.y22{bottom:319.333333pt;}
.y13f{bottom:321.132000pt;}
.y140{bottom:321.465333pt;}
.y18b{bottom:321.532000pt;}
.y1c7{bottom:323.265333pt;}
.y7d{bottom:325.198667pt;}
.y249{bottom:325.465333pt;}
.y31f{bottom:326.333333pt;}
.ycb{bottom:327.265333pt;}
.y320{bottom:327.598667pt;}
.y7f{bottom:327.798667pt;}
.y7e{bottom:328.732000pt;}
.y28b{bottom:329.198667pt;}
.y206{bottom:331.065333pt;}
.y2d6{bottom:331.598667pt;}
.y2d5{bottom:331.865333pt;}
.y205{bottom:332.333333pt;}
.y2d4{bottom:332.798667pt;}
.y108{bottom:332.932000pt;}
.y204{bottom:334.198667pt;}
.y203{bottom:335.465333pt;}
.y13d{bottom:335.865333pt;}
.y13e{bottom:336.198667pt;}
.y189{bottom:336.532000pt;}
.y18a{bottom:337.198667pt;}
.y21{bottom:338.198667pt;}
.y248{bottom:339.198667pt;}
.y1c6{bottom:341.132000pt;}
.y7c{bottom:341.532000pt;}
.y31e{bottom:341.932000pt;}
.yca{bottom:342.000000pt;}
.y28a{bottom:346.465333pt;}
.y2d3{bottom:346.598667pt;}
.y2d2{bottom:347.265333pt;}
.y2d1{bottom:348.532000pt;}
.y202{bottom:349.000000pt;}
.y13c{bottom:350.932000pt;}
.y107{bottom:351.198667pt;}
.y188{bottom:351.932000pt;}
.y20{bottom:355.198667pt;}
.y79{bottom:355.333333pt;}
.y31b{bottom:355.465333pt;}
.y31c{bottom:355.732000pt;}
.y7a{bottom:356.598667pt;}
.y31d{bottom:356.732000pt;}
.yc9{bottom:357.000000pt;}
.y7b{bottom:357.865333pt;}
.y1c5{bottom:358.398667pt;}
.y287{bottom:359.598667pt;}
.y288{bottom:360.865333pt;}
.y2d0{bottom:362.000000pt;}
.y289{bottom:362.132000pt;}
.y201{bottom:365.598667pt;}
.y13a{bottom:365.932000pt;}
.y13b{bottom:366.000000pt;}
.y184{bottom:366.333333pt;}
.y185{bottom:366.666667pt;}
.y186{bottom:367.000000pt;}
.y187{bottom:367.333333pt;}
.y247{bottom:368.666667pt;}
.y105{bottom:368.798667pt;}
.y106{bottom:370.398667pt;}
.y246{bottom:370.865333pt;}
.y78{bottom:371.265333pt;}
.yc7{bottom:371.732000pt;}
.yc8{bottom:372.065333pt;}
.y1f{bottom:372.798667pt;}
.y285{bottom:373.932000pt;}
.y284{bottom:374.000000pt;}
.y200{bottom:375.865333pt;}
.y1ff{bottom:376.132000pt;}
.y2cf{bottom:376.398667pt;}
.y286{bottom:376.532000pt;}
.y1c4{bottom:376.666667pt;}
.y2ce{bottom:377.598667pt;}
.y2cd{bottom:378.265333pt;}
.y1fe{bottom:378.666667pt;}
.y139{bottom:381.000000pt;}
.y182{bottom:382.000000pt;}
.y183{bottom:382.333333pt;}
.y76{bottom:384.065333pt;}
.y31a{bottom:385.798667pt;}
.y77{bottom:386.333333pt;}
.yc6{bottom:386.732000pt;}
.y1e{bottom:390.065333pt;}
.y1d{bottom:391.333333pt;}
.y1c{bottom:391.666667pt;}
.y2cc{bottom:392.065333pt;}
.y1fd{bottom:392.198667pt;}
.y1b{bottom:392.333333pt;}
.y1c3{bottom:394.598667pt;}
.y1fc{bottom:395.333333pt;}
.y138{bottom:396.000000pt;}
.y137{bottom:396.065333pt;}
.y181{bottom:397.065333pt;}
.y104{bottom:397.932000pt;}
.y73{bottom:398.798667pt;}
.y74{bottom:398.865333pt;}
.y75{bottom:400.732000pt;}
.y319{bottom:401.198667pt;}
.yc5{bottom:401.798667pt;}
.y2cb{bottom:406.798667pt;}
.y1c2{bottom:410.932000pt;}
.y17e{bottom:412.065333pt;}
.y17f{bottom:412.398667pt;}
.y180{bottom:412.465333pt;}
.y71{bottom:413.532000pt;}
.y72{bottom:414.198667pt;}
.y245{bottom:414.398667pt;}
.y318{bottom:414.932000pt;}
.yc4{bottom:416.198667pt;}
.yc3{bottom:416.798667pt;}
.y1a{bottom:421.132000pt;}
.y2ca{bottom:421.198667pt;}
.y2c9{bottom:421.532000pt;}
.y19{bottom:421.732000pt;}
.y2c8{bottom:422.398667pt;}
.y2c7{bottom:423.132000pt;}
.y283{bottom:424.865333pt;}
.y17d{bottom:427.132000pt;}
.y244{bottom:429.065333pt;}
.y1c1{bottom:430.132000pt;}
.y6e{bottom:430.532000pt;}
.yc2{bottom:431.598667pt;}
.y243{bottom:431.732000pt;}
.y242{bottom:432.000000pt;}
.yc1{bottom:432.198667pt;}
.y6f{bottom:432.398667pt;}
.y70{bottom:433.065333pt;}
.y103{bottom:435.000000pt;}
.y1fb{bottom:435.666667pt;}
.y2c6{bottom:436.532000pt;}
.y136{bottom:438.932000pt;}
.y17b{bottom:442.132000pt;}
.y17c{bottom:442.465333pt;}
.y282{bottom:443.065333pt;}
.y6d{bottom:446.198667pt;}
.yc0{bottom:446.598667pt;}
.ybf{bottom:446.932000pt;}
.y241{bottom:447.666667pt;}
.y1c0{bottom:448.333333pt;}
.y2c5{bottom:451.865333pt;}
.y100{bottom:452.932000pt;}
.y101{bottom:453.598667pt;}
.y102{bottom:453.932000pt;}
.y179{bottom:456.598667pt;}
.y17a{bottom:456.865333pt;}
.y135{bottom:457.132000pt;}
.y6c{bottom:460.932000pt;}
.y281{bottom:461.000000pt;}
.ybe{bottom:461.598667pt;}
.y240{bottom:464.000000pt;}
.y317{bottom:464.532000pt;}
.y1bf{bottom:465.666667pt;}
.y18{bottom:465.932000pt;}
.y23f{bottom:466.865333pt;}
.y2c4{bottom:466.932000pt;}
.y1fa{bottom:467.398667pt;}
.y23e{bottom:467.865333pt;}
.yff{bottom:470.865333pt;}
.y177{bottom:471.666667pt;}
.y178{bottom:472.265333pt;}
.y133{bottom:474.732000pt;}
.y134{bottom:474.798667pt;}
.y132{bottom:475.065333pt;}
.y6b{bottom:476.000000pt;}
.ybd{bottom:476.398667pt;}
.ybc{bottom:476.666667pt;}
.ybb{bottom:477.000000pt;}
.y280{bottom:479.265333pt;}
.y23d{bottom:481.333333pt;}
.y2c3{bottom:481.932000pt;}
.y1be{bottom:482.265333pt;}
.y23c{bottom:482.598667pt;}
.y2c2{bottom:483.198667pt;}
.y23b{bottom:484.798667pt;}
.y175{bottom:487.000000pt;}
.y176{bottom:487.666667pt;}
.y315{bottom:488.532000pt;}
.yfe{bottom:488.798667pt;}
.y316{bottom:489.465333pt;}
.y6a{bottom:489.666667pt;}
.yba{bottom:491.465333pt;}
.y27f{bottom:495.265333pt;}
.y2c0{bottom:496.333333pt;}
.y2c1{bottom:496.666667pt;}
.y2bf{bottom:497.333333pt;}
.y23a{bottom:500.532000pt;}
.y1f9{bottom:500.932000pt;}
.y1bd{bottom:501.465333pt;}
.y174{bottom:502.066667pt;}
.y131{bottom:504.532000pt;}
.y69{bottom:505.666667pt;}
.yb9{bottom:506.733333pt;}
.y2be{bottom:511.733333pt;}
.y314{bottom:512.798667pt;}
.y2bd{bottom:513.000000pt;}
.y2bc{bottom:514.000000pt;}
.y27e{bottom:514.798667pt;}
.y17{bottom:515.865333pt;}
.y1f8{bottom:516.265333pt;}
.y171{bottom:516.733333pt;}
.y172{bottom:516.798667pt;}
.y173{bottom:517.333333pt;}
.yfd{bottom:517.598667pt;}
.y239{bottom:518.733333pt;}
.y1bc{bottom:519.400000pt;}
.y66{bottom:519.465333pt;}
.y67{bottom:520.798667pt;}
.yb7{bottom:521.465333pt;}
.yb8{bottom:521.532000pt;}
.yb6{bottom:521.798667pt;}
.yb5{bottom:521.865333pt;}
.y68{bottom:522.066667pt;}
.yb4{bottom:522.132000pt;}
.y2bb{bottom:526.465333pt;}
.y2ba{bottom:527.000000pt;}
.y2b9{bottom:528.400000pt;}
.y27d{bottom:530.132000pt;}
.y313{bottom:530.733333pt;}
.y16e{bottom:531.798667pt;}
.y1f7{bottom:532.000000pt;}
.y16f{bottom:532.066667pt;}
.y170{bottom:532.400000pt;}
.y63{bottom:534.198667pt;}
.y1f6{bottom:534.532000pt;}
.y64{bottom:534.798667pt;}
.y65{bottom:536.465333pt;}
.y1bb{bottom:537.333333pt;}
.y130{bottom:538.132000pt;}
.y2b8{bottom:541.798667pt;}
.y16b{bottom:546.798667pt;}
.y16c{bottom:546.865333pt;}
.y16d{bottom:547.132000pt;}
.y238{bottom:547.532000pt;}
.y311{bottom:548.400000pt;}
.y5f{bottom:548.598667pt;}
.y312{bottom:548.666667pt;}
.y237{bottom:548.798667pt;}
.y27c{bottom:549.000000pt;}
.y60{bottom:550.532000pt;}
.y61{bottom:552.066667pt;}
.y62{bottom:552.733333pt;}
.y1f5{bottom:553.132000pt;}
.yfc{bottom:554.400000pt;}
.y1ba{bottom:555.198667pt;}
.y12f{bottom:556.066667pt;}
.y2b7{bottom:556.865333pt;}
.y16a{bottom:561.532000pt;}
.y310{bottom:566.265333pt;}
.y27b{bottom:567.198667pt;}
.y1f4{bottom:571.000000pt;}
.y2b6{bottom:571.598667pt;}
.y1b9{bottom:571.865333pt;}
.yfb{bottom:572.333333pt;}
.y16{bottom:572.466667pt;}
.y12e{bottom:573.333333pt;}
.y12d{bottom:573.666667pt;}
.y12b{bottom:573.932000pt;}
.y12c{bottom:574.000000pt;}
.y236{bottom:575.000000pt;}
.y167{bottom:576.265333pt;}
.yb3{bottom:576.532000pt;}
.y168{bottom:576.598667pt;}
.y169{bottom:576.932000pt;}
.yb1{bottom:577.133333pt;}
.yb2{bottom:577.198667pt;}
.y30f{bottom:584.265333pt;}
.y27a{bottom:585.133333pt;}
.y2b5{bottom:586.333333pt;}
.y1f3{bottom:588.000000pt;}
.yfa{bottom:590.532000pt;}
.y1b8{bottom:590.800000pt;}
.y235{bottom:591.000000pt;}
.y30e{bottom:602.133333pt;}
.y279{bottom:602.800000pt;}
.y2b4{bottom:602.932000pt;}
.y12a{bottom:603.732000pt;}
.y5a{bottom:606.800000pt;}
.yb0{bottom:606.932000pt;}
.y5b{bottom:607.133333pt;}
.y5c{bottom:607.466667pt;}
.yf9{bottom:607.800000pt;}
.y1b7{bottom:608.333333pt;}
.y5d{bottom:608.398667pt;}
.y1f2{bottom:608.466667pt;}
.y234{bottom:608.598667pt;}
.y5e{bottom:609.398667pt;}
.y166{bottom:616.265333pt;}
.y2b3{bottom:616.666667pt;}
.y2b2{bottom:618.598667pt;}
.y2b1{bottom:618.932000pt;}
.y30c{bottom:619.398667pt;}
.y30d{bottom:620.065333pt;}
.y278{bottom:620.398667pt;}
.y1f1{bottom:624.133333pt;}
.yf8{bottom:625.466667pt;}
.y57{bottom:625.666667pt;}
.y1b5{bottom:626.000000pt;}
.y233{bottom:626.265333pt;}
.y1b6{bottom:626.932000pt;}
.y58{bottom:627.265333pt;}
.y59{bottom:627.932000pt;}
.y2b0{bottom:631.065333pt;}
.y165{bottom:634.198667pt;}
.y2af{bottom:634.265333pt;}
.y129{bottom:637.000000pt;}
.y30b{bottom:637.932000pt;}
.y277{bottom:638.598667pt;}
.yaf{bottom:642.466667pt;}
.y55{bottom:642.666667pt;}
.yae{bottom:642.800000pt;}
.y56{bottom:643.265333pt;}
.yad{bottom:643.398667pt;}
.yf7{bottom:643.666667pt;}
.y1b4{bottom:644.198667pt;}
.y232{bottom:644.466667pt;}
.y164{bottom:652.133333pt;}
.y163{bottom:652.398667pt;}
.y128{bottom:654.265333pt;}
.y1f0{bottom:655.865333pt;}
.y276{bottom:656.532000pt;}
.yac{bottom:660.065333pt;}
.y52{bottom:660.865333pt;}
.yf6{bottom:661.265333pt;}
.y53{bottom:661.532000pt;}
.y54{bottom:662.800000pt;}
.y231{bottom:664.666667pt;}
.y30a{bottom:666.466667pt;}
.y161{bottom:670.000000pt;}
.y162{bottom:670.333333pt;}
.y127{bottom:672.198667pt;}
.y1b1{bottom:672.398667pt;}
.y1b2{bottom:673.000000pt;}
.y1b3{bottom:673.333333pt;}
.y275{bottom:674.466667pt;}
.y15{bottom:675.865333pt;}
.y14{bottom:676.532000pt;}
.y4f{bottom:677.598667pt;}
.yab{bottom:677.932000pt;}
.y12{bottom:678.398667pt;}
.y50{bottom:678.532000pt;}
.y51{bottom:678.800000pt;}
.yf5{bottom:679.198667pt;}
.y11{bottom:679.666667pt;}
.y230{bottom:680.265333pt;}
.yf{bottom:680.932000pt;}
.y10{bottom:681.000000pt;}
.yd{bottom:683.532000pt;}
.y13{bottom:688.666667pt;}
.y1ef{bottom:689.398667pt;}
.y126{bottom:689.466667pt;}
.y125{bottom:689.800000pt;}
.y124{bottom:690.133333pt;}
.y123{bottom:690.398667pt;}
.y2ae{bottom:691.865333pt;}
.ye{bottom:693.266667pt;}
.yaa{bottom:695.865333pt;}
.y4a{bottom:696.732000pt;}
.yf4{bottom:697.133333pt;}
.y22f{bottom:697.865333pt;}
.y4b{bottom:698.333333pt;}
.y4c{bottom:698.666667pt;}
.y4d{bottom:699.000000pt;}
.y4e{bottom:699.266667pt;}
.y160{bottom:702.666667pt;}
.y274{bottom:702.933333pt;}
.y1b0{bottom:703.398667pt;}
.y1ee{bottom:704.466667pt;}
.y122{bottom:707.732000pt;}
.y2ad{bottom:707.865333pt;}
.y121{bottom:708.000000pt;}
.y120{bottom:708.333333pt;}
.ya9{bottom:713.466667pt;}
.y45{bottom:713.666667pt;}
.y46{bottom:714.000000pt;}
.y47{bottom:714.666667pt;}
.yf3{bottom:715.000000pt;}
.y48{bottom:716.000000pt;}
.y49{bottom:717.266667pt;}
.y22e{bottom:717.398667pt;}
.y1af{bottom:720.333333pt;}
.y309{bottom:721.133333pt;}
.y11f{bottom:725.000000pt;}
.y2ac{bottom:725.198667pt;}
.y11e{bottom:725.666667pt;}
.yc{bottom:726.133333pt;}
.y11d{bottom:726.266667pt;}
.yb{bottom:727.398667pt;}
.ya{bottom:728.000000pt;}
.y9{bottom:728.333333pt;}
.y1ed{bottom:731.333333pt;}
.ya8{bottom:731.732000pt;}
.y1ec{bottom:732.600000pt;}
.yf2{bottom:732.666667pt;}
.y22d{bottom:733.398667pt;}
.y15f{bottom:735.933333pt;}
.y273{bottom:736.532000pt;}
.y1ae{bottom:738.000000pt;}
.y308{bottom:738.732000pt;}
.y2ab{bottom:743.398667pt;}
.ya7{bottom:747.732000pt;}
.y8{bottom:748.198667pt;}
.y44{bottom:749.266667pt;}
.ya6{bottom:749.333333pt;}
.ya5{bottom:749.933333pt;}
.y7{bottom:750.065333pt;}
.ya4{bottom:750.266667pt;}
.yf1{bottom:750.933333pt;}
.y6{bottom:751.065333pt;}
.y1eb{bottom:752.133333pt;}
.y5{bottom:752.333333pt;}
.y1ea{bottom:753.065333pt;}
.y1e9{bottom:753.732000pt;}
.y15e{bottom:753.865333pt;}
.y1e8{bottom:754.398667pt;}
.y11c{bottom:755.133333pt;}
.y272{bottom:755.398667pt;}
.y11b{bottom:755.466667pt;}
.y1ad{bottom:755.865333pt;}
.y307{bottom:756.666667pt;}
.y2aa{bottom:761.065333pt;}
.y22c{bottom:761.865333pt;}
.ya3{bottom:766.000000pt;}
.ya2{bottom:766.600000pt;}
.ya1{bottom:767.198667pt;}
.ya0{bottom:767.600000pt;}
.y9f{bottom:768.198667pt;}
.yee{bottom:768.800000pt;}
.yef{bottom:769.398667pt;}
.yf0{bottom:769.466667pt;}
.y15d{bottom:771.133333pt;}
.y15c{bottom:771.466667pt;}
.y15b{bottom:771.800000pt;}
.y271{bottom:773.333333pt;}
.y1ac{bottom:773.532000pt;}
.y306{bottom:774.266667pt;}
.y4{bottom:777.266667pt;}
.y2a9{bottom:780.198667pt;}
.y3{bottom:781.065333pt;}
.y1e7{bottom:782.198667pt;}
.yed{bottom:786.398667pt;}
.y11a{bottom:789.000000pt;}
.y43{bottom:789.198667pt;}
.y22b{bottom:790.065333pt;}
.y1ab{bottom:791.398667pt;}
.y305{bottom:792.198667pt;}
.y2a8{bottom:796.865333pt;}
.y15a{bottom:801.266667pt;}
.y1e6{bottom:801.398667pt;}
.y270{bottom:801.466667pt;}
.y9e{bottom:803.133333pt;}
.y1e5{bottom:803.333333pt;}
.ye9{bottom:804.266667pt;}
.yea{bottom:804.333333pt;}
.y1e4{bottom:804.600000pt;}
.yeb{bottom:804.666667pt;}
.yec{bottom:804.933333pt;}
.y22a{bottom:805.800000pt;}
.y119{bottom:806.600000pt;}
.y42{bottom:808.133333pt;}
.y2{bottom:808.666667pt;}
.y304{bottom:810.133333pt;}
.y1e2{bottom:814.532000pt;}
.y1e3{bottom:814.865333pt;}
.y2a7{bottom:815.065333pt;}
.y1e1{bottom:818.398667pt;}
.y1aa{bottom:820.532000pt;}
.y2a6{bottom:830.732000pt;}
.y1{bottom:832.666667pt;}
.y26f{bottom:836.000000pt;}
.ye8{bottom:837.266667pt;}
.ye7{bottom:837.333333pt;}
.y159{bottom:837.398667pt;}
.y229{bottom:838.398667pt;}
.y228{bottom:838.732000pt;}
.y118{bottom:839.266667pt;}
.y40{bottom:840.398667pt;}
.y3f{bottom:840.466667pt;}
.y41{bottom:840.800000pt;}
.y303{bottom:842.800000pt;}
.y9d{bottom:845.000000pt;}
.y2a5{bottom:847.732000pt;}
.y1e0{bottom:851.000000pt;}
.y1df{bottom:851.333333pt;}
.y1de{bottom:851.398667pt;}
.y1a9{bottom:854.466667pt;}
.h13{height:31.406250pt;}
.hc{height:36.640625pt;}
.h20{height:38.937500pt;}
.h12{height:41.854167pt;}
.hd{height:41.875000pt;}
.h1e{height:44.500000pt;}
.he{height:47.085938pt;}
.h2{height:47.109375pt;}
.ha{height:48.375000pt;}
.h6{height:50.062500pt;}
.h15{height:52.317708pt;}
.h7{height:52.343750pt;}
.h11{height:53.750000pt;}
.h17{height:57.549479pt;}
.h5{height:57.578125pt;}
.hb{height:59.125000pt;}
.h1c{height:62.781250pt;}
.h4{height:62.812500pt;}
.h10{height:64.500000pt;}
.h1f{height:68.046875pt;}
.h19{height:69.875000pt;}
.h21{height:73.244792pt;}
.h8{height:73.281250pt;}
.h3{height:83.750000pt;}
.h9{height:151.796875pt;}
.h1{height:161.312500pt;}
.h16{height:900.000000pt;}
.h14{height:901.333333pt;}
.hf{height:906.666667pt;}
.h1d{height:908.000000pt;}
.h18{height:909.333333pt;}
.h1a{height:910.666667pt;}
.h0{height:912.000000pt;}
.h1b{height:913.333333pt;}
.w7{width:577.333333pt;}
.w5{width:581.333333pt;}
.w4{width:582.666667pt;}
.w8{width:584.000000pt;}
.w2{width:585.333333pt;}
.w3{width:588.000000pt;}
.w6{width:590.666667pt;}
.w1{width:593.333333pt;}
.w9{width:594.666667pt;}
.w0{width:606.666667pt;}
.x0{left:0.000000pt;}
.xef{left:33.266667pt;}
.xe9{left:34.266667pt;}
.xe4{left:35.866667pt;}
.xe2{left:36.800000pt;}
.xc1{left:37.733333pt;}
.xc2{left:39.333333pt;}
.xa0{left:40.933333pt;}
.x97{left:41.933333pt;}
.x8e{left:42.865333pt;}
.x29{left:46.400000pt;}
.x16{left:47.333333pt;}
.xd{left:48.333333pt;}
.x3{left:49.266667pt;}
.xa4{left:50.865333pt;}
.x105{left:51.866667pt;}
.x66{left:52.800000pt;}
.x69{left:53.733333pt;}
.xfe{left:55.066667pt;}
.xf7{left:56.000000pt;}
.xea{left:57.600000pt;}
.xe7{left:58.533333pt;}
.xe8{left:61.133333pt;}
.xe3{left:62.733333pt;}
.xe1{left:64.333333pt;}
.x9c{left:65.266667pt;}
.x9b{left:66.533333pt;}
.xc4{left:67.866667pt;}
.xc5{left:68.800000pt;}
.x27{left:69.733333pt;}
.x98{left:70.733333pt;}
.x8d{left:71.666667pt;}
.x11b{left:72.933333pt;}
.x1d{left:73.933333pt;}
.x19{left:75.200000pt;}
.xab{left:76.133333pt;}
.x15{left:77.133333pt;}
.x89{left:78.400000pt;}
.xf9{left:79.333333pt;}
.x67{left:80.333333pt;}
.xd1{left:81.266667pt;}
.x7a{left:82.533333pt;}
.xce{left:84.800000pt;}
.x31{left:86.732000pt;}
.x39{left:87.666667pt;}
.x50{left:88.933333pt;}
.x56{left:89.933333pt;}
.x2a{left:91.533333pt;}
.x61{left:92.466667pt;}
.x1e{left:93.466667pt;}
.xa1{left:96.000000pt;}
.x10a{left:97.266667pt;}
.x1f{left:99.200000pt;}
.x74{left:100.466667pt;}
.x8c{left:101.466667pt;}
.x3f{left:103.066667pt;}
.x86{left:104.333333pt;}
.x8b{left:105.266667pt;}
.xc0{left:106.533333pt;}
.xd5{left:107.533333pt;}
.xd3{left:108.466667pt;}
.xd2{left:109.466667pt;}
.xcb{left:110.733333pt;}
.x4e{left:111.666667pt;}
.x53{left:112.933333pt;}
.xe{left:113.933333pt;}
.x43{left:114.866667pt;}
.x5{left:116.133333pt;}
.x51{left:117.466667pt;}
.x54{left:118.733333pt;}
.x11a{left:120.933333pt;}
.x84{left:122.266667pt;}
.x8a{left:123.200000pt;}
.x20{left:124.133333pt;}
.x6b{left:125.733333pt;}
.x40{left:126.733333pt;}
.xfa{left:128.333333pt;}
.x7f{left:130.266667pt;}
.xbb{left:134.066667pt;}
.x21{left:136.000000pt;}
.x52{left:136.933333pt;}
.x32{left:138.866667pt;}
.x5d{left:140.133333pt;}
.xb7{left:142.066667pt;}
.xbf{left:143.066667pt;}
.x7b{left:146.266667pt;}
.x99{left:148.133333pt;}
.xc6{left:151.333333pt;}
.x46{left:153.266667pt;}
.x22{left:156.133333pt;}
.xf6{left:157.133333pt;}
.x33{left:158.066667pt;}
.xbc{left:163.533333pt;}
.x47{left:164.466667pt;}
.xf1{left:167.066667pt;}
.x5b{left:168.000000pt;}
.x4{left:169.266667pt;}
.x6c{left:170.266667pt;}
.x18{left:173.465333pt;}
.x10b{left:174.400000pt;}
.xae{left:176.333333pt;}
.x5c{left:178.266667pt;}
.x71{left:179.533333pt;}
.xa2{left:182.066667pt;}
.x73{left:183.666667pt;}
.x58{left:184.933333pt;}
.x4a{left:186.266667pt;}
.xdb{left:187.866667pt;}
.x1{left:189.465333pt;}
.xf{left:192.666667pt;}
.x9{left:194.533333pt;}
.x59{left:195.533333pt;}
.x25{left:196.798667pt;}
.x28{left:198.400000pt;}
.xaa{left:202.866667pt;}
.x8f{left:205.133333pt;}
.x10{left:206.066667pt;}
.x1a{left:211.533333pt;}
.x34{left:212.800000pt;}
.xc9{left:214.066667pt;}
.x42{left:215.066667pt;}
.xb8{left:216.666667pt;}
.x7e{left:219.200000pt;}
.x5f{left:221.733333pt;}
.x6{left:224.000000pt;}
.x101{left:225.266667pt;}
.xb9{left:226.866667pt;}
.x5a{left:227.866667pt;}
.xa{left:230.066667pt;}
.x72{left:231.066667pt;}
.xa3{left:232.333333pt;}
.xb{left:233.266667pt;}
.xa7{left:234.266667pt;}
.xcf{left:235.533333pt;}
.xe0{left:236.800000pt;}
.x1b{left:238.733333pt;}
.x17{left:239.666667pt;}
.x4c{left:240.666667pt;}
.x4d{left:242.266667pt;}
.x7{left:243.866667pt;}
.x110{left:245.133333pt;}
.x10c{left:248.000000pt;}
.x35{left:250.533333pt;}
.x64{left:251.533333pt;}
.x107{left:252.466667pt;}
.xfb{left:253.466667pt;}
.x1c{left:254.400000pt;}
.x93{left:256.000000pt;}
.xaf{left:257.266667pt;}
.x2{left:258.266667pt;}
.xa8{left:260.466667pt;}
.x23{left:261.733333pt;}
.x85{left:262.733333pt;}
.x6d{left:265.266667pt;}
.xfc{left:266.266667pt;}
.x26{left:268.800000pt;}
.x111{left:270.733333pt;}
.x116{left:271.666667pt;}
.x65{left:273.266667pt;}
.x94{left:274.866667pt;}
.x41{left:275.866667pt;}
.xc7{left:276.800000pt;}
.x36{left:277.733333pt;}
.xa5{left:279.066667pt;}
.x48{left:280.000000pt;}
.x60{left:281.266667pt;}
.xac{left:282.533333pt;}
.x11d{left:283.533333pt;}
.xc{left:285.733333pt;}
.xa6{left:287.333333pt;}
.x82{left:288.666667pt;}
.xe5{left:290.266667pt;}
.x118{left:292.466667pt;}
.x37{left:293.466667pt;}
.x92{left:296.000000pt;}
.x83{left:297.266667pt;}
.x2f{left:298.866667pt;}
.x10d{left:301.733333pt;}
.xf8{left:303.066667pt;}
.xca{left:304.666667pt;}
.xdc{left:306.266667pt;}
.x30{left:307.533333pt;}
.xc8{left:309.133333pt;}
.xe6{left:311.666667pt;}
.xad{left:313.600000pt;}
.x7c{left:315.533333pt;}
.xdd{left:318.733333pt;}
.x108{left:320.000000pt;}
.x6e{left:321.600000pt;}
.x6f{left:322.533333pt;}
.x24{left:323.866667pt;}
.x112{left:326.733333pt;}
.xd0{left:328.000000pt;}
.x7d{left:330.266667pt;}
.x57{left:333.133333pt;}
.x11{left:335.333333pt;}
.xff{left:337.266667pt;}
.x117{left:338.266667pt;}
.x49{left:340.466667pt;}
.x106{left:342.066667pt;}
.x70{left:343.066667pt;}
.x4f{left:345.265333pt;}
.x100{left:346.265333pt;}
.xf2{left:348.133333pt;}
.x8{left:349.133333pt;}
.xd7{left:350.733333pt;}
.x55{left:352.000000pt;}
.xd9{left:355.533333pt;}
.xf3{left:358.400000pt;}
.xeb{left:360.000000pt;}
.xec{left:360.932000pt;}
.x95{left:362.265333pt;}
.x3a{left:363.533333pt;}
.xed{left:365.733333pt;}
.x12{left:369.932000pt;}
.xc3{left:371.200000pt;}
.x103{left:372.133333pt;}
.x104{left:373.733333pt;}
.xee{left:376.333333pt;}
.x44{left:378.866667pt;}
.x9e{left:379.866667pt;}
.x2b{left:382.400000pt;}
.x11c{left:383.666667pt;}
.x113{left:385.932000pt;}
.x5e{left:388.800000pt;}
.x9f{left:390.066667pt;}
.xb2{left:395.866667pt;}
.x3b{left:397.133333pt;}
.x96{left:400.000000pt;}
.x119{left:401.598667pt;}
.xb3{left:406.066667pt;}
.xb6{left:407.333333pt;}
.xd8{left:408.333333pt;}
.x114{left:410.266667pt;}
.x10e{left:411.200000pt;}
.x2c{left:414.066667pt;}
.x68{left:416.000000pt;}
.x11e{left:418.266667pt;}
.xf0{left:421.733333pt;}
.xf4{left:424.000000pt;}
.x102{left:426.266667pt;}
.x11f{left:428.466667pt;}
.xde{left:430.400000pt;}
.xda{left:431.666667pt;}
.x109{left:433.266667pt;}
.xf5{left:434.533333pt;}
.x3c{left:435.533333pt;}
.xdf{left:440.933333pt;}
.x90{left:442.866667pt;}
.x13{left:445.733333pt;}
.x76{left:448.000000pt;}
.x9d{left:449.933333pt;}
.x9a{left:452.800000pt;}
.xb5{left:456.933333pt;}
.x4b{left:457.933333pt;}
.x87{left:460.133333pt;}
.xb0{left:461.133333pt;}
.x80{left:465.266667pt;}
.x2d{left:467.533333pt;}
.x78{left:468.800000pt;}
.xd6{left:470.733333pt;}
.xfd{left:472.933333pt;}
.x81{left:475.533333pt;}
.x91{left:480.333333pt;}
.x6a{left:481.933333pt;}
.x88{left:483.200000pt;}
.x79{left:486.400000pt;}
.x45{left:490.266667pt;}
.xb1{left:491.533333pt;}
.x14{left:496.000000pt;}
.x115{left:496.933333pt;}
.x3d{left:497.933333pt;}
.x2e{left:500.466667pt;}
.x10f{left:506.533333pt;}
.x77{left:507.866667pt;}
.x75{left:512.000000pt;}
.xb4{left:513.933333pt;}
.xcc{left:517.466667pt;}
.x3e{left:525.133333pt;}
.xba{left:528.333333pt;}
.x62{left:530.266667pt;}
.xbe{left:532.133333pt;}
.xd4{left:533.466667pt;}
.xbd{left:534.733333pt;}
.xa9{left:537.933333pt;}
.x38{left:539.200000pt;}
.x63{left:540.466667pt;}
.xcd{left:541.466667pt;}
}




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