
    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_cbeb2882d3964bbbcd1d8288.woff')format("woff");}.ff1{font-family:ff1;line-height:1.003000;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_b4a90d90c4ff666432af4c4b.woff')format("woff");}.ff2{font-family:ff2;line-height:0.940000;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_aa6564a66c82405ad6c4c7fc.woff')format("woff");}.ff3{font-family:ff3;line-height:0.712000;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_4757c1de9fea569a06aacaa9.woff')format("woff");}.ff4{font-family:ff4;line-height:0.714000;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_2b73dc0046f3500739f4ce20.woff')format("woff");}.ff5{font-family:ff5;line-height:0.940000;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_2bcae1b24a907e7dea3da1de.woff')format("woff");}.ff6{font-family:ff6;line-height:0.931000;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_cc9825d87b33d0e6cf099baa.woff')format("woff");}.ff7{font-family:ff7;line-height:1.193359;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_dc7716901a57a835673b8b79.woff')format("woff");}.ff8{font-family:ff8;line-height:0.881836;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_8f02935722e9b6dbdd9be0c8.woff')format("woff");}.ff9{font-family:ff9;line-height:0.973633;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_46e675eb5cfa0e470157bfcc.woff')format("woff");}.ffa{font-family:ffa;line-height:0.940000;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_9b747fbd9e6b7f665829e853.woff')format("woff");}.ffb{font-family:ffb;line-height:0.919000;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_b119d5256c0338c47538d4b6.woff')format("woff");}.ffc{font-family:ffc;line-height:0.938477;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_77dfd65aa52a1460342e682a.woff')format("woff");}.ffd{font-family:ffd;line-height:0.938477;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_a8f339c9633cd1b5303bd06f.woff')format("woff");}.ffe{font-family:ffe;line-height:1.031738;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_df1c9a26312b5db4fa856f65.woff')format("woff");}.fff{font-family:fff;line-height:1.193359;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_0b7ab9cc19fedb0515427694.woff')format("woff");}.ff10{font-family:ff10;line-height:1.193359;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_6e2558ed9ce5fce13cfe7132.woff')format("woff");}.ff11{font-family:ff11;line-height:1.193359;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_7589c318c9d55d143187243a.woff')format("woff");}.ff12{font-family:ff12;line-height:1.193359;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_49e6ef947c36171d144d546f.woff')format("woff");}.ff13{font-family:ff13;line-height:1.193359;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_dda04de4b385e195ee9ff4b5.woff')format("woff");}.ff14{font-family:ff14;line-height:1.193359;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;}
.m92{transform:matrix(-0.155812,-0.195506,0.195506,-0.155811,0,0);-ms-transform:matrix(-0.155812,-0.195506,0.195506,-0.155811,0,0);-webkit-transform:matrix(-0.155812,-0.195506,0.195506,-0.155811,0,0);}
.m91{transform:matrix(-0.137174,-0.209005,0.209005,-0.137174,0,0);-ms-transform:matrix(-0.137174,-0.209005,0.209005,-0.137174,0,0);-webkit-transform:matrix(-0.137174,-0.209005,0.209005,-0.137174,0,0);}
.m66{transform:matrix(-0.133222,0.211547,-0.211547,-0.133222,0,0);-ms-transform:matrix(-0.133222,0.211547,-0.211547,-0.133222,0,0);-webkit-transform:matrix(-0.133222,0.211547,-0.211547,-0.133222,0,0);}
.m90{transform:matrix(-0.122943,-0.217681,0.217681,-0.122943,0,0);-ms-transform:matrix(-0.122943,-0.217681,0.217681,-0.122943,0,0);-webkit-transform:matrix(-0.122943,-0.217681,0.217681,-0.122943,0,0);}
.m8f{transform:matrix(-0.113684,-0.222657,0.222657,-0.113684,0,0);-ms-transform:matrix(-0.113684,-0.222657,0.222657,-0.113684,0,0);-webkit-transform:matrix(-0.113684,-0.222657,0.222657,-0.113684,0,0);}
.m67{transform:matrix(-0.113261,0.222872,-0.222872,-0.113261,0,0);-ms-transform:matrix(-0.113261,0.222872,-0.222872,-0.113261,0,0);-webkit-transform:matrix(-0.113261,0.222872,-0.222872,-0.113261,0,0);}
.m8e{transform:matrix(-0.097095,-0.230375,0.230375,-0.097095,0,0);-ms-transform:matrix(-0.097095,-0.230375,0.230375,-0.097095,0,0);-webkit-transform:matrix(-0.097095,-0.230375,0.230375,-0.097095,0,0);}
.m68{transform:matrix(-0.096962,0.230431,-0.230431,-0.096962,0,0);-ms-transform:matrix(-0.096962,0.230431,-0.230431,-0.096962,0,0);-webkit-transform:matrix(-0.096962,0.230431,-0.230431,-0.096962,0,0);}
.m8d{transform:matrix(-0.075234,-0.238411,0.238411,-0.075234,0,0);-ms-transform:matrix(-0.075234,-0.238411,0.238411,-0.075234,0,0);-webkit-transform:matrix(-0.075234,-0.238411,0.238411,-0.075234,0,0);}
.m69{transform:matrix(-0.073200,0.239044,-0.239044,-0.073200,0,0);-ms-transform:matrix(-0.073200,0.239044,-0.239044,-0.073200,0,0);-webkit-transform:matrix(-0.073200,0.239044,-0.239044,-0.073200,0,0);}
.m3{transform:matrix(-0.064705,-0.241481,0.241481,-0.064705,0,0);-ms-transform:matrix(-0.064705,-0.241481,0.241481,-0.064705,0,0);-webkit-transform:matrix(-0.064705,-0.241481,0.241481,-0.064705,0,0);}
.m6a{transform:matrix(-0.047673,0.245412,-0.245412,-0.047673,0,0);-ms-transform:matrix(-0.047673,0.245412,-0.245412,-0.047673,0,0);-webkit-transform:matrix(-0.047673,0.245412,-0.245412,-0.047673,0,0);}
.m8c{transform:matrix(-0.045554,-0.245815,0.245815,-0.045554,0,0);-ms-transform:matrix(-0.045554,-0.245815,0.245815,-0.045554,0,0);-webkit-transform:matrix(-0.045554,-0.245815,0.245815,-0.045554,0,0);}
.m6b{transform:matrix(-0.028725,0.248344,-0.248344,-0.028725,0,0);-ms-transform:matrix(-0.028725,0.248344,-0.248344,-0.028725,0,0);-webkit-transform:matrix(-0.028725,0.248344,-0.248344,-0.028725,0,0);}
.m45{transform:matrix(-0.026764,-0.248563,0.248563,-0.026764,0,0);-ms-transform:matrix(-0.026764,-0.248563,0.248563,-0.026764,0,0);-webkit-transform:matrix(-0.026764,-0.248563,0.248563,-0.026764,0,0);}
.m23{transform:matrix(-0.025193,0.248727,-0.248727,-0.025193,0,0);-ms-transform:matrix(-0.025193,0.248727,-0.248727,-0.025193,0,0);-webkit-transform:matrix(-0.025193,0.248727,-0.248727,-0.025193,0,0);}
.m8b{transform:matrix(-0.015934,-0.249492,0.249492,-0.015934,0,0);-ms-transform:matrix(-0.015934,-0.249492,0.249492,-0.015934,0,0);-webkit-transform:matrix(-0.015934,-0.249492,0.249492,-0.015934,0,0);}
.m6c{transform:matrix(-0.011586,0.249731,-0.249731,-0.011586,0,0);-ms-transform:matrix(-0.011586,0.249731,-0.249731,-0.011586,0,0);-webkit-transform:matrix(-0.011586,0.249731,-0.249731,-0.011586,0,0);}
.m44{transform:matrix(-0.010300,-0.249788,0.249788,-0.010300,0,0);-ms-transform:matrix(-0.010300,-0.249788,0.249788,-0.010300,0,0);-webkit-transform:matrix(-0.010300,-0.249788,0.249788,-0.010300,0,0);}
.m24{transform:matrix(-0.000396,0.250000,-0.250000,-0.000396,0,0);-ms-transform:matrix(-0.000396,0.250000,-0.250000,-0.000396,0,0);-webkit-transform:matrix(-0.000396,0.250000,-0.250000,-0.000396,0,0);}
.m43{transform:matrix(0.006143,-0.249925,0.249925,0.006143,0,0);-ms-transform:matrix(0.006143,-0.249925,0.249925,0.006143,0,0);-webkit-transform:matrix(0.006143,-0.249925,0.249925,0.006143,0,0);}
.m65{transform:matrix(0.008964,-0.249839,0.249839,0.008964,0,0);-ms-transform:matrix(0.008964,-0.249839,0.249839,0.008964,0,0);-webkit-transform:matrix(0.008964,-0.249839,0.249839,0.008964,0,0);}
.m8a{transform:matrix(0.010795,-0.249767,0.249767,0.010795,0,0);-ms-transform:matrix(0.010795,-0.249767,0.249767,0.010795,0,0);-webkit-transform:matrix(0.010795,-0.249767,0.249767,0.010795,0,0);}
.m46{transform:matrix(0.015737,0.249504,-0.249504,0.015737,0,0);-ms-transform:matrix(0.015737,0.249504,-0.249504,0.015737,0,0);-webkit-transform:matrix(0.015737,0.249504,-0.249504,0.015737,0,0);}
.m25{transform:matrix(0.021456,0.249078,-0.249078,0.021456,0,0);-ms-transform:matrix(0.021456,0.249078,-0.249078,0.021456,0,0);-webkit-transform:matrix(0.021456,0.249078,-0.249078,0.021456,0,0);}
.m6d{transform:matrix(0.027156,0.248521,-0.248521,0.027156,0,0);-ms-transform:matrix(0.027156,0.248521,-0.248521,0.027156,0,0);-webkit-transform:matrix(0.027156,0.248521,-0.248521,0.027156,0,0);}
.m64{transform:matrix(0.029607,-0.248241,0.248241,0.029607,0,0);-ms-transform:matrix(0.029607,-0.248241,0.248241,0.029607,0,0);-webkit-transform:matrix(0.029607,-0.248241,0.248241,0.029607,0,0);}
.m42{transform:matrix(0.029901,-0.248205,0.248205,0.029900,0,0);-ms-transform:matrix(0.029901,-0.248205,0.248205,0.029900,0,0);-webkit-transform:matrix(0.029901,-0.248205,0.248205,0.029900,0,0);}
.m47{transform:matrix(0.036637,0.247301,-0.247301,0.036637,0,0);-ms-transform:matrix(0.036637,0.247301,-0.247301,0.036637,0,0);-webkit-transform:matrix(0.036637,0.247301,-0.247301,0.036637,0,0);}
.m26{transform:matrix(0.039748,0.246820,-0.246820,0.039748,0,0);-ms-transform:matrix(0.039748,0.246820,-0.246820,0.039748,0,0);-webkit-transform:matrix(0.039748,0.246820,-0.246820,0.039748,0,0);}
.m63{transform:matrix(0.047000,-0.245542,0.245542,0.047000,0,0);-ms-transform:matrix(0.047000,-0.245542,0.245542,0.047000,0,0);-webkit-transform:matrix(0.047000,-0.245542,0.245542,0.047000,0,0);}
.m89{transform:matrix(0.049979,-0.244953,0.244953,0.049979,0,0);-ms-transform:matrix(0.049979,-0.244953,0.244953,0.049979,0,0);-webkit-transform:matrix(0.049979,-0.244953,0.244953,0.049979,0,0);}
.m41{transform:matrix(0.052088,-0.244514,0.244514,0.052088,0,0);-ms-transform:matrix(0.052088,-0.244514,0.244514,0.052088,0,0);-webkit-transform:matrix(0.052088,-0.244514,0.244514,0.052088,0,0);}
.m6e{transform:matrix(0.052566,0.244411,-0.244411,0.052566,0,0);-ms-transform:matrix(0.052566,0.244411,-0.244411,0.052566,0,0);-webkit-transform:matrix(0.052566,0.244411,-0.244411,0.052566,0,0);}
.m48{transform:matrix(0.054095,0.244077,-0.244077,0.054095,0,0);-ms-transform:matrix(0.054095,0.244077,-0.244077,0.054095,0,0);-webkit-transform:matrix(0.054095,0.244077,-0.244077,0.054095,0,0);}
.m2{transform:matrix(0.055747,-0.243705,0.243705,0.055747,0,0);-ms-transform:matrix(0.055747,-0.243705,0.243705,0.055747,0,0);-webkit-transform:matrix(0.055747,-0.243705,0.243705,0.055747,0,0);}
.m62{transform:matrix(0.063765,-0.241731,0.241731,0.063765,0,0);-ms-transform:matrix(0.063765,-0.241731,0.241731,0.063765,0,0);-webkit-transform:matrix(0.063765,-0.241731,0.241731,0.063765,0,0);}
.m40{transform:matrix(0.067426,-0.240736,0.240736,0.067426,0,0);-ms-transform:matrix(0.067426,-0.240736,0.240736,0.067426,0,0);-webkit-transform:matrix(0.067426,-0.240736,0.240736,0.067426,0,0);}
.m27{transform:matrix(0.070227,0.239934,-0.239934,0.070227,0,0);-ms-transform:matrix(0.070227,0.239934,-0.239934,0.070227,0,0);-webkit-transform:matrix(0.070227,0.239934,-0.239934,0.070227,0,0);}
.m88{transform:matrix(0.071483,-0.239563,0.239563,0.071483,0,0);-ms-transform:matrix(0.071483,-0.239563,0.239563,0.071483,0,0);-webkit-transform:matrix(0.071483,-0.239563,0.239563,0.071483,0,0);}
.m6f{transform:matrix(0.073940,0.238815,-0.238815,0.073940,0,0);-ms-transform:matrix(0.073940,0.238815,-0.238815,0.073940,0,0);-webkit-transform:matrix(0.073940,0.238815,-0.238815,0.073940,0,0);}
.m20{transform:matrix(0.076207,0.238102,-0.238102,0.076207,0,0);-ms-transform:matrix(0.076207,0.238102,-0.238102,0.076207,0,0);-webkit-transform:matrix(0.076207,0.238102,-0.238102,0.076207,0,0);}
.m49{transform:matrix(0.077262,0.237762,-0.237762,0.077262,0,0);-ms-transform:matrix(0.077262,0.237762,-0.237762,0.077262,0,0);-webkit-transform:matrix(0.077262,0.237762,-0.237762,0.077262,0,0);}
.m1f{transform:matrix(0.078953,0.237206,-0.237206,0.078953,0,0);-ms-transform:matrix(0.078953,0.237206,-0.237206,0.078953,0,0);-webkit-transform:matrix(0.078953,0.237206,-0.237206,0.078953,0,0);}
.m1e{transform:matrix(0.081931,0.236193,-0.236193,0.081931,0,0);-ms-transform:matrix(0.081931,0.236193,-0.236193,0.081931,0,0);-webkit-transform:matrix(0.081931,0.236193,-0.236193,0.081931,0,0);}
.m3f{transform:matrix(0.082024,-0.236161,0.236161,0.082023,0,0);-ms-transform:matrix(0.082024,-0.236161,0.236161,0.082023,0,0);-webkit-transform:matrix(0.082024,-0.236161,0.236161,0.082023,0,0);}
.m1d{transform:matrix(0.084407,0.235320,-0.235320,0.084407,0,0);-ms-transform:matrix(0.084407,0.235320,-0.235320,0.084407,0,0);-webkit-transform:matrix(0.084407,0.235320,-0.235320,0.084407,0,0);}
.m61{transform:matrix(0.085520,-0.234918,0.234918,0.085520,0,0);-ms-transform:matrix(0.085520,-0.234918,0.234918,0.085520,0,0);-webkit-transform:matrix(0.085520,-0.234918,0.234918,0.085520,0,0);}
.m87{transform:matrix(0.087552,-0.234168,0.234168,0.087552,0,0);-ms-transform:matrix(0.087552,-0.234168,0.234168,0.087552,0,0);-webkit-transform:matrix(0.087552,-0.234168,0.234168,0.087552,0,0);}
.m1c{transform:matrix(0.087774,0.234085,-0.234085,0.087774,0,0);-ms-transform:matrix(0.087774,0.234085,-0.234085,0.087774,0,0);-webkit-transform:matrix(0.087774,0.234085,-0.234085,0.087774,0,0);}
.m1b{transform:matrix(0.091621,0.232606,-0.232606,0.091621,0,0);-ms-transform:matrix(0.091621,0.232606,-0.232606,0.091621,0,0);-webkit-transform:matrix(0.091621,0.232606,-0.232606,0.091621,0,0);}
.m70{transform:matrix(0.091680,0.232583,-0.232583,0.091680,0,0);-ms-transform:matrix(0.091680,0.232583,-0.232583,0.091680,0,0);-webkit-transform:matrix(0.091680,0.232583,-0.232583,0.091680,0,0);}
.m1a{transform:matrix(0.097485,0.230210,-0.230210,0.097485,0,0);-ms-transform:matrix(0.097485,0.230210,-0.230210,0.097485,0,0);-webkit-transform:matrix(0.097485,0.230210,-0.230210,0.097485,0,0);}
.m4a{transform:matrix(0.099382,0.229398,-0.229398,0.099382,0,0);-ms-transform:matrix(0.099382,0.229398,-0.229398,0.099382,0,0);-webkit-transform:matrix(0.099382,0.229398,-0.229398,0.099382,0,0);}
.m28{transform:matrix(0.099470,0.229360,-0.229360,0.099470,0,0);-ms-transform:matrix(0.099470,0.229360,-0.229360,0.099470,0,0);-webkit-transform:matrix(0.099470,0.229360,-0.229360,0.099470,0,0);}
.m19{transform:matrix(0.101973,0.228258,-0.228258,0.101973,0,0);-ms-transform:matrix(0.101973,0.228258,-0.228258,0.101973,0,0);-webkit-transform:matrix(0.101973,0.228258,-0.228258,0.101973,0,0);}
.m3e{transform:matrix(0.102441,-0.228048,0.228048,0.102441,0,0);-ms-transform:matrix(0.102441,-0.228048,0.228048,0.102441,0,0);-webkit-transform:matrix(0.102441,-0.228048,0.228048,0.102441,0,0);}
.m18{transform:matrix(0.106596,0.226136,-0.226136,0.106596,0,0);-ms-transform:matrix(0.106596,0.226136,-0.226136,0.106596,0,0);-webkit-transform:matrix(0.106596,0.226136,-0.226136,0.106596,0,0);}
.m86{transform:matrix(0.106858,-0.226012,0.226012,0.106858,0,0);-ms-transform:matrix(0.106858,-0.226012,0.226012,0.106858,0,0);-webkit-transform:matrix(0.106858,-0.226012,0.226012,0.106858,0,0);}
.m60{transform:matrix(0.107546,-0.225685,0.225685,0.107546,0,0);-ms-transform:matrix(0.107546,-0.225685,0.225685,0.107546,0,0);-webkit-transform:matrix(0.107546,-0.225685,0.225685,0.107546,0,0);}
.m17{transform:matrix(0.111755,0.223631,-0.223631,0.111755,0,0);-ms-transform:matrix(0.111755,0.223631,-0.223631,0.111755,0,0);-webkit-transform:matrix(0.111755,0.223631,-0.223631,0.111755,0,0);}
.m71{transform:matrix(0.113007,0.223001,-0.223001,0.113007,0,0);-ms-transform:matrix(0.113007,0.223001,-0.223001,0.113007,0,0);-webkit-transform:matrix(0.113007,0.223001,-0.223001,0.113007,0,0);}
.m16{transform:matrix(0.116232,0.221337,-0.221337,0.116232,0,0);-ms-transform:matrix(0.116232,0.221337,-0.221337,0.116232,0,0);-webkit-transform:matrix(0.116232,0.221337,-0.221337,0.116232,0,0);}
.m15{transform:matrix(0.121459,0.218512,-0.218512,0.121459,0,0);-ms-transform:matrix(0.121459,0.218512,-0.218512,0.121459,0,0);-webkit-transform:matrix(0.121459,0.218512,-0.218512,0.121459,0,0);}
.m4b{transform:matrix(0.122408,0.217983,-0.217983,0.122408,0,0);-ms-transform:matrix(0.122408,0.217983,-0.217983,0.122408,0,0);-webkit-transform:matrix(0.122408,0.217983,-0.217983,0.122408,0,0);}
.m3d{transform:matrix(0.122613,-0.217867,0.217867,0.122613,0,0);-ms-transform:matrix(0.122613,-0.217867,0.217867,0.122613,0,0);-webkit-transform:matrix(0.122613,-0.217867,0.217867,0.122613,0,0);}
.m14{transform:matrix(0.125792,0.216047,-0.216047,0.125792,0,0);-ms-transform:matrix(0.125792,0.216047,-0.216047,0.125792,0,0);-webkit-transform:matrix(0.125792,0.216047,-0.216047,0.125792,0,0);}
.m5f{transform:matrix(0.127030,-0.215321,0.215321,0.127030,0,0);-ms-transform:matrix(0.127030,-0.215321,0.215321,0.127030,0,0);-webkit-transform:matrix(0.127030,-0.215321,0.215321,0.127030,0,0);}
.m85{transform:matrix(0.127923,-0.214792,0.214793,0.127923,0,0);-ms-transform:matrix(0.127923,-0.214792,0.214793,0.127923,0,0);-webkit-transform:matrix(0.127923,-0.214792,0.214793,0.127923,0,0);}
.m1{transform:matrix(0.129326,-0.213950,0.213950,0.129326,0,0);-ms-transform:matrix(0.129326,-0.213950,0.213950,0.129326,0,0);-webkit-transform:matrix(0.129326,-0.213950,0.213950,0.129326,0,0);}
.m13{transform:matrix(0.129753,0.213691,-0.213691,0.129753,0,0);-ms-transform:matrix(0.129753,0.213691,-0.213691,0.129753,0,0);-webkit-transform:matrix(0.129753,0.213691,-0.213691,0.129753,0,0);}
.m12{transform:matrix(0.133798,0.211183,-0.211183,0.133798,0,0);-ms-transform:matrix(0.133798,0.211183,-0.211183,0.133798,0,0);-webkit-transform:matrix(0.133798,0.211183,-0.211183,0.133798,0,0);}
.m72{transform:matrix(0.135205,0.210285,-0.210285,0.135205,0,0);-ms-transform:matrix(0.135205,0.210285,-0.210285,0.135205,0,0);-webkit-transform:matrix(0.135205,0.210285,-0.210285,0.135205,0,0);}
.m29{transform:matrix(0.136388,0.209519,-0.209519,0.136388,0,0);-ms-transform:matrix(0.136388,0.209519,-0.209519,0.136388,0,0);-webkit-transform:matrix(0.136388,0.209519,-0.209519,0.136388,0,0);}
.m11{transform:matrix(0.139047,0.207764,-0.207764,0.139047,0,0);-ms-transform:matrix(0.139047,0.207764,-0.207764,0.139047,0,0);-webkit-transform:matrix(0.139047,0.207764,-0.207764,0.139047,0,0);}
.m3c{transform:matrix(0.142769,-0.205224,0.205224,0.142769,0,0);-ms-transform:matrix(0.142769,-0.205224,0.205224,0.142769,0,0);-webkit-transform:matrix(0.142769,-0.205224,0.205224,0.142769,0,0);}
.m10{transform:matrix(0.144679,0.203882,-0.203882,0.144679,0,0);-ms-transform:matrix(0.144679,0.203882,-0.203882,0.144679,0,0);-webkit-transform:matrix(0.144679,0.203882,-0.203882,0.144679,0,0);}
.m5e{transform:matrix(0.146511,-0.202570,0.202570,0.146511,0,0);-ms-transform:matrix(0.146511,-0.202570,0.202570,0.146511,0,0);-webkit-transform:matrix(0.146511,-0.202570,0.202570,0.146511,0,0);}
.m84{transform:matrix(0.146890,-0.202295,0.202295,0.146890,0,0);-ms-transform:matrix(0.146890,-0.202295,0.202295,0.146890,0,0);-webkit-transform:matrix(0.146890,-0.202295,0.202295,0.146890,0,0);}
.mf{transform:matrix(0.148827,0.200874,-0.200874,0.148827,0,0);-ms-transform:matrix(0.148827,0.200874,-0.200874,0.148827,0,0);-webkit-transform:matrix(0.148827,0.200874,-0.200874,0.148827,0,0);}
.m4c{transform:matrix(0.151949,0.198524,-0.198524,0.151949,0,0);-ms-transform:matrix(0.151949,0.198524,-0.198524,0.151949,0,0);-webkit-transform:matrix(0.151949,0.198524,-0.198524,0.151949,0,0);}
.me{transform:matrix(0.153194,0.197564,-0.197564,0.153194,0,0);-ms-transform:matrix(0.153194,0.197564,-0.197564,0.153194,0,0);-webkit-transform:matrix(0.153194,0.197564,-0.197564,0.153194,0,0);}
.m73{transform:matrix(0.153464,0.197354,-0.197354,0.153464,0,0);-ms-transform:matrix(0.153464,0.197354,-0.197354,0.153464,0,0);-webkit-transform:matrix(0.153464,0.197354,-0.197354,0.153464,0,0);}
.m2a{transform:matrix(0.160077,0.192030,-0.192030,0.160077,0,0);-ms-transform:matrix(0.160077,0.192030,-0.192030,0.160077,0,0);-webkit-transform:matrix(0.160077,0.192030,-0.192030,0.160077,0,0);}
.md{transform:matrix(0.160210,0.191919,-0.191919,0.160210,0,0);-ms-transform:matrix(0.160210,0.191919,-0.191919,0.160210,0,0);-webkit-transform:matrix(0.160210,0.191919,-0.191919,0.160210,0,0);}
.m3b{transform:matrix(0.161575,-0.190771,0.190771,0.161575,0,0);-ms-transform:matrix(0.161575,-0.190771,0.190771,0.161575,0,0);-webkit-transform:matrix(0.161575,-0.190771,0.190771,0.161575,0,0);}
.m83{transform:matrix(0.164401,-0.188341,0.188341,0.164401,0,0);-ms-transform:matrix(0.164401,-0.188341,0.188341,0.164401,0,0);-webkit-transform:matrix(0.164401,-0.188341,0.188341,0.164401,0,0);}
.mc{transform:matrix(0.164752,0.188034,-0.188034,0.164752,0,0);-ms-transform:matrix(0.164752,0.188034,-0.188034,0.164752,0,0);-webkit-transform:matrix(0.164752,0.188034,-0.188034,0.164752,0,0);}
.m5d{transform:matrix(0.165101,-0.187727,0.187727,0.165101,0,0);-ms-transform:matrix(0.165101,-0.187727,0.187727,0.165101,0,0);-webkit-transform:matrix(0.165101,-0.187727,0.187727,0.165101,0,0);}
.m4d{transform:matrix(0.171096,0.182280,-0.182280,0.171096,0,0);-ms-transform:matrix(0.171096,0.182280,-0.182280,0.171096,0,0);-webkit-transform:matrix(0.171096,0.182280,-0.182280,0.171096,0,0);}
.mb{transform:matrix(0.171281,0.182107,-0.182107,0.171281,0,0);-ms-transform:matrix(0.171281,0.182107,-0.182107,0.171281,0,0);-webkit-transform:matrix(0.171281,0.182107,-0.182107,0.171281,0,0);}
.m74{transform:matrix(0.171469,0.181930,-0.181930,0.171469,0,0);-ms-transform:matrix(0.171469,0.181930,-0.181930,0.171469,0,0);-webkit-transform:matrix(0.171469,0.181930,-0.181930,0.171469,0,0);}
.ma{transform:matrix(0.176619,0.176934,-0.176934,0.176619,0,0);-ms-transform:matrix(0.176619,0.176934,-0.176934,0.176619,0,0);-webkit-transform:matrix(0.176619,0.176934,-0.176934,0.176619,0,0);}
.m2b{transform:matrix(0.177565,0.175985,-0.175985,0.177565,0,0);-ms-transform:matrix(0.177565,0.175985,-0.175985,0.177565,0,0);-webkit-transform:matrix(0.177565,0.175985,-0.175985,0.177565,0,0);}
.m3a{transform:matrix(0.179971,-0.173523,0.173523,0.179971,0,0);-ms-transform:matrix(0.179971,-0.173523,0.173523,0.179971,0,0);-webkit-transform:matrix(0.179971,-0.173523,0.173523,0.179971,0,0);}
.m9{transform:matrix(0.181464,0.171962,-0.171962,0.181464,0,0);-ms-transform:matrix(0.181464,0.171962,-0.171962,0.181464,0,0);-webkit-transform:matrix(0.181464,0.171962,-0.171962,0.181464,0,0);}
.m82{transform:matrix(0.182884,-0.170450,0.170450,0.182884,0,0);-ms-transform:matrix(0.182884,-0.170450,0.170450,0.182884,0,0);-webkit-transform:matrix(0.182884,-0.170450,0.170450,0.182884,0,0);}
.m4e{transform:matrix(0.183612,0.169666,-0.169666,0.183612,0,0);-ms-transform:matrix(0.183612,0.169666,-0.169666,0.183612,0,0);-webkit-transform:matrix(0.183612,0.169666,-0.169666,0.183612,0,0);}
.m5c{transform:matrix(0.185995,-0.167050,0.167050,0.185995,0,0);-ms-transform:matrix(0.185995,-0.167050,0.167050,0.185995,0,0);-webkit-transform:matrix(0.185995,-0.167050,0.167050,0.185995,0,0);}
.m8{transform:matrix(0.186428,0.166567,-0.166567,0.186428,0,0);-ms-transform:matrix(0.186428,0.166567,-0.166567,0.186428,0,0);-webkit-transform:matrix(0.186428,0.166567,-0.166567,0.186428,0,0);}
.m75{transform:matrix(0.188034,0.164752,-0.164752,0.188034,0,0);-ms-transform:matrix(0.188034,0.164752,-0.164752,0.188034,0,0);-webkit-transform:matrix(0.188034,0.164752,-0.164752,0.188034,0,0);}
.m7{transform:matrix(0.192160,0.159920,-0.159920,0.192160,0,0);-ms-transform:matrix(0.192160,0.159920,-0.159920,0.192160,0,0);-webkit-transform:matrix(0.192160,0.159920,-0.159920,0.192160,0,0);}
.m2c{transform:matrix(0.192328,0.159718,-0.159718,0.192328,0,0);-ms-transform:matrix(0.192328,0.159718,-0.159718,0.192328,0,0);-webkit-transform:matrix(0.192328,0.159718,-0.159718,0.192328,0,0);}
.m4f{transform:matrix(0.195913,0.155300,-0.155300,0.195913,0,0);-ms-transform:matrix(0.195913,0.155300,-0.155300,0.195913,0,0);-webkit-transform:matrix(0.195913,0.155300,-0.155300,0.195913,0,0);}
.m6{transform:matrix(0.197357,0.153461,-0.153461,0.197357,0,0);-ms-transform:matrix(0.197357,0.153461,-0.153461,0.197357,0,0);-webkit-transform:matrix(0.197357,0.153461,-0.153461,0.197357,0,0);}
.m39{transform:matrix(0.200522,-0.149301,0.149301,0.200522,0,0);-ms-transform:matrix(0.200522,-0.149301,0.149301,0.200522,0,0);-webkit-transform:matrix(0.200522,-0.149301,0.149301,0.200522,0,0);}
.m5{transform:matrix(0.202612,0.146453,-0.146453,0.202612,0,0);-ms-transform:matrix(0.202612,0.146453,-0.146453,0.202612,0,0);-webkit-transform:matrix(0.202612,0.146453,-0.146453,0.202612,0,0);}
.m2d{transform:matrix(0.203280,0.145523,-0.145523,0.203280,0,0);-ms-transform:matrix(0.203280,0.145523,-0.145523,0.203280,0,0);-webkit-transform:matrix(0.203280,0.145523,-0.145523,0.203280,0,0);}
.m76{transform:matrix(0.203498,0.145219,-0.145219,0.203498,0,0);-ms-transform:matrix(0.203498,0.145219,-0.145219,0.203498,0,0);-webkit-transform:matrix(0.203498,0.145219,-0.145219,0.203498,0,0);}
.m5b{transform:matrix(0.207264,-0.139791,0.139791,0.207264,0,0);-ms-transform:matrix(0.207264,-0.139791,0.139791,0.207264,0,0);-webkit-transform:matrix(0.207264,-0.139791,0.139791,0.207264,0,0);}
.m4{transform:matrix(0.207993,0.138705,-0.138705,0.207993,0,0);-ms-transform:matrix(0.207993,0.138705,-0.138705,0.207993,0,0);-webkit-transform:matrix(0.207993,0.138705,-0.138705,0.207993,0,0);}
.m81{transform:matrix(0.208022,-0.138661,0.138661,0.208022,0,0);-ms-transform:matrix(0.208022,-0.138661,0.138661,0.208022,0,0);-webkit-transform:matrix(0.208022,-0.138661,0.138661,0.208022,0,0);}
.m38{transform:matrix(0.211195,-0.133778,0.133778,0.211195,0,0);-ms-transform:matrix(0.211195,-0.133778,0.133778,0.211195,0,0);-webkit-transform:matrix(0.211195,-0.133778,0.133778,0.211195,0,0);}
.m77{transform:matrix(0.216369,0.125238,-0.125238,0.216369,0,0);-ms-transform:matrix(0.216369,0.125238,-0.125238,0.216369,0,0);-webkit-transform:matrix(0.216369,0.125238,-0.125238,0.216369,0,0);}
.m5a{transform:matrix(0.217215,-0.123764,0.123764,0.217215,0,0);-ms-transform:matrix(0.217215,-0.123764,0.123764,0.217215,0,0);-webkit-transform:matrix(0.217215,-0.123764,0.123764,0.217215,0,0);}
.m80{transform:matrix(0.220282,-0.118220,0.118220,0.220282,0,0);-ms-transform:matrix(0.220282,-0.118220,0.118220,0.220282,0,0);-webkit-transform:matrix(0.220282,-0.118220,0.118220,0.220282,0,0);}
.m37{transform:matrix(0.227537,-0.103572,0.103572,0.227537,0,0);-ms-transform:matrix(0.227537,-0.103572,0.103572,0.227537,0,0);-webkit-transform:matrix(0.227537,-0.103572,0.103572,0.227537,0,0);}
.m78{transform:matrix(0.227576,0.103485,-0.103485,0.227576,0,0);-ms-transform:matrix(0.227576,0.103485,-0.103485,0.227576,0,0);-webkit-transform:matrix(0.227576,0.103485,-0.103485,0.227576,0,0);}
.m7f{transform:matrix(0.228087,-0.102354,0.102354,0.228087,0,0);-ms-transform:matrix(0.228087,-0.102354,0.102354,0.228087,0,0);-webkit-transform:matrix(0.228087,-0.102354,0.102354,0.228087,0,0);}
.m59{transform:matrix(0.232158,-0.092750,0.092750,0.232158,0,0);-ms-transform:matrix(0.232158,-0.092750,0.092750,0.232158,0,0);-webkit-transform:matrix(0.232158,-0.092750,0.092750,0.232158,0,0);}
.m36{transform:matrix(0.233965,-0.088093,0.088093,0.233965,0,0);-ms-transform:matrix(0.233965,-0.088093,0.088093,0.233965,0,0);-webkit-transform:matrix(0.233965,-0.088093,0.088093,0.233965,0,0);}
.m7e{transform:matrix(0.234967,-0.085385,0.085385,0.234967,0,0);-ms-transform:matrix(0.234967,-0.085385,0.085385,0.234967,0,0);-webkit-transform:matrix(0.234967,-0.085385,0.085385,0.234967,0,0);}
.m35{transform:matrix(0.237612,-0.077722,0.077722,0.237612,0,0);-ms-transform:matrix(0.237612,-0.077722,0.077722,0.237612,0,0);-webkit-transform:matrix(0.237612,-0.077722,0.077722,0.237612,0,0);}
.m58{transform:matrix(0.237851,-0.076986,0.076986,0.237851,0,0);-ms-transform:matrix(0.237851,-0.076986,0.076986,0.237851,0,0);-webkit-transform:matrix(0.237851,-0.076986,0.076986,0.237851,0,0);}
.m21{transform:matrix(0.240939,-0.066696,0.066696,0.240939,0,0);-ms-transform:matrix(0.240939,-0.066696,0.066696,0.240939,0,0);-webkit-transform:matrix(0.240939,-0.066696,0.066696,0.240939,0,0);}
.m50{transform:matrix(0.240970,0.066583,-0.066583,0.240970,0,0);-ms-transform:matrix(0.240970,0.066583,-0.066583,0.240970,0,0);-webkit-transform:matrix(0.240970,0.066583,-0.066583,0.240970,0,0);}
.m57{transform:matrix(0.241022,-0.066395,0.066395,0.241022,0,0);-ms-transform:matrix(0.241022,-0.066395,0.066395,0.241022,0,0);-webkit-transform:matrix(0.241022,-0.066395,0.066395,0.241022,0,0);}
.m7d{transform:matrix(0.241582,-0.064330,0.064330,0.241582,0,0);-ms-transform:matrix(0.241582,-0.064330,0.064330,0.241582,0,0);-webkit-transform:matrix(0.241582,-0.064330,0.064330,0.241582,0,0);}
.m34{transform:matrix(0.242051,-0.062540,0.062540,0.242051,0,0);-ms-transform:matrix(0.242051,-0.062540,0.062540,0.242051,0,0);-webkit-transform:matrix(0.242051,-0.062540,0.062540,0.242051,0,0);}
.m2e{transform:matrix(0.243864,0.055049,-0.055049,0.243864,0,0);-ms-transform:matrix(0.243864,0.055049,-0.055049,0.243864,0,0);-webkit-transform:matrix(0.243864,0.055049,-0.055049,0.243864,0,0);}
.m56{transform:matrix(0.244726,-0.051082,0.051082,0.244726,0,0);-ms-transform:matrix(0.244726,-0.051082,0.051082,0.244726,0,0);-webkit-transform:matrix(0.244726,-0.051082,0.051082,0.244726,0,0);}
.m33{transform:matrix(0.245570,-0.046855,0.046855,0.245570,0,0);-ms-transform:matrix(0.245570,-0.046855,0.046855,0.245570,0,0);-webkit-transform:matrix(0.245570,-0.046855,0.046855,0.245570,0,0);}
.m7c{transform:matrix(0.246549,-0.041397,0.041397,0.246549,0,0);-ms-transform:matrix(0.246549,-0.041397,0.041397,0.246549,0,0);-webkit-transform:matrix(0.246549,-0.041397,0.041397,0.246549,0,0);}
.m51{transform:matrix(0.246836,0.039651,-0.039651,0.246836,0,0);-ms-transform:matrix(0.246836,0.039651,-0.039651,0.246836,0,0);-webkit-transform:matrix(0.246836,0.039651,-0.039651,0.246836,0,0);}
.m55{transform:matrix(0.247499,-0.035274,0.035274,0.247499,0,0);-ms-transform:matrix(0.247499,-0.035274,0.035274,0.247499,0,0);-webkit-transform:matrix(0.247499,-0.035274,0.035274,0.247499,0,0);}
.m2f{transform:matrix(0.248428,0.027990,-0.027990,0.248428,0,0);-ms-transform:matrix(0.248428,0.027990,-0.027990,0.248428,0,0);-webkit-transform:matrix(0.248428,0.027990,-0.027990,0.248428,0,0);}
.m32{transform:matrix(0.248626,-0.026175,0.026175,0.248626,0,0);-ms-transform:matrix(0.248626,-0.026175,0.026175,0.248626,0,0);-webkit-transform:matrix(0.248626,-0.026175,0.026175,0.248626,0,0);}
.m7b{transform:matrix(0.248767,-0.024800,0.024800,0.248767,0,0);-ms-transform:matrix(0.248767,-0.024800,0.024800,0.248767,0,0);-webkit-transform:matrix(0.248767,-0.024800,0.024800,0.248767,0,0);}
.m52{transform:matrix(0.248937,0.023030,-0.023030,0.248937,0,0);-ms-transform:matrix(0.248937,0.023030,-0.023030,0.248937,0,0);-webkit-transform:matrix(0.248937,0.023030,-0.023030,0.248937,0,0);}
.m7a{transform:matrix(0.249565,-0.014749,0.014749,0.249565,0,0);-ms-transform:matrix(0.249565,-0.014749,0.014749,0.249565,0,0);-webkit-transform:matrix(0.249565,-0.014749,0.014749,0.249565,0,0);}
.m54{transform:matrix(0.249576,-0.014551,0.014551,0.249576,0,0);-ms-transform:matrix(0.249576,-0.014551,0.014551,0.249576,0,0);-webkit-transform:matrix(0.249576,-0.014551,0.014551,0.249576,0,0);}
.m30{transform:matrix(0.249741,0.011389,-0.011389,0.249740,0,0);-ms-transform:matrix(0.249741,0.011389,-0.011389,0.249740,0,0);-webkit-transform:matrix(0.249741,0.011389,-0.011389,0.249740,0,0);}
.m53{transform:matrix(0.249884,0.007628,-0.007628,0.249884,0,0);-ms-transform:matrix(0.249884,0.007628,-0.007628,0.249884,0,0);-webkit-transform:matrix(0.249884,0.007628,-0.007628,0.249884,0,0);}
.m79{transform:matrix(0.249893,0.007331,-0.007331,0.249892,0,0);-ms-transform:matrix(0.249893,0.007331,-0.007331,0.249892,0,0);-webkit-transform:matrix(0.249893,0.007331,-0.007331,0.249892,0,0);}
.m31{transform:matrix(0.249970,-0.003864,0.003864,0.249970,0,0);-ms-transform:matrix(0.249970,-0.003864,0.003864,0.249970,0,0);-webkit-transform:matrix(0.249970,-0.003864,0.003864,0.249970,0,0);}
.m22{transform:matrix(0.250000,-0.000119,0.000119,0.250000,0,0);-ms-transform:matrix(0.250000,-0.000119,0.000119,0.250000,0,0);-webkit-transform:matrix(0.250000,-0.000119,0.000119,0.250000,0,0);}
.m0{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);}
.m93{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-108.000000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:19.828200px;}
.v2{vertical-align:25.260600px;}
.v3{vertical-align:26.963400px;}
.v4{vertical-align:29.819400px;}
.ls23{letter-spacing:-52.224000px;}
.lsa{letter-spacing:-19.380000px;}
.ls1c{letter-spacing:-18.156000px;}
.ls1{letter-spacing:-13.920000px;}
.ls20{letter-spacing:-10.455000px;}
.ls1f{letter-spacing:-10.302000px;}
.ls7{letter-spacing:-10.251000px;}
.ls2{letter-spacing:-10.200000px;}
.ls15{letter-spacing:-10.098000px;}
.ls21{letter-spacing:-10.047000px;}
.ls8{letter-spacing:-9.996000px;}
.ls17{letter-spacing:-0.115200px;}
.ls16{letter-spacing:-0.086400px;}
.ls5{letter-spacing:-0.074055px;}
.ls6{letter-spacing:-0.044433px;}
.ls1d{letter-spacing:-0.041987px;}
.ls14{letter-spacing:-0.040990px;}
.ls1e{letter-spacing:-0.027991px;}
.ls13{letter-spacing:-0.027327px;}
.ls0{letter-spacing:0.000000px;}
.lse{letter-spacing:0.013663px;}
.ls18{letter-spacing:0.013996px;}
.ls10{letter-spacing:0.027327px;}
.ls1a{letter-spacing:0.027991px;}
.ls22{letter-spacing:0.028800px;}
.lsf{letter-spacing:0.040990px;}
.ls19{letter-spacing:0.041987px;}
.ls4{letter-spacing:0.044433px;}
.ls11{letter-spacing:0.054654px;}
.ls1b{letter-spacing:0.055982px;}
.lsd{letter-spacing:0.057600px;}
.ls3{letter-spacing:0.059244px;}
.ls12{letter-spacing:0.086400px;}
.lsb{letter-spacing:162.375840px;}
.ls9{letter-spacing:164.016000px;}
.lsc{letter-spacing:168.621120px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,173,255),0 0.015em rgb(0,173,255),0.015em 0 rgb(0,173,255),0 -0.015em  rgb(0,173,255);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,173,255);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-179.568000px;}
.ws2{word-spacing:-131.580000px;}
.ws9{word-spacing:-126.990000px;}
.wsc{word-spacing:-122.400000px;}
.wsa{word-spacing:-116.994000px;}
.ws14{word-spacing:-108.834000px;}
.wsd{word-spacing:-80.064000px;}
.wse{word-spacing:-79.263360px;}
.ws19{word-spacing:-74.766000px;}
.wsf{word-spacing:-71.769600px;}
.wsb{word-spacing:-69.500056px;}
.ws4{word-spacing:-65.108744px;}
.ws16{word-spacing:-28.718774px;}
.ws11{word-spacing:-28.037292px;}
.ws3{word-spacing:-0.510000px;}
.ws18{word-spacing:-0.195937px;}
.ws5{word-spacing:-0.192544px;}
.ws13{word-spacing:-0.191288px;}
.ws17{word-spacing:-0.167946px;}
.ws12{word-spacing:-0.163961px;}
.ws8{word-spacing:-0.103678px;}
.ws15{word-spacing:-0.097969px;}
.ws10{word-spacing:-0.095644px;}
.ws6{word-spacing:-0.074055px;}
.ws1{word-spacing:0.000000px;}
.ws7{word-spacing:2005.874471px;}
._3{margin-left:-31.968000px;}
._e{margin-left:-26.496000px;}
._7{margin-left:-21.549332px;}
._10{margin-left:-18.035685px;}
._9{margin-left:-16.416000px;}
._13{margin-left:-15.350400px;}
._1{margin-left:-13.920000px;}
._0{margin-left:-12.528000px;}
._19{margin-left:-11.203200px;}
._5{margin-left:-10.200000px;}
._6{margin-left:-9.180000px;}
._11{margin-left:-7.435628px;}
._2{margin-left:-5.940000px;}
._4{margin-left:-4.428000px;}
._b{margin-left:-2.592000px;}
._8{margin-left:-1.184886px;}
._a{width:1.020000px;}
._f{width:2.764800px;}
._d{width:5.184000px;}
._18{width:6.624000px;}
._12{width:8.160000px;}
._c{width:9.180000px;}
._15{width:37.230000px;}
._17{width:38.250000px;}
._16{width:41.310000px;}
._14{width:42.330000px;}
.fce{color:rgb(61,189,125);}
.fcd{color:rgb(84,0,255);}
.fc2{color:rgb(35,31,32);}
.fc7{color:rgb(35,31,32);}
.fc8{color:rgb(115,115,115);}
.fc0{color:rgb(255,255,255);}
.fca{color:rgb(255,255,255);}
.fc1{color:transparent;}
.fc9{color:rgb(242,102,35);}
.fc4{color:rgb(0,122,255);}
.fc5{color:rgb(0,0,0);}
.fc6{color:rgb(255,86,0);}
.fc3{color:rgb(130,130,130);}
.fcb{color:rgb(0,143,255);}
.fcc{color:rgb(255,150,0);}
.fs46{font-size:117.878272px;}
.fs4b{font-size:117.878273px;}
.fs55{font-size:117.878274px;}
.fs2d{font-size:117.878279px;}
.fs38{font-size:117.878283px;}
.fs37{font-size:117.878286px;}
.fs45{font-size:117.878287px;}
.fs50{font-size:117.878289px;}
.fs44{font-size:117.878290px;}
.fs42{font-size:117.878292px;}
.fs53{font-size:117.878297px;}
.fs29{font-size:117.878298px;}
.fs2f{font-size:117.878300px;}
.fs2c{font-size:117.878302px;}
.fs4d{font-size:117.878304px;}
.fs51{font-size:117.878305px;}
.fs4f{font-size:117.878307px;}
.fs3a{font-size:117.878309px;}
.fs2b{font-size:117.878311px;}
.fs30{font-size:117.878312px;}
.fs5d{font-size:117.878318px;}
.fs43{font-size:117.878320px;}
.fs3e{font-size:117.878323px;}
.fs3f{font-size:117.878326px;}
.fs2e{font-size:117.878327px;}
.fs3c{font-size:117.878328px;}
.fs48{font-size:117.878330px;}
.fs59{font-size:117.878331px;}
.fs3d{font-size:117.878332px;}
.fs5e{font-size:117.878338px;}
.fs40{font-size:117.878340px;}
.fs34{font-size:117.878342px;}
.fs32{font-size:117.878343px;}
.fs5a{font-size:117.878345px;}
.fs41{font-size:117.878346px;}
.fs2a{font-size:117.878349px;}
.fs35{font-size:117.878351px;}
.fs4c{font-size:117.878352px;}
.fs36{font-size:117.878353px;}
.fs47{font-size:117.878356px;}
.fs56{font-size:117.878359px;}
.fs33{font-size:117.878361px;}
.fs28{font-size:117.878363px;}
.fs4e{font-size:117.878365px;}
.fs52{font-size:117.878370px;}
.fs58{font-size:117.878372px;}
.fs54{font-size:117.878375px;}
.fs3b{font-size:117.878376px;}
.fs5c{font-size:117.878377px;}
.fs49{font-size:117.878379px;}
.fs5b{font-size:117.878381px;}
.fs31{font-size:117.878383px;}
.fs4a{font-size:117.878385px;}
.fs39{font-size:117.878389px;}
.fs57{font-size:117.878391px;}
.fs27{font-size:117.878399px;}
.fs5f{font-size:136.633975px;}
.fs60{font-size:139.955040px;}
.fs21{font-size:144.000000px;}
.fs6{font-size:148.110750px;}
.fs25{font-size:185.999992px;}
.fs26{font-size:186.000021px;}
.fs15{font-size:215.999885px;}
.fs1e{font-size:215.999892px;}
.fsd{font-size:215.999908px;}
.fs16{font-size:215.999914px;}
.fs11{font-size:215.999928px;}
.fse{font-size:215.999939px;}
.fsa{font-size:215.999966px;}
.fsc{font-size:215.999969px;}
.fs12{font-size:215.999971px;}
.fs18{font-size:215.999990px;}
.fsb{font-size:215.999993px;}
.fs0{font-size:216.000000px;}
.fs1a{font-size:216.000002px;}
.fs1b{font-size:216.000007px;}
.fs10{font-size:216.000010px;}
.fs1d{font-size:216.000013px;}
.fs17{font-size:216.000022px;}
.fs1f{font-size:216.000024px;}
.fsf{font-size:216.000036px;}
.fs14{font-size:216.000048px;}
.fs19{font-size:216.000059px;}
.fs1c{font-size:216.000061px;}
.fs13{font-size:216.000077px;}
.fs5{font-size:234.204115px;}
.fs20{font-size:250.000200px;}
.fs8{font-size:275.248789px;}
.fs9{font-size:275.248838px;}
.fs7{font-size:275.248901px;}
.fs24{font-size:285.120000px;}
.fs3{font-size:288.000000px;}
.fs2{font-size:330.000000px;}
.fs23{font-size:350.697600px;}
.fs22{font-size:354.240000px;}
.fs4{font-size:510.000000px;}
.fs1{font-size:696.000000px;}
.y14{bottom:-1198.444418px;}
.y17{bottom:-1182.512025px;}
.y13{bottom:-1138.254946px;}
.y18{bottom:-974.694893px;}
.y1b{bottom:-887.673196px;}
.y1a{bottom:-827.482253px;}
.y12{bottom:-818.255768px;}
.y16{bottom:-780.143509px;}
.ye{bottom:-776.517315px;}
.y19{bottom:-767.292781px;}
.y11{bottom:-758.066296px;}
.yf{bottom:-516.735875px;}
.y10{bottom:-397.701014px;}
.y25{bottom:-384.093935px;}
.y15{bottom:-327.453365px;}
.y24{bottom:-323.908205px;}
.y0{bottom:0.000000px;}
.yc8{bottom:0.409200px;}
.y148{bottom:0.531450px;}
.yee{bottom:0.531600px;}
.yc7{bottom:0.893400px;}
.yed{bottom:0.965700px;}
.y149{bottom:1.117950px;}
.yef{bottom:1.118100px;}
.y139{bottom:1.456650px;}
.yc9{bottom:1.456800px;}
.y14a{bottom:1.613250px;}
.yf0{bottom:1.613400px;}
.yc6{bottom:1.624050px;}
.ya5{bottom:2.279850px;}
.ya6{bottom:2.472600px;}
.ya4{bottom:2.701800px;}
.y13a{bottom:2.726700px;}
.yca{bottom:2.726850px;}
.y113{bottom:3.253326px;}
.y138{bottom:4.059600px;}
.yc5{bottom:4.059750px;}
.ya7{bottom:4.281450px;}
.yf1{bottom:4.344600px;}
.ya3{bottom:4.371600px;}
.y157{bottom:4.814369px;}
.ycb{bottom:5.870400px;}
.y12e{bottom:6.005100px;}
.ya8{bottom:6.005250px;}
.ycc{bottom:7.587750px;}
.yf2{bottom:8.086950px;}
.y12d{bottom:8.918700px;}
.ya2{bottom:8.918850px;}
.y137{bottom:9.595050px;}
.yc4{bottom:9.595200px;}
.y12f{bottom:9.832050px;}
.ya9{bottom:9.832200px;}
.ycd{bottom:10.004550px;}
.y2{bottom:11.484105px;}
.yaa{bottom:11.834400px;}
.y14b{bottom:13.821300px;}
.yf3{bottom:13.821450px;}
.yab{bottom:14.623650px;}
.yf4{bottom:17.054100px;}
.yce{bottom:18.979200px;}
.yec{bottom:19.147050px;}
.yac{bottom:24.577800px;}
.y14c{bottom:24.809250px;}
.yf5{bottom:24.809400px;}
.ycf{bottom:27.201150px;}
.y147{bottom:28.129800px;}
.yeb{bottom:28.129950px;}
.y130{bottom:33.456900px;}
.yad{bottom:33.457050px;}
.yd0{bottom:36.359550px;}
.y26{bottom:36.696180px;}
.yea{bottom:37.698150px;}
.yf6{bottom:38.781000px;}
.y12c{bottom:38.941500px;}
.ya1{bottom:38.941650px;}
.y136{bottom:43.308450px;}
.yc3{bottom:43.308600px;}
.yae{bottom:43.335150px;}
.y12b{bottom:46.354050px;}
.ya0{bottom:46.354200px;}
.ye9{bottom:48.555000px;}
.yc2{bottom:49.002300px;}
.yd1{bottom:52.924650px;}
.y14d{bottom:53.373000px;}
.yf7{bottom:53.373150px;}
.yaf{bottom:57.034950px;}
.y12a{bottom:57.851550px;}
.y9f{bottom:57.851700px;}
.y146{bottom:60.491400px;}
.ye8{bottom:60.491550px;}
.yc1{bottom:60.855600px;}
.yd2{bottom:65.250900px;}
.yf8{bottom:65.725800px;}
.y30{bottom:68.211787px;}
.yb0{bottom:69.531150px;}
.y9e{bottom:70.459650px;}
.ye7{bottom:73.428150px;}
.y135{bottom:73.859850px;}
.yc0{bottom:73.860000px;}
.yf9{bottom:77.679300px;}
.y13b{bottom:78.547350px;}
.yd3{bottom:78.547500px;}
.ya{bottom:79.352385px;}
.y161{bottom:79.428857px;}
.yb1{bottom:82.986300px;}
.y33{bottom:84.144330px;}
.y8d{bottom:84.412260px;}
.ye6{bottom:87.250200px;}
.y9d{bottom:90.906750px;}
.yd4{bottom:91.259400px;}
.yfa{bottom:91.777950px;}
.y8{bottom:96.287850px;}
.y134{bottom:96.344100px;}
.ybf{bottom:96.344250px;}
.yb2{bottom:97.293450px;}
.y119{bottom:97.615479px;}
.y15f{bottom:99.988156px;}
.ye5{bottom:101.875650px;}
.yd5{bottom:106.042350px;}
.yfb{bottom:106.607550px;}
.yb3{bottom:110.782800px;}
.ybe{bottom:111.396600px;}
.y9c{bottom:113.332500px;}
.y14e{bottom:115.761600px;}
.yfc{bottom:115.761750px;}
.ye4{bottom:117.123450px;}
.y21{bottom:117.704908px;}
.y13c{bottom:121.488150px;}
.yd6{bottom:121.488300px;}
.yd{bottom:123.026444px;}
.y131{bottom:124.730700px;}
.yb4{bottom:124.730850px;}
.ybd{bottom:126.982500px;}
.y145{bottom:128.151300px;}
.ye3{bottom:128.151450px;}
.y2f{bottom:128.401259px;}
.y14f{bottom:129.903000px;}
.yfd{bottom:129.903150px;}
.yb5{bottom:131.031150px;}
.yd7{bottom:135.770400px;}
.y15a{bottom:135.954662px;}
.y9b{bottom:138.409500px;}
.y133{bottom:142.997100px;}
.ybc{bottom:142.997250px;}
.yd8{bottom:143.788200px;}
.ye2{bottom:144.178500px;}
.yb6{bottom:145.394100px;}
.y1{bottom:149.628795px;}
.ybb{bottom:151.122000px;}
.yfe{bottom:154.063800px;}
.y9a{bottom:154.656450px;}
.yd9{bottom:160.057050px;}
.yb7{bottom:161.720100px;}
.y144{bottom:163.701600px;}
.ye1{bottom:163.701750px;}
.y129{bottom:166.119000px;}
.y99{bottom:166.119150px;}
.y17d{bottom:169.027650px;}
.yba{bottom:172.368900px;}
.yff{bottom:175.350900px;}
.y8b{bottom:176.007150px;}
.y132{bottom:178.098750px;}
.yb8{bottom:178.098900px;}
.y98{bottom:182.513850px;}
.yb9{bottom:184.675050px;}
.y143{bottom:188.275950px;}
.ye0{bottom:188.276100px;}
.y11b{bottom:189.517974px;}
.y150{bottom:191.735250px;}
.y100{bottom:191.735400px;}
.y142{bottom:196.402500px;}
.ydf{bottom:196.402650px;}
.y97{bottom:198.863700px;}
.y80{bottom:211.970550px;}
.yde{bottom:214.158150px;}
.y141{bottom:214.159050px;}
.y22{bottom:215.152220px;}
.y151{bottom:215.888550px;}
.y101{bottom:215.889150px;}
.y42{bottom:220.297500px;}
.y8c{bottom:229.281450px;}
.y140{bottom:231.335550px;}
.ydd{bottom:231.336150px;}
.y152{bottom:231.530550px;}
.y102{bottom:231.531150px;}
.y7{bottom:242.296650px;}
.y8a{bottom:244.565850px;}
.y186{bottom:246.327750px;}
.y13f{bottom:246.466050px;}
.ydc{bottom:246.466650px;}
.y153{bottom:246.542550px;}
.y103{bottom:246.543150px;}
.y17c{bottom:247.536450px;}
.y112{bottom:252.095850px;}
.ydb{bottom:253.722150px;}
.y13e{bottom:253.723050px;}
.y104{bottom:253.842150px;}
.y154{bottom:253.843050px;}
.y18e{bottom:257.045850px;}
.y105{bottom:259.644150px;}
.y155{bottom:259.645050px;}
.y115{bottom:261.728124px;}
.y13d{bottom:273.278550px;}
.yda{bottom:273.279150px;}
.y156{bottom:273.310050px;}
.y106{bottom:273.310650px;}
.y127{bottom:285.095850px;}
.y7f{bottom:289.339650px;}
.y118{bottom:290.832024px;}
.y34{bottom:291.961462px;}
.y15e{bottom:297.901082px;}
.y45{bottom:312.058050px;}
.y185{bottom:316.738350px;}
.y17b{bottom:319.086750px;}
.y172{bottom:319.339650px;}
.y6e{bottom:321.408300px;}
.y18d{bottom:329.038800px;}
.y111{bottom:329.045850px;}
.y7e{bottom:361.533450px;}
.y126{bottom:362.045850px;}
.y37{bottom:378.982994px;}
.y6{bottom:388.305600px;}
.y89{bottom:395.788500px;}
.y171{bottom:397.848600px;}
.y6d{bottom:398.559900px;}
.y16a{bottom:400.445850px;}
.y110{bottom:401.038800px;}
.y73{bottom:404.109000px;}
.y1d{bottom:406.937182px;}
.y71{bottom:407.071500px;}
.y20{bottom:425.546449px;}
.y125{bottom:438.995850px;}
.y36{bottom:439.173937px;}
.y2e{bottom:448.400587px;}
.yc{bottom:453.074514px;}
.y88{bottom:464.809500px;}
.y1c{bottom:467.126654px;}
.y184{bottom:468.130950px;}
.y72{bottom:468.358500px;}
.y17a{bottom:470.479350px;}
.y70{bottom:471.321000px;}
.y6c{bottom:475.711500px;}
.y170{bottom:476.139750px;}
.y169{bottom:477.395850px;}
.y18c{bottom:478.445850px;}
.y15b{bottom:483.458131px;}
.y32{bottom:486.512846px;}
.y2a{bottom:490.139040px;}
.y35{bottom:499.363409px;}
.y7d{bottom:506.898900px;}
.y2d{bottom:508.590059px;}
.y124{bottom:510.988800px;}
.y11e{bottom:538.630074px;}
.y64{bottom:542.226450px;}
.y183{bottom:545.500200px;}
.y109{bottom:546.122250px;}
.y16f{bottom:547.194000px;}
.y179{bottom:547.848600px;}
.y168{bottom:549.388800px;}
.y18b{bottom:550.438800px;}
.y10f{bottom:550.445850px;}
.y164{bottom:551.722232px;}
.y160{bottom:552.020581px;}
.y6b{bottom:552.863100px;}
.y63{bottom:569.929950px;}
.y77{bottom:582.256500px;}
.y62{bottom:589.253850px;}
.y61{bottom:607.760700px;}
.y87{bottom:614.212650px;}
.y182{bottom:617.694000px;}
.y10e{bottom:622.438800px;}
.y178{bottom:626.357400px;}
.y6a{bottom:630.014700px;}
.y60{bottom:635.443650px;}
.y76{bottom:636.256500px;}
.y1e{bottom:643.812580px;}
.y117{bottom:649.949724px;}
.y11a{bottom:650.895774px;}
.y7c{bottom:658.291350px;}
.y123{bottom:660.395850px;}
.y5f{bottom:662.806200px;}
.y15d{bottom:665.747731px;}
.y5{bottom:679.162350px;}
.y86{bottom:690.012150px;}
.y108{bottom:697.514700px;}
.y177{bottom:697.907700px;}
.y167{bottom:698.795850px;}
.y16e{bottom:699.517800px;}
.y18a{bottom:699.845850px;}
.y5e{bottom:702.364200px;}
.y7b{bottom:729.345600px;}
.y5d{bottom:730.801350px;}
.y122{bottom:737.345850px;}
.y159{bottom:739.234832px;}
.y2b{bottom:749.920480px;}
.y5c{bottom:757.524900px;}
.y1f{bottom:765.866551px;}
.y85{bottom:766.025700px;}
.y181{bottom:769.800300px;}
.y189{bottom:771.838800px;}
.y10d{bottom:771.845850px;}
.y158{bottom:774.223531px;}
.y69{bottom:774.666300px;}
.y166{bottom:775.745850px;}
.y16d{bottom:778.026750px;}
.yb{bottom:778.624525px;}
.y5b{bottom:792.252600px;}
.y46{bottom:800.591550px;}
.y4{bottom:810.462150px;}
.y5a{bottom:810.464550px;}
.y121{bottom:814.295850px;}
.y59{bottom:837.040950px;}
.y84{bottom:843.182550px;}
.y11d{bottom:846.957024px;}
.y180{bottom:847.169400px;}
.y165{bottom:847.738800px;}
.y10c{bottom:848.795850px;}
.y176{bottom:849.300300px;}
.y68{bottom:851.817900px;}
.y16c{bottom:856.317900px;}
.y58{bottom:862.952100px;}
.y163{bottom:867.543332px;}
.y114{bottom:867.825924px;}
.y2c{bottom:868.955341px;}
.y57{bottom:877.676550px;}
.y7a{bottom:881.451900px;}
.y41{bottom:882.562120px;}
.y120{bottom:891.245850px;}
.y56{bottom:901.156050px;}
.y83{bottom:920.339250px;}
.y188{bottom:921.245850px;}
.y107{bottom:922.228650px;}
.y17f{bottom:925.460700px;}
.y10b{bottom:925.745850px;}
.y175{bottom:926.669400px;}
.y16b{bottom:926.728650px;}
.y55{bottom:927.023250px;}
.y67{bottom:928.969500px;}
.y31{bottom:939.202990px;}
.y40{bottom:942.747850px;}
.y75{bottom:947.827500px;}
.y54{bottom:951.150450px;}
.y116{bottom:956.532774px;}
.y79{bottom:958.821000px;}
.y11f{bottom:963.238800px;}
.y53{bottom:966.343500px;}
.y15c{bottom:979.782481px;}
.y3{bottom:980.671650px;}
.y52{bottom:989.196450px;}
.y187{bottom:993.238800px;}
.y23{bottom:993.570142px;}
.y17e{bottom:996.514800px;}
.y82{bottom:997.495950px;}
.y10a{bottom:997.738800px;}
.y174{bottom:1005.178350px;}
.y74{bottom:1012.077000px;}
.y51{bottom:1012.246500px;}
.y78{bottom:1031.014800px;}
.y50{bottom:1034.793750px;}
.y90{bottom:1062.243450px;}
.y4f{bottom:1062.972300px;}
.y81{bottom:1068.303450px;}
.y173{bottom:1076.728650px;}
.y4e{bottom:1076.760750px;}
.y4d{bottom:1097.429850px;}
.y8f{bottom:1111.809750px;}
.y4c{bottom:1115.914350px;}
.y93{bottom:1117.243500px;}
.y95{bottom:1122.258150px;}
.y4b{bottom:1134.818100px;}
.y47{bottom:1151.499750px;}
.y4a{bottom:1153.212000px;}
.y11c{bottom:1160.193174px;}
.y8e{bottom:1161.375900px;}
.y92{bottom:1168.673700px;}
.y49{bottom:1171.452750px;}
.y94{bottom:1173.688350px;}
.y162{bottom:1188.393182px;}
.y48{bottom:1190.353350px;}
.y91{bottom:1220.103900px;}
.y43{bottom:1223.043750px;}
.y66{bottom:1254.805350px;}
.y128{bottom:1296.406950px;}
.y96{bottom:1299.407850px;}
.y44{bottom:1317.543750px;}
.y65{bottom:1379.145000px;}
.y3d{bottom:1384.361263px;}
.y29{bottom:1389.682799px;}
.y9{bottom:1393.365300px;}
.y6f{bottom:1397.628000px;}
.y3e{bottom:1481.808575px;}
.y39{bottom:1673.594137px;}
.y3c{bottom:1692.202804px;}
.y28{bottom:1719.730869px;}
.y38{bottom:1733.783609px;}
.y3a{bottom:1910.468935px;}
.y3b{bottom:2032.522906px;}
.y27{bottom:2045.280880px;}
.y3f{bottom:2260.226497px;}
.h1{height:64.200000px;}
.h4f{height:85.818605px;}
.h5b{height:85.818607px;}
.h3b{height:85.818610px;}
.h45{height:85.818613px;}
.h44{height:85.818615px;}
.h57{height:85.818618px;}
.h4d{height:85.818619px;}
.h37{height:85.818624px;}
.h3d{height:85.818625px;}
.h3a{height:85.818627px;}
.h54{height:85.818628px;}
.h58{height:85.818630px;}
.h56{height:85.818631px;}
.h39{height:85.818633px;}
.h3e{height:85.818635px;}
.h60{height:85.818639px;}
.h4e{height:85.818640px;}
.h49{height:85.818642px;}
.h4a{height:85.818644px;}
.h3c{height:85.818645px;}
.h51{height:85.818647px;}
.h48{height:85.818649px;}
.h61{height:85.818654px;}
.h4b{height:85.818655px;}
.h40{height:85.818657px;}
.h4c{height:85.818659px;}
.h38{height:85.818661px;}
.h42{height:85.818662px;}
.h43{height:85.818664px;}
.h50{height:85.818666px;}
.h5c{height:85.818669px;}
.h41{height:85.818670px;}
.h36{height:85.818671px;}
.h55{height:85.818673px;}
.h59{height:85.818677px;}
.h5e{height:85.818678px;}
.h5a{height:85.818680px;}
.h47{height:85.818681px;}
.h52{height:85.818683px;}
.h5f{height:85.818685px;}
.h3f{height:85.818686px;}
.h53{height:85.818688px;}
.h46{height:85.818690px;}
.h5d{height:85.818692px;}
.h35{height:85.818697px;}
.h29{height:103.968000px;}
.h66{height:130.095826px;}
.h68{height:133.257973px;}
.h32{height:135.965994px;}
.h33{height:135.966015px;}
.hb{height:141.023419px;}
.h9{height:169.095371px;}
.h8{height:171.203208px;}
.h2{height:174.528000px;}
.h28{height:182.750146px;}
.hd{height:194.071900px;}
.he{height:194.071935px;}
.hc{height:194.071979px;}
.h1a{height:205.663953px;}
.h23{height:205.663960px;}
.h12{height:205.663975px;}
.h1b{height:205.663981px;}
.h16{height:205.663994px;}
.h13{height:205.664004px;}
.hf{height:205.664030px;}
.h11{height:205.664033px;}
.h17{height:205.664035px;}
.h1d{height:205.664053px;}
.h10{height:205.664055px;}
.h1f{height:205.664065px;}
.h20{height:205.664069px;}
.h15{height:205.664072px;}
.h22{height:205.664075px;}
.h1c{height:205.664084px;}
.h24{height:205.664086px;}
.h14{height:205.664097px;}
.h19{height:205.664108px;}
.h1e{height:205.664119px;}
.h21{height:205.664121px;}
.h18{height:205.664135px;}
.h2f{height:208.422720px;}
.h25{height:210.528000px;}
.h64{height:218.953125px;}
.h2e{height:230.376960px;}
.h63{height:231.046875px;}
.h5{height:232.704000px;}
.h30{height:249.696691px;}
.h2c{height:252.218880px;}
.h2d{height:255.774360px;}
.h2b{height:257.964000px;}
.h2a{height:257.964600px;}
.h31{height:260.196360px;}
.h4{height:266.640000px;}
.h62{height:284.187656px;}
.h34{height:312.705000px;}
.h26{height:387.729492px;}
.h6{height:412.080000px;}
.h3{height:562.368000px;}
.h7{height:1130.637450px;}
.ha{height:1185.528000px;}
.h27{height:1322.983500px;}
.h65{height:1327.199850px;}
.h67{height:1359.459150px;}
.h0{height:1620.000000px;}
.w5{width:351.343950px;}
.w6{width:355.258200px;}
.w3{width:724.058100px;}
.w8{width:1071.546900px;}
.w4{width:2533.422000px;}
.w7{width:2553.081000px;}
.w1{width:2616.384000px;}
.w2{width:2737.354500px;}
.w0{width:2880.000000px;}
.xd4{left:-719.833500px;}
.xd3{left:-718.234500px;}
.xd5{left:-716.625000px;}
.xd6{left:-708.951000px;}
.xd7{left:-698.830500px;}
.xd8{left:-685.222500px;}
.xd9{left:-674.694000px;}
.xda{left:-663.004500px;}
.xdb{left:-654.261000px;}
.xdc{left:-596.340000px;}
.xdd{left:-575.569500px;}
.xde{left:-559.248000px;}
.xdf{left:-552.735000px;}
.xe0{left:-537.973500px;}
.xe1{left:-521.677500px;}
.xe2{left:-512.040000px;}
.xe3{left:-497.763000px;}
.xe4{left:-491.574000px;}
.xe5{left:-483.834000px;}
.xe6{left:-463.186500px;}
.xe7{left:-449.415000px;}
.xe8{left:-436.293000px;}
.xe9{left:-422.173500px;}
.xea{left:-411.595500px;}
.xeb{left:-402.238500px;}
.xec{left:-394.237500px;}
.xed{left:-388.180500px;}
.xee{left:-383.467500px;}
.xef{left:-381.573000px;}
.xf0{left:-378.477000px;}
.xf1{left:-376.521000px;}
.x10c{left:-355.288500px;}
.x10b{left:-354.217500px;}
.x10a{left:-350.958000px;}
.x67{left:-347.119500px;}
.x66{left:-345.520500px;}
.x68{left:-343.911000px;}
.x10d{left:-340.924500px;}
.x109{left:-339.279000px;}
.x69{left:-336.237000px;}
.x10e{left:-333.540000px;}
.x6a{left:-326.116500px;}
.x10f{left:-324.691500px;}
.x108{left:-323.512500px;}
.x110{left:-314.616000px;}
.x6b{left:-312.508500px;}
.x111{left:-303.360000px;}
.x6c{left:-301.980000px;}
.x6d{left:-290.290500px;}
.x6e{left:-281.547000px;}
.x112{left:-277.768500px;}
.x113{left:-262.141500px;}
.x6f{left:-223.626000px;}
.x70{left:-202.855500px;}
.x114{left:-199.489500px;}
.x71{left:-186.534000px;}
.x72{left:-180.021000px;}
.x115{left:-170.068500px;}
.x73{left:-165.259500px;}
.x116{left:-163.480500px;}
.x74{left:-148.963500px;}
.x117{left:-147.331500px;}
.x75{left:-139.326000px;}
.x118{left:-133.072500px;}
.x76{left:-125.049000px;}
.x77{left:-118.860000px;}
.x119{left:-117.727500px;}
.x78{left:-111.120000px;}
.x11a{left:-95.722500px;}
.x79{left:-90.472500px;}
.x7a{left:-76.701000px;}
.x11b{left:-75.474000px;}
.x7b{left:-63.579000px;}
.x11c{left:-59.937000px;}
.x7c{left:-49.459500px;}
.x124{left:-44.850000px;}
.x11d{left:-40.498500px;}
.x7d{left:-38.881500px;}
.x123{left:-35.851500px;}
.x11e{left:-32.112000px;}
.x7e{left:-29.524500px;}
.x11f{left:-25.201500px;}
.x122{left:-22.528500px;}
.x7f{left:-21.523500px;}
.x120{left:-17.356500px;}
.x80{left:-15.466500px;}
.x121{left:-12.888000px;}
.x81{left:-10.753500px;}
.x82{left:-8.859000px;}
.x83{left:-5.763000px;}
.x84{left:-3.807000px;}
.x0{left:0.000000px;}
.x126{left:1.968000px;}
.x127{left:3.579000px;}
.xf2{left:7.093500px;}
.xf3{left:8.694000px;}
.xf4{left:9.753000px;}
.x128{left:11.251500px;}
.xf5{left:13.314000px;}
.x2{left:16.092015px;}
.xaa{left:17.425500px;}
.xa9{left:18.496500px;}
.xa8{left:21.756000px;}
.xab{left:25.761000px;}
.xa7{left:27.022500px;}
.xac{left:31.789500px;}
.xa6{left:33.435000px;}
.x129{left:34.981500px;}
.xa5{left:37.291500px;}
.xad{left:39.174000px;}
.x12a{left:45.510000px;}
.xae{left:48.022500px;}
.xa4{left:49.201500px;}
.xaf{left:58.098000px;}
.xf6{left:59.664000px;}
.xf7{left:65.545500px;}
.xb0{left:69.354000px;}
.x5{left:77.179680px;}
.xb1{left:81.681000px;}
.xb2{left:94.945500px;}
.x1e{left:96.231674px;}
.xb3{left:110.572500px;}
.x9{left:114.003527px;}
.xf8{left:123.204000px;}
.x1{left:131.198610px;}
.x7{left:139.502591px;}
.xf9{left:143.769000px;}
.x3{left:148.499640px;}
.x8{left:152.500750px;}
.xfa{left:159.994500px;}
.xfb{left:166.522500px;}
.xb4{left:173.224500px;}
.xfc{left:181.255500px;}
.x4a{left:189.567000px;}
.x6{left:191.026082px;}
.xb5{left:192.883500px;}
.xfd{left:197.637000px;}
.xb6{left:202.645500px;}
.xfe{left:207.354000px;}
.xb7{left:209.233500px;}
.x5b{left:220.500000px;}
.xff{left:221.760000px;}
.xb8{left:225.382500px;}
.x100{left:228.075000px;}
.x101{left:235.921500px;}
.xb9{left:239.641500px;}
.xba{left:254.986500px;}
.x102{left:257.020500px;}
.xbb{left:262.552500px;}
.x12b{left:270.789000px;}
.xc9{left:271.974600px;}
.xbc{left:276.991500px;}
.x4b{left:282.754500px;}
.x103{left:284.830500px;}
.xbd{left:297.240000px;}
.x104{left:302.907000px;}
.x12c{left:308.607000px;}
.xbe{left:312.777000px;}
.x12d{left:317.964000px;}
.xbf{left:323.502000px;}
.x12e{left:325.965000px;}
.xc8{left:327.864000px;}
.x105{left:330.891000px;}
.xc0{left:332.215500px;}
.xc7{left:336.862500px;}
.x106{left:337.932000px;}
.xc1{left:340.602000px;}
.x12f{left:341.725500px;}
.xc6{left:343.698000px;}
.xc2{left:347.512500px;}
.x107{left:348.840000px;}
.xc3{left:351.081000px;}
.xc4{left:355.357500px;}
.xc5{left:359.826000px;}
.x151{left:364.915500px;}
.x150{left:365.985000px;}
.x14f{left:369.244500px;}
.x152{left:373.249500px;}
.x14e{left:374.511000px;}
.x85{left:379.807500px;}
.x86{left:381.408000px;}
.x87{left:382.467000px;}
.x14d{left:384.780000px;}
.x88{left:386.028000px;}
.x89{left:391.117500px;}
.x153{left:395.512500px;}
.x8a{left:397.611000px;}
.x154{left:405.586500px;}
.x8b{left:411.042000px;}
.x155{left:416.844000px;}
.x8c{left:421.054500px;}
.x16b{left:422.125500px;}
.x156{left:429.171000px;}
.x8d{left:432.378000px;}
.x8e{left:438.259500px;}
.x157{left:442.434000px;}
.x5d{left:454.132050px;}
.x158{left:458.062500px;}
.x5c{left:462.772050px;}
.x62{left:475.942500px;}
.x63{left:489.663300px;}
.x8f{left:495.918000px;}
.x90{left:516.483000px;}
.x159{left:520.713000px;}
.x91{left:532.708500px;}
.x92{left:539.236500px;}
.x15a{left:540.372000px;}
.x20{left:546.518250px;}
.x15b{left:550.135500px;}
.x15{left:551.832135px;}
.x93{left:553.969500px;}
.x15c{left:556.722000px;}
.x94{left:570.351000px;}
.x15d{left:572.872500px;}
.x95{left:580.068000px;}
.x15e{left:587.130000px;}
.x96{left:594.474000px;}
.x97{left:600.789000px;}
.x15f{left:602.476500px;}
.x98{left:608.635500px;}
.x160{left:610.041000px;}
.x161{left:624.480000px;}
.x16{left:627.830227px;}
.x99{left:629.734500px;}
.x14{left:634.826789px;}
.x9a{left:643.899000px;}
.x4d{left:658.132500px;}
.x162{left:660.267000px;}
.x163{left:670.990500px;}
.x9b{left:675.621000px;}
.x164{left:679.704000px;}
.x16a{left:684.351000px;}
.x9c{left:686.452500px;}
.x165{left:688.090500px;}
.x169{left:691.188000px;}
.x166{left:695.001000px;}
.x9d{left:696.045000px;}
.x167{left:698.569500px;}
.x168{left:702.598500px;}
.x9e{left:703.605000px;}
.x4c{left:707.320500px;}
.x21{left:708.424950px;}
.x9f{left:710.646000px;}
.xa0{left:716.217000px;}
.xa1{left:719.869500px;}
.xa2{left:721.554000px;}
.xa3{left:723.402000px;}
.x130{left:727.297500px;}
.x131{left:728.898000px;}
.x132{left:729.955500px;}
.x133{left:733.516500px;}
.x4{left:737.598900px;}
.x1d{left:738.778181px;}
.x54{left:744.024000px;}
.x134{left:745.101000px;}
.x53{left:754.429500px;}
.x135{left:758.530500px;}
.x136{left:768.544500px;}
.x137{left:779.866500px;}
.x138{left:785.749500px;}
.x18{left:801.523821px;}
.x139{left:843.408000px;}
.x13a{left:863.973000px;}
.x13b{left:880.197000px;}
.x17{left:886.657301px;}
.x13c{left:901.459500px;}
.x13d{left:917.839500px;}
.xcb{left:919.996500px;}
.x16c{left:921.570600px;}
.x13e{left:927.556500px;}
.x25{left:932.049150px;}
.x24{left:936.905850px;}
.x13f{left:941.964000px;}
.x140{left:948.279000px;}
.x141{left:956.125500px;}
.x26{left:960.341550px;}
.x142{left:977.223000px;}
.x5a{left:980.131500px;}
.xca{left:982.123200px;}
.x27{left:985.565550px;}
.x143{left:991.387500px;}
.x59{left:998.113500px;}
.x144{left:1005.033000px;}
.x28{left:1009.202100px;}
.x5f{left:1019.844000px;}
.x145{left:1023.111000px;}
.x29{left:1031.939700px;}
.x146{left:1033.941000px;}
.x147{left:1043.533500px;}
.x148{left:1051.095000px;}
.x2a{left:1052.692350px;}
.xd0{left:1055.896050px;}
.x149{left:1058.134500px;}
.x14a{left:1063.707000px;}
.x14b{left:1067.358000px;}
.xa{left:1069.323561px;}
.x14c{left:1070.890500px;}
.x2b{left:1074.417000px;}
.x2c{left:1088.399700px;}
.x13{left:1089.902911px;}
.x2d{left:1114.794000px;}
.x2e{left:1134.457350px;}
.x2f{left:1153.583400px;}
.x30{left:1171.277550px;}
.x31{left:1182.604800px;}
.x32{left:1199.729250px;}
.x33{left:1217.015250px;}
.x34{left:1231.840200px;}
.x23{left:1241.063100px;}
.x4f{left:1245.813000px;}
.x35{left:1255.891200px;}
.x4e{left:1257.345000px;}
.x36{left:1270.557600px;}
.x5e{left:1274.004000px;}
.x37{left:1280.242050px;}
.x38{left:1297.529100px;}
.x39{left:1310.137950px;}
.x3a{left:1322.839500px;}
.xd1{left:1327.332900px;}
.x1f{left:1332.090000px;}
.x3b{left:1339.406250px;}
.x3c{left:1350.182400px;}
.x3d{left:1360.521000px;}
.x3e{left:1367.175300px;}
.x3f{left:1373.914200px;}
.x40{left:1383.094200px;}
.x22{left:1415.562300px;}
.x55{left:1461.279000px;}
.x19{left:1506.332539px;}
.x56{left:1510.500000px;}
.x1c{left:1525.302891px;}
.x171{left:1603.020000px;}
.xe{left:1673.988137px;}
.xb{left:1698.003531px;}
.xc{left:1721.147232px;}
.xd{left:1744.480778px;}
.x51{left:1764.450000px;}
.xf{left:1779.173946px;}
.x172{left:1780.695000px;}
.x50{left:1788.165000px;}
.xcc{left:1834.643400px;}
.x16d{left:1837.318500px;}
.xcd{left:1860.384900px;}
.x16e{left:1863.685500px;}
.xce{left:1986.515400px;}
.x16f{left:1992.882000px;}
.x42{left:2037.013500px;}
.xcf{left:2052.621900px;}
.x170{left:2060.595000px;}
.x58{left:2136.405000px;}
.x65{left:2139.666000px;}
.x43{left:2147.635500px;}
.x125{left:2150.197500px;}
.x61{left:2155.795500px;}
.x57{left:2164.125000px;}
.x44{left:2173.267500px;}
.x60{left:2177.143500px;}
.x46{left:2189.035500px;}
.x47{left:2205.019500px;}
.x45{left:2231.875500px;}
.x64{left:2279.377500px;}
.x12{left:2293.658942px;}
.x10{left:2298.478719px;}
.x11{left:2326.119589px;}
.x1a{left:2328.255474px;}
.x52{left:2340.885000px;}
.x1b{left:2368.416269px;}
.x48{left:2398.339500px;}
.x49{left:2491.795500px;}
.x41{left:2493.336000px;}
.xd2{left:2512.380000px;}
.x173{left:2518.966500px;}
@media print{
.v1{vertical-align:-96.000000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:17.625067pt;}
.v2{vertical-align:22.453867pt;}
.v3{vertical-align:23.967467pt;}
.v4{vertical-align:26.506133pt;}
.ls23{letter-spacing:-46.421333pt;}
.lsa{letter-spacing:-17.226667pt;}
.ls1c{letter-spacing:-16.138667pt;}
.ls1{letter-spacing:-12.373333pt;}
.ls20{letter-spacing:-9.293333pt;}
.ls1f{letter-spacing:-9.157333pt;}
.ls7{letter-spacing:-9.112000pt;}
.ls2{letter-spacing:-9.066667pt;}
.ls15{letter-spacing:-8.976000pt;}
.ls21{letter-spacing:-8.930667pt;}
.ls8{letter-spacing:-8.885333pt;}
.ls17{letter-spacing:-0.102400pt;}
.ls16{letter-spacing:-0.076800pt;}
.ls5{letter-spacing:-0.065827pt;}
.ls6{letter-spacing:-0.039496pt;}
.ls1d{letter-spacing:-0.037321pt;}
.ls14{letter-spacing:-0.036436pt;}
.ls1e{letter-spacing:-0.024881pt;}
.ls13{letter-spacing:-0.024290pt;}
.ls0{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.012145pt;}
.ls18{letter-spacing:0.012440pt;}
.ls10{letter-spacing:0.024290pt;}
.ls1a{letter-spacing:0.024881pt;}
.ls22{letter-spacing:0.025600pt;}
.lsf{letter-spacing:0.036436pt;}
.ls19{letter-spacing:0.037321pt;}
.ls4{letter-spacing:0.039496pt;}
.ls11{letter-spacing:0.048581pt;}
.ls1b{letter-spacing:0.049762pt;}
.lsd{letter-spacing:0.051200pt;}
.ls3{letter-spacing:0.052662pt;}
.ls12{letter-spacing:0.076800pt;}
.lsb{letter-spacing:144.334080pt;}
.ls9{letter-spacing:145.792000pt;}
.lsc{letter-spacing:149.885440pt;}
.ws0{word-spacing:-159.616000pt;}
.ws2{word-spacing:-116.960000pt;}
.ws9{word-spacing:-112.880000pt;}
.wsc{word-spacing:-108.800000pt;}
.wsa{word-spacing:-103.994667pt;}
.ws14{word-spacing:-96.741333pt;}
.wsd{word-spacing:-71.168000pt;}
.wse{word-spacing:-70.456320pt;}
.ws19{word-spacing:-66.458667pt;}
.wsf{word-spacing:-63.795200pt;}
.wsb{word-spacing:-61.777827pt;}
.ws4{word-spacing:-57.874439pt;}
.ws16{word-spacing:-25.527799pt;}
.ws11{word-spacing:-24.922037pt;}
.ws3{word-spacing:-0.453333pt;}
.ws18{word-spacing:-0.174166pt;}
.ws5{word-spacing:-0.171150pt;}
.ws13{word-spacing:-0.170033pt;}
.ws17{word-spacing:-0.149285pt;}
.ws12{word-spacing:-0.145743pt;}
.ws8{word-spacing:-0.092158pt;}
.ws15{word-spacing:-0.087083pt;}
.ws10{word-spacing:-0.085017pt;}
.ws6{word-spacing:-0.065827pt;}
.ws1{word-spacing:0.000000pt;}
.ws7{word-spacing:1782.999530pt;}
._3{margin-left:-28.416000pt;}
._e{margin-left:-23.552000pt;}
._7{margin-left:-19.154962pt;}
._10{margin-left:-16.031720pt;}
._9{margin-left:-14.592000pt;}
._13{margin-left:-13.644800pt;}
._1{margin-left:-12.373333pt;}
._0{margin-left:-11.136000pt;}
._19{margin-left:-9.958400pt;}
._5{margin-left:-9.066667pt;}
._6{margin-left:-8.160000pt;}
._11{margin-left:-6.609447pt;}
._2{margin-left:-5.280000pt;}
._4{margin-left:-3.936000pt;}
._b{margin-left:-2.304000pt;}
._8{margin-left:-1.053232pt;}
._a{width:0.906667pt;}
._f{width:2.457600pt;}
._d{width:4.608000pt;}
._18{width:5.888000pt;}
._12{width:7.253333pt;}
._c{width:8.160000pt;}
._15{width:33.093333pt;}
._17{width:34.000000pt;}
._16{width:36.720000pt;}
._14{width:37.626667pt;}
.fs46{font-size:104.780686pt;}
.fs4b{font-size:104.780687pt;}
.fs55{font-size:104.780688pt;}
.fs2d{font-size:104.780692pt;}
.fs38{font-size:104.780696pt;}
.fs37{font-size:104.780698pt;}
.fs45{font-size:104.780699pt;}
.fs50{font-size:104.780701pt;}
.fs44{font-size:104.780703pt;}
.fs42{font-size:104.780704pt;}
.fs53{font-size:104.780708pt;}
.fs29{font-size:104.780710pt;}
.fs2f{font-size:104.780711pt;}
.fs2c{font-size:104.780713pt;}
.fs4d{font-size:104.780714pt;}
.fs51{font-size:104.780716pt;}
.fs4f{font-size:104.780718pt;}
.fs3a{font-size:104.780719pt;}
.fs2b{font-size:104.780720pt;}
.fs30{font-size:104.780722pt;}
.fs5d{font-size:104.780727pt;}
.fs43{font-size:104.780729pt;}
.fs3e{font-size:104.780731pt;}
.fs3f{font-size:104.780734pt;}
.fs2e{font-size:104.780735pt;}
.fs3c{font-size:104.780736pt;}
.fs48{font-size:104.780738pt;}
.fs59{font-size:104.780739pt;}
.fs3d{font-size:104.780740pt;}
.fs5e{font-size:104.780745pt;}
.fs40{font-size:104.780747pt;}
.fs34{font-size:104.780748pt;}
.fs32{font-size:104.780749pt;}
.fs5a{font-size:104.780751pt;}
.fs41{font-size:104.780752pt;}
.fs2a{font-size:104.780754pt;}
.fs35{font-size:104.780756pt;}
.fs4c{font-size:104.780757pt;}
.fs36{font-size:104.780758pt;}
.fs47{font-size:104.780761pt;}
.fs56{font-size:104.780764pt;}
.fs33{font-size:104.780766pt;}
.fs28{font-size:104.780767pt;}
.fs4e{font-size:104.780769pt;}
.fs52{font-size:104.780773pt;}
.fs58{font-size:104.780775pt;}
.fs54{font-size:104.780777pt;}
.fs3b{font-size:104.780779pt;}
.fs5c{font-size:104.780780pt;}
.fs49{font-size:104.780781pt;}
.fs5b{font-size:104.780783pt;}
.fs31{font-size:104.780784pt;}
.fs4a{font-size:104.780787pt;}
.fs39{font-size:104.780790pt;}
.fs57{font-size:104.780792pt;}
.fs27{font-size:104.780799pt;}
.fs5f{font-size:121.452422pt;}
.fs60{font-size:124.404480pt;}
.fs21{font-size:128.000000pt;}
.fs6{font-size:131.654000pt;}
.fs25{font-size:165.333326pt;}
.fs26{font-size:165.333352pt;}
.fs15{font-size:191.999898pt;}
.fs1e{font-size:191.999904pt;}
.fsd{font-size:191.999918pt;}
.fs16{font-size:191.999924pt;}
.fs11{font-size:191.999936pt;}
.fse{font-size:191.999946pt;}
.fsa{font-size:191.999970pt;}
.fsc{font-size:191.999973pt;}
.fs12{font-size:191.999974pt;}
.fs18{font-size:191.999991pt;}
.fsb{font-size:191.999993pt;}
.fs0{font-size:192.000000pt;}
.fs1a{font-size:192.000002pt;}
.fs1b{font-size:192.000006pt;}
.fs10{font-size:192.000009pt;}
.fs1d{font-size:192.000012pt;}
.fs17{font-size:192.000020pt;}
.fs1f{font-size:192.000022pt;}
.fsf{font-size:192.000032pt;}
.fs14{font-size:192.000043pt;}
.fs19{font-size:192.000053pt;}
.fs1c{font-size:192.000054pt;}
.fs13{font-size:192.000068pt;}
.fs5{font-size:208.181436pt;}
.fs20{font-size:222.222400pt;}
.fs8{font-size:244.665590pt;}
.fs9{font-size:244.665634pt;}
.fs7{font-size:244.665690pt;}
.fs24{font-size:253.440000pt;}
.fs3{font-size:256.000000pt;}
.fs2{font-size:293.333333pt;}
.fs23{font-size:311.731200pt;}
.fs22{font-size:314.880000pt;}
.fs4{font-size:453.333333pt;}
.fs1{font-size:618.666667pt;}
.y14{bottom:-1065.283927pt;}
.y17{bottom:-1051.121800pt;}
.y13{bottom:-1011.782174pt;}
.y18{bottom:-866.395460pt;}
.y1b{bottom:-789.042841pt;}
.y1a{bottom:-735.539781pt;}
.y12{bottom:-727.338461pt;}
.y16{bottom:-693.460897pt;}
.ye{bottom:-690.237613pt;}
.y19{bottom:-682.038027pt;}
.y11{bottom:-673.836707pt;}
.yf{bottom:-459.320778pt;}
.y10{bottom:-353.512013pt;}
.y25{bottom:-341.416831pt;}
.y15{bottom:-291.069658pt;}
.y24{bottom:-287.918404pt;}
.y0{bottom:0.000000pt;}
.yc8{bottom:0.363733pt;}
.y148{bottom:0.472400pt;}
.yee{bottom:0.472533pt;}
.yc7{bottom:0.794133pt;}
.yed{bottom:0.858400pt;}
.y149{bottom:0.993733pt;}
.yef{bottom:0.993867pt;}
.y139{bottom:1.294800pt;}
.yc9{bottom:1.294933pt;}
.y14a{bottom:1.434000pt;}
.yf0{bottom:1.434133pt;}
.yc6{bottom:1.443600pt;}
.ya5{bottom:2.026533pt;}
.ya6{bottom:2.197867pt;}
.ya4{bottom:2.401600pt;}
.y13a{bottom:2.423733pt;}
.yca{bottom:2.423867pt;}
.y113{bottom:2.891845pt;}
.y138{bottom:3.608533pt;}
.yc5{bottom:3.608667pt;}
.ya7{bottom:3.805733pt;}
.yf1{bottom:3.861867pt;}
.ya3{bottom:3.885867pt;}
.y157{bottom:4.279439pt;}
.ycb{bottom:5.218133pt;}
.y12e{bottom:5.337867pt;}
.ya8{bottom:5.338000pt;}
.ycc{bottom:6.744667pt;}
.yf2{bottom:7.188400pt;}
.y12d{bottom:7.927733pt;}
.ya2{bottom:7.927867pt;}
.y137{bottom:8.528933pt;}
.yc4{bottom:8.529067pt;}
.y12f{bottom:8.739600pt;}
.ya9{bottom:8.739733pt;}
.ycd{bottom:8.892933pt;}
.y2{bottom:10.208093pt;}
.yaa{bottom:10.519467pt;}
.y14b{bottom:12.285600pt;}
.yf3{bottom:12.285733pt;}
.yab{bottom:12.998800pt;}
.yf4{bottom:15.159200pt;}
.yce{bottom:16.870400pt;}
.yec{bottom:17.019600pt;}
.yac{bottom:21.846933pt;}
.y14c{bottom:22.052667pt;}
.yf5{bottom:22.052800pt;}
.ycf{bottom:24.178800pt;}
.y147{bottom:25.004267pt;}
.yeb{bottom:25.004400pt;}
.y130{bottom:29.739467pt;}
.yad{bottom:29.739600pt;}
.yd0{bottom:32.319600pt;}
.y26{bottom:32.618827pt;}
.yea{bottom:33.509467pt;}
.yf6{bottom:34.472000pt;}
.y12c{bottom:34.614667pt;}
.ya1{bottom:34.614800pt;}
.y136{bottom:38.496400pt;}
.yc3{bottom:38.496533pt;}
.yae{bottom:38.520133pt;}
.y12b{bottom:41.203600pt;}
.ya0{bottom:41.203733pt;}
.ye9{bottom:43.160000pt;}
.yc2{bottom:43.557600pt;}
.yd1{bottom:47.044133pt;}
.y14d{bottom:47.442667pt;}
.yf7{bottom:47.442800pt;}
.yaf{bottom:50.697733pt;}
.y12a{bottom:51.423600pt;}
.y9f{bottom:51.423733pt;}
.y146{bottom:53.770133pt;}
.ye8{bottom:53.770267pt;}
.yc1{bottom:54.093867pt;}
.yd2{bottom:58.000800pt;}
.yf8{bottom:58.422933pt;}
.y30{bottom:60.632699pt;}
.yb0{bottom:61.805467pt;}
.y9e{bottom:62.630800pt;}
.ye7{bottom:65.269467pt;}
.y135{bottom:65.653200pt;}
.yc0{bottom:65.653333pt;}
.yf9{bottom:69.048267pt;}
.y13b{bottom:69.819867pt;}
.yd3{bottom:69.820000pt;}
.ya{bottom:70.535453pt;}
.y161{bottom:70.603428pt;}
.yb1{bottom:73.765600pt;}
.y33{bottom:74.794960pt;}
.y8d{bottom:75.033120pt;}
.ye6{bottom:77.555733pt;}
.y9d{bottom:80.806000pt;}
.yd4{bottom:81.119467pt;}
.yfa{bottom:81.580400pt;}
.y8{bottom:85.589200pt;}
.y134{bottom:85.639200pt;}
.ybf{bottom:85.639333pt;}
.yb2{bottom:86.483067pt;}
.y119{bottom:86.769315pt;}
.y15f{bottom:88.878361pt;}
.ye5{bottom:90.556133pt;}
.yd5{bottom:94.259867pt;}
.yfb{bottom:94.762267pt;}
.yb3{bottom:98.473600pt;}
.ybe{bottom:99.019200pt;}
.y9c{bottom:100.740000pt;}
.y14e{bottom:102.899200pt;}
.yfc{bottom:102.899333pt;}
.ye4{bottom:104.109733pt;}
.y21{bottom:104.626585pt;}
.y13c{bottom:107.989467pt;}
.yd6{bottom:107.989600pt;}
.yd{bottom:109.356840pt;}
.y131{bottom:110.871733pt;}
.yb4{bottom:110.871867pt;}
.ybd{bottom:112.873333pt;}
.y145{bottom:113.912267pt;}
.ye3{bottom:113.912400pt;}
.y2f{bottom:114.134453pt;}
.y14f{bottom:115.469333pt;}
.yfd{bottom:115.469467pt;}
.yb5{bottom:116.472133pt;}
.yd7{bottom:120.684800pt;}
.y15a{bottom:120.848588pt;}
.y9b{bottom:123.030667pt;}
.y133{bottom:127.108533pt;}
.ybc{bottom:127.108667pt;}
.yd8{bottom:127.811733pt;}
.ye2{bottom:128.158667pt;}
.yb6{bottom:129.239200pt;}
.y1{bottom:133.003373pt;}
.ybb{bottom:134.330667pt;}
.yfe{bottom:136.945600pt;}
.y9a{bottom:137.472400pt;}
.yd9{bottom:142.272933pt;}
.yb7{bottom:143.751200pt;}
.y144{bottom:145.512533pt;}
.ye1{bottom:145.512667pt;}
.y129{bottom:147.661333pt;}
.y99{bottom:147.661467pt;}
.y17d{bottom:150.246800pt;}
.yba{bottom:153.216800pt;}
.yff{bottom:155.867467pt;}
.y8b{bottom:156.450800pt;}
.y132{bottom:158.310000pt;}
.yb8{bottom:158.310133pt;}
.y98{bottom:162.234533pt;}
.yb9{bottom:164.155600pt;}
.y143{bottom:167.356400pt;}
.ye0{bottom:167.356533pt;}
.y11b{bottom:168.460421pt;}
.y150{bottom:170.431333pt;}
.y100{bottom:170.431467pt;}
.y142{bottom:174.580000pt;}
.ydf{bottom:174.580133pt;}
.y97{bottom:176.767733pt;}
.y80{bottom:188.418267pt;}
.yde{bottom:190.362800pt;}
.y141{bottom:190.363600pt;}
.y22{bottom:191.246417pt;}
.y151{bottom:191.900933pt;}
.y101{bottom:191.901467pt;}
.y42{bottom:195.820000pt;}
.y8c{bottom:203.805733pt;}
.y140{bottom:205.631600pt;}
.ydd{bottom:205.632133pt;}
.y152{bottom:205.804933pt;}
.y102{bottom:205.805467pt;}
.y7{bottom:215.374800pt;}
.y8a{bottom:217.391867pt;}
.y186{bottom:218.958000pt;}
.y13f{bottom:219.080933pt;}
.ydc{bottom:219.081467pt;}
.y153{bottom:219.148933pt;}
.y103{bottom:219.149467pt;}
.y17c{bottom:220.032400pt;}
.y112{bottom:224.085200pt;}
.ydb{bottom:225.530800pt;}
.y13e{bottom:225.531600pt;}
.y104{bottom:225.637467pt;}
.y154{bottom:225.638267pt;}
.y18e{bottom:228.485200pt;}
.y105{bottom:230.794800pt;}
.y155{bottom:230.795600pt;}
.y115{bottom:232.647221pt;}
.y13d{bottom:242.914267pt;}
.yda{bottom:242.914800pt;}
.y156{bottom:242.942267pt;}
.y106{bottom:242.942800pt;}
.y127{bottom:253.418533pt;}
.y7f{bottom:257.190800pt;}
.y118{bottom:258.517355pt;}
.y34{bottom:259.521300pt;}
.y15e{bottom:264.800961pt;}
.y45{bottom:277.384933pt;}
.y185{bottom:281.545200pt;}
.y17b{bottom:283.632667pt;}
.y172{bottom:283.857467pt;}
.y6e{bottom:285.696267pt;}
.y18d{bottom:292.478933pt;}
.y111{bottom:292.485200pt;}
.y7e{bottom:321.363067pt;}
.y126{bottom:321.818533pt;}
.y37{bottom:336.873773pt;}
.y6{bottom:345.160533pt;}
.y89{bottom:351.812000pt;}
.y171{bottom:353.643200pt;}
.y6d{bottom:354.275467pt;}
.y16a{bottom:355.951867pt;}
.y110{bottom:356.478933pt;}
.y73{bottom:359.208000pt;}
.y1d{bottom:361.721939pt;}
.y71{bottom:361.841333pt;}
.y20{bottom:378.263510pt;}
.y125{bottom:390.218533pt;}
.y36{bottom:390.376833pt;}
.y2e{bottom:398.578299pt;}
.yc{bottom:402.732901pt;}
.y88{bottom:413.164000pt;}
.y1c{bottom:415.223693pt;}
.y184{bottom:416.116400pt;}
.y72{bottom:416.318667pt;}
.y17a{bottom:418.203867pt;}
.y70{bottom:418.952000pt;}
.y6c{bottom:422.854667pt;}
.y170{bottom:423.235333pt;}
.y169{bottom:424.351867pt;}
.y18c{bottom:425.285200pt;}
.y15b{bottom:429.740561pt;}
.y32{bottom:432.455863pt;}
.y2a{bottom:435.679147pt;}
.y35{bottom:443.878586pt;}
.y7d{bottom:450.576800pt;}
.y2d{bottom:452.080053pt;}
.y124{bottom:454.212267pt;}
.y11e{bottom:478.782288pt;}
.y64{bottom:481.979067pt;}
.y183{bottom:484.889067pt;}
.y109{bottom:485.442000pt;}
.y16f{bottom:486.394667pt;}
.y179{bottom:486.976533pt;}
.y168{bottom:488.345600pt;}
.y18b{bottom:489.278933pt;}
.y10f{bottom:489.285200pt;}
.y164{bottom:490.419761pt;}
.y160{bottom:490.684961pt;}
.y6b{bottom:491.433867pt;}
.y63{bottom:506.604400pt;}
.y77{bottom:517.561333pt;}
.y62{bottom:523.781200pt;}
.y61{bottom:540.231733pt;}
.y87{bottom:545.966800pt;}
.y182{bottom:549.061333pt;}
.y10e{bottom:553.278933pt;}
.y178{bottom:556.762133pt;}
.y6a{bottom:560.013067pt;}
.y60{bottom:564.838800pt;}
.y76{bottom:565.561333pt;}
.y1e{bottom:572.277849pt;}
.y117{bottom:577.733088pt;}
.y11a{bottom:578.574021pt;}
.y7c{bottom:585.147867pt;}
.y123{bottom:587.018533pt;}
.y5f{bottom:589.161067pt;}
.y15d{bottom:591.775761pt;}
.y5{bottom:603.699867pt;}
.y86{bottom:613.344133pt;}
.y108{bottom:620.013067pt;}
.y177{bottom:620.362400pt;}
.y167{bottom:621.151867pt;}
.y16e{bottom:621.793600pt;}
.y18a{bottom:622.085200pt;}
.y5e{bottom:624.323733pt;}
.y7b{bottom:648.307200pt;}
.y5d{bottom:649.601200pt;}
.y122{bottom:655.418533pt;}
.y159{bottom:657.097628pt;}
.y2b{bottom:666.595982pt;}
.y5c{bottom:673.355467pt;}
.y1f{bottom:680.770268pt;}
.y85{bottom:680.911733pt;}
.y181{bottom:684.266933pt;}
.y189{bottom:686.078933pt;}
.y10d{bottom:686.085200pt;}
.y158{bottom:688.198695pt;}
.y69{bottom:688.592267pt;}
.y166{bottom:689.551867pt;}
.y16d{bottom:691.579333pt;}
.yb{bottom:692.110689pt;}
.y5b{bottom:704.224533pt;}
.y46{bottom:711.636933pt;}
.y4{bottom:720.410800pt;}
.y5a{bottom:720.412933pt;}
.y121{bottom:723.818533pt;}
.y59{bottom:744.036400pt;}
.y84{bottom:749.495600pt;}
.y11d{bottom:752.850688pt;}
.y180{bottom:753.039467pt;}
.y165{bottom:753.545600pt;}
.y10c{bottom:754.485200pt;}
.y176{bottom:754.933600pt;}
.y68{bottom:757.171467pt;}
.y16c{bottom:761.171467pt;}
.y58{bottom:767.068533pt;}
.y163{bottom:771.149628pt;}
.y114{bottom:771.400821pt;}
.y2c{bottom:772.404747pt;}
.y57{bottom:780.156933pt;}
.y7a{bottom:783.512800pt;}
.y41{bottom:784.499663pt;}
.y120{bottom:792.218533pt;}
.y56{bottom:801.027600pt;}
.y83{bottom:818.079333pt;}
.y188{bottom:818.885200pt;}
.y107{bottom:819.758800pt;}
.y17f{bottom:822.631733pt;}
.y10b{bottom:822.885200pt;}
.y175{bottom:823.706133pt;}
.y16b{bottom:823.758800pt;}
.y55{bottom:824.020667pt;}
.y67{bottom:825.750667pt;}
.y31{bottom:834.847102pt;}
.y40{bottom:837.998089pt;}
.y75{bottom:842.513333pt;}
.y54{bottom:845.467067pt;}
.y116{bottom:850.251355pt;}
.y79{bottom:852.285333pt;}
.y11f{bottom:856.212267pt;}
.y53{bottom:858.972000pt;}
.y15c{bottom:870.917761pt;}
.y3{bottom:871.708133pt;}
.y52{bottom:879.285733pt;}
.y187{bottom:882.878933pt;}
.y23{bottom:883.173460pt;}
.y17e{bottom:885.790933pt;}
.y82{bottom:886.663067pt;}
.y10a{bottom:886.878933pt;}
.y174{bottom:893.491867pt;}
.y74{bottom:899.624000pt;}
.y51{bottom:899.774667pt;}
.y78{bottom:916.457600pt;}
.y50{bottom:919.816667pt;}
.y90{bottom:944.216400pt;}
.y4f{bottom:944.864267pt;}
.y81{bottom:949.603067pt;}
.y173{bottom:957.092133pt;}
.y4e{bottom:957.120667pt;}
.y4d{bottom:975.493200pt;}
.y8f{bottom:988.275333pt;}
.y4c{bottom:991.923867pt;}
.y93{bottom:993.105333pt;}
.y95{bottom:997.562800pt;}
.y4b{bottom:1008.727200pt;}
.y47{bottom:1023.555333pt;}
.y4a{bottom:1025.077333pt;}
.y11c{bottom:1031.282821pt;}
.y8e{bottom:1032.334133pt;}
.y92{bottom:1038.821067pt;}
.y49{bottom:1041.291333pt;}
.y94{bottom:1043.278533pt;}
.y162{bottom:1056.349495pt;}
.y48{bottom:1058.091867pt;}
.y91{bottom:1084.536800pt;}
.y43{bottom:1087.150000pt;}
.y66{bottom:1115.382533pt;}
.y128{bottom:1152.361733pt;}
.y96{bottom:1155.029200pt;}
.y44{bottom:1171.150000pt;}
.y65{bottom:1225.906667pt;}
.y3d{bottom:1230.543345pt;}
.y29{bottom:1235.273600pt;}
.y9{bottom:1238.546933pt;}
.y6f{bottom:1242.336000pt;}
.y3e{bottom:1317.163177pt;}
.y39{bottom:1487.639233pt;}
.y3c{bottom:1504.180270pt;}
.y28{bottom:1528.649661pt;}
.y38{bottom:1541.140986pt;}
.y3a{bottom:1698.194609pt;}
.y3b{bottom:1806.687028pt;}
.y27{bottom:1818.027449pt;}
.y3f{bottom:2009.090220pt;}
.h1{height:57.066667pt;}
.h4f{height:76.283204pt;}
.h5b{height:76.283206pt;}
.h3b{height:76.283209pt;}
.h45{height:76.283211pt;}
.h44{height:76.283213pt;}
.h57{height:76.283216pt;}
.h4d{height:76.283217pt;}
.h37{height:76.283222pt;}
.h3d{height:76.283223pt;}
.h3a{height:76.283224pt;}
.h54{height:76.283225pt;}
.h58{height:76.283226pt;}
.h56{height:76.283227pt;}
.h39{height:76.283230pt;}
.h3e{height:76.283231pt;}
.h60{height:76.283235pt;}
.h4e{height:76.283236pt;}
.h49{height:76.283237pt;}
.h4a{height:76.283239pt;}
.h3c{height:76.283240pt;}
.h51{height:76.283242pt;}
.h48{height:76.283244pt;}
.h61{height:76.283248pt;}
.h4b{height:76.283249pt;}
.h40{height:76.283250pt;}
.h4c{height:76.283253pt;}
.h38{height:76.283254pt;}
.h42{height:76.283256pt;}
.h43{height:76.283257pt;}
.h50{height:76.283259pt;}
.h5c{height:76.283261pt;}
.h41{height:76.283262pt;}
.h36{height:76.283263pt;}
.h55{height:76.283265pt;}
.h59{height:76.283268pt;}
.h5e{height:76.283270pt;}
.h5a{height:76.283271pt;}
.h47{height:76.283272pt;}
.h52{height:76.283274pt;}
.h5f{height:76.283275pt;}
.h3f{height:76.283276pt;}
.h53{height:76.283278pt;}
.h46{height:76.283280pt;}
.h5d{height:76.283282pt;}
.h35{height:76.283287pt;}
.h29{height:92.416000pt;}
.h66{height:115.640734pt;}
.h68{height:118.451531pt;}
.h32{height:120.858662pt;}
.h33{height:120.858680pt;}
.hb{height:125.354150pt;}
.h9{height:150.306997pt;}
.h8{height:152.180630pt;}
.h2{height:155.136000pt;}
.h28{height:162.444574pt;}
.hd{height:172.508355pt;}
.he{height:172.508386pt;}
.hc{height:172.508426pt;}
.h1a{height:182.812403pt;}
.h23{height:182.812409pt;}
.h12{height:182.812422pt;}
.h1b{height:182.812428pt;}
.h16{height:182.812439pt;}
.h13{height:182.812448pt;}
.hf{height:182.812471pt;}
.h11{height:182.812474pt;}
.h17{height:182.812476pt;}
.h1d{height:182.812492pt;}
.h10{height:182.812494pt;}
.h1f{height:182.812502pt;}
.h20{height:182.812506pt;}
.h15{height:182.812508pt;}
.h22{height:182.812511pt;}
.h1c{height:182.812519pt;}
.h24{height:182.812521pt;}
.h14{height:182.812531pt;}
.h19{height:182.812541pt;}
.h1e{height:182.812550pt;}
.h21{height:182.812552pt;}
.h18{height:182.812565pt;}
.h2f{height:185.264640pt;}
.h25{height:187.136000pt;}
.h64{height:194.625000pt;}
.h2e{height:204.779520pt;}
.h63{height:205.375000pt;}
.h5{height:206.848000pt;}
.h30{height:221.952614pt;}
.h2c{height:224.194560pt;}
.h2d{height:227.354987pt;}
.h2b{height:229.301333pt;}
.h2a{height:229.301867pt;}
.h31{height:231.285653pt;}
.h4{height:237.013333pt;}
.h62{height:252.611250pt;}
.h34{height:277.960000pt;}
.h26{height:344.648438pt;}
.h6{height:366.293333pt;}
.h3{height:499.882667pt;}
.h7{height:1005.011067pt;}
.ha{height:1053.802667pt;}
.h27{height:1175.985333pt;}
.h65{height:1179.733200pt;}
.h67{height:1208.408133pt;}
.h0{height:1440.000000pt;}
.w5{width:312.305733pt;}
.w6{width:315.785067pt;}
.w3{width:643.607200pt;}
.w8{width:952.486133pt;}
.w4{width:2251.930667pt;}
.w7{width:2269.405333pt;}
.w1{width:2325.674667pt;}
.w2{width:2433.204000pt;}
.w0{width:2560.000000pt;}
.xd4{left:-639.852000pt;}
.xd3{left:-638.430667pt;}
.xd5{left:-637.000000pt;}
.xd6{left:-630.178667pt;}
.xd7{left:-621.182667pt;}
.xd8{left:-609.086667pt;}
.xd9{left:-599.728000pt;}
.xda{left:-589.337333pt;}
.xdb{left:-581.565333pt;}
.xdc{left:-530.080000pt;}
.xdd{left:-511.617333pt;}
.xde{left:-497.109333pt;}
.xdf{left:-491.320000pt;}
.xe0{left:-478.198667pt;}
.xe1{left:-463.713333pt;}
.xe2{left:-455.146667pt;}
.xe3{left:-442.456000pt;}
.xe4{left:-436.954667pt;}
.xe5{left:-430.074667pt;}
.xe6{left:-411.721333pt;}
.xe7{left:-399.480000pt;}
.xe8{left:-387.816000pt;}
.xe9{left:-375.265333pt;}
.xea{left:-365.862667pt;}
.xeb{left:-357.545333pt;}
.xec{left:-350.433333pt;}
.xed{left:-345.049333pt;}
.xee{left:-340.860000pt;}
.xef{left:-339.176000pt;}
.xf0{left:-336.424000pt;}
.xf1{left:-334.685333pt;}
.x10c{left:-315.812000pt;}
.x10b{left:-314.860000pt;}
.x10a{left:-311.962667pt;}
.x67{left:-308.550667pt;}
.x66{left:-307.129333pt;}
.x68{left:-305.698667pt;}
.x10d{left:-303.044000pt;}
.x109{left:-301.581333pt;}
.x69{left:-298.877333pt;}
.x10e{left:-296.480000pt;}
.x6a{left:-289.881333pt;}
.x10f{left:-288.614667pt;}
.x108{left:-287.566667pt;}
.x110{left:-279.658667pt;}
.x6b{left:-277.785333pt;}
.x111{left:-269.653333pt;}
.x6c{left:-268.426667pt;}
.x6d{left:-258.036000pt;}
.x6e{left:-250.264000pt;}
.x112{left:-246.905333pt;}
.x113{left:-233.014667pt;}
.x6f{left:-198.778667pt;}
.x70{left:-180.316000pt;}
.x114{left:-177.324000pt;}
.x71{left:-165.808000pt;}
.x72{left:-160.018667pt;}
.x115{left:-151.172000pt;}
.x73{left:-146.897333pt;}
.x116{left:-145.316000pt;}
.x74{left:-132.412000pt;}
.x117{left:-130.961333pt;}
.x75{left:-123.845333pt;}
.x118{left:-118.286667pt;}
.x76{left:-111.154667pt;}
.x77{left:-105.653333pt;}
.x119{left:-104.646667pt;}
.x78{left:-98.773333pt;}
.x11a{left:-85.086667pt;}
.x79{left:-80.420000pt;}
.x7a{left:-68.178667pt;}
.x11b{left:-67.088000pt;}
.x7b{left:-56.514667pt;}
.x11c{left:-53.277333pt;}
.x7c{left:-43.964000pt;}
.x124{left:-39.866667pt;}
.x11d{left:-35.998667pt;}
.x7d{left:-34.561333pt;}
.x123{left:-31.868000pt;}
.x11e{left:-28.544000pt;}
.x7e{left:-26.244000pt;}
.x11f{left:-22.401333pt;}
.x122{left:-20.025333pt;}
.x7f{left:-19.132000pt;}
.x120{left:-15.428000pt;}
.x80{left:-13.748000pt;}
.x121{left:-11.456000pt;}
.x81{left:-9.558667pt;}
.x82{left:-7.874667pt;}
.x83{left:-5.122667pt;}
.x84{left:-3.384000pt;}
.x0{left:0.000000pt;}
.x126{left:1.749333pt;}
.x127{left:3.181333pt;}
.xf2{left:6.305333pt;}
.xf3{left:7.728000pt;}
.xf4{left:8.669333pt;}
.x128{left:10.001333pt;}
.xf5{left:11.834667pt;}
.x2{left:14.304013pt;}
.xaa{left:15.489333pt;}
.xa9{left:16.441333pt;}
.xa8{left:19.338667pt;}
.xab{left:22.898667pt;}
.xa7{left:24.020000pt;}
.xac{left:28.257333pt;}
.xa6{left:29.720000pt;}
.x129{left:31.094667pt;}
.xa5{left:33.148000pt;}
.xad{left:34.821333pt;}
.x12a{left:40.453333pt;}
.xae{left:42.686667pt;}
.xa4{left:43.734667pt;}
.xaf{left:51.642667pt;}
.xf6{left:53.034667pt;}
.xf7{left:58.262667pt;}
.xb0{left:61.648000pt;}
.x5{left:68.604160pt;}
.xb1{left:72.605333pt;}
.xb2{left:84.396000pt;}
.x1e{left:85.539266pt;}
.xb3{left:98.286667pt;}
.x9{left:101.336468pt;}
.xf8{left:109.514667pt;}
.x1{left:116.620987pt;}
.x7{left:124.002303pt;}
.xf9{left:127.794667pt;}
.x3{left:131.999680pt;}
.x8{left:135.556222pt;}
.xfa{left:142.217333pt;}
.xfb{left:148.020000pt;}
.xb4{left:153.977333pt;}
.xfc{left:161.116000pt;}
.x4a{left:168.504000pt;}
.x6{left:169.800962pt;}
.xb5{left:171.452000pt;}
.xfd{left:175.677333pt;}
.xb6{left:180.129333pt;}
.xfe{left:184.314667pt;}
.xb7{left:185.985333pt;}
.x5b{left:196.000000pt;}
.xff{left:197.120000pt;}
.xb8{left:200.340000pt;}
.x100{left:202.733333pt;}
.x101{left:209.708000pt;}
.xb9{left:213.014667pt;}
.xba{left:226.654667pt;}
.x102{left:228.462667pt;}
.xbb{left:233.380000pt;}
.x12b{left:240.701333pt;}
.xc9{left:241.755200pt;}
.xbc{left:246.214667pt;}
.x4b{left:251.337333pt;}
.x103{left:253.182667pt;}
.xbd{left:264.213333pt;}
.x104{left:269.250667pt;}
.x12c{left:274.317333pt;}
.xbe{left:278.024000pt;}
.x12d{left:282.634667pt;}
.xbf{left:287.557333pt;}
.x12e{left:289.746667pt;}
.xc8{left:291.434667pt;}
.x105{left:294.125333pt;}
.xc0{left:295.302667pt;}
.xc7{left:299.433333pt;}
.x106{left:300.384000pt;}
.xc1{left:302.757333pt;}
.x12f{left:303.756000pt;}
.xc6{left:305.509333pt;}
.xc2{left:308.900000pt;}
.x107{left:310.080000pt;}
.xc3{left:312.072000pt;}
.xc4{left:315.873333pt;}
.xc5{left:319.845333pt;}
.x151{left:324.369333pt;}
.x150{left:325.320000pt;}
.x14f{left:328.217333pt;}
.x152{left:331.777333pt;}
.x14e{left:332.898667pt;}
.x85{left:337.606667pt;}
.x86{left:339.029333pt;}
.x87{left:339.970667pt;}
.x14d{left:342.026667pt;}
.x88{left:343.136000pt;}
.x89{left:347.660000pt;}
.x153{left:351.566667pt;}
.x8a{left:353.432000pt;}
.x154{left:360.521333pt;}
.x8b{left:365.370667pt;}
.x155{left:370.528000pt;}
.x8c{left:374.270667pt;}
.x16b{left:375.222667pt;}
.x156{left:381.485333pt;}
.x8d{left:384.336000pt;}
.x8e{left:389.564000pt;}
.x157{left:393.274667pt;}
.x5d{left:403.672933pt;}
.x158{left:407.166667pt;}
.x5c{left:411.352933pt;}
.x62{left:423.060000pt;}
.x63{left:435.256267pt;}
.x8f{left:440.816000pt;}
.x90{left:459.096000pt;}
.x159{left:462.856000pt;}
.x91{left:473.518667pt;}
.x92{left:479.321333pt;}
.x15a{left:480.330667pt;}
.x20{left:485.794000pt;}
.x15b{left:489.009333pt;}
.x15{left:490.517453pt;}
.x93{left:492.417333pt;}
.x15c{left:494.864000pt;}
.x94{left:506.978667pt;}
.x15d{left:509.220000pt;}
.x95{left:515.616000pt;}
.x15e{left:521.893333pt;}
.x96{left:528.421333pt;}
.x97{left:534.034667pt;}
.x15f{left:535.534667pt;}
.x98{left:541.009333pt;}
.x160{left:542.258667pt;}
.x161{left:555.093333pt;}
.x16{left:558.071313pt;}
.x99{left:559.764000pt;}
.x14{left:564.290479pt;}
.x9a{left:572.354667pt;}
.x4d{left:585.006667pt;}
.x162{left:586.904000pt;}
.x163{left:596.436000pt;}
.x9b{left:600.552000pt;}
.x164{left:604.181333pt;}
.x16a{left:608.312000pt;}
.x9c{left:610.180000pt;}
.x165{left:611.636000pt;}
.x169{left:614.389333pt;}
.x166{left:617.778667pt;}
.x9d{left:618.706667pt;}
.x167{left:620.950667pt;}
.x168{left:624.532000pt;}
.x9e{left:625.426667pt;}
.x4c{left:628.729333pt;}
.x21{left:629.711067pt;}
.x9f{left:631.685333pt;}
.xa0{left:636.637333pt;}
.xa1{left:639.884000pt;}
.xa2{left:641.381333pt;}
.xa3{left:643.024000pt;}
.x130{left:646.486667pt;}
.x131{left:647.909333pt;}
.x132{left:648.849333pt;}
.x133{left:652.014667pt;}
.x4{left:655.643467pt;}
.x1d{left:656.691716pt;}
.x54{left:661.354667pt;}
.x134{left:662.312000pt;}
.x53{left:670.604000pt;}
.x135{left:674.249333pt;}
.x136{left:683.150667pt;}
.x137{left:693.214667pt;}
.x138{left:698.444000pt;}
.x18{left:712.465619pt;}
.x139{left:749.696000pt;}
.x13a{left:767.976000pt;}
.x13b{left:782.397333pt;}
.x17{left:788.139823pt;}
.x13c{left:801.297333pt;}
.x13d{left:815.857333pt;}
.xcb{left:817.774667pt;}
.x16c{left:819.173867pt;}
.x13e{left:824.494667pt;}
.x25{left:828.488133pt;}
.x24{left:832.805200pt;}
.x13f{left:837.301333pt;}
.x140{left:842.914667pt;}
.x141{left:849.889333pt;}
.x26{left:853.636933pt;}
.x142{left:868.642667pt;}
.x5a{left:871.228000pt;}
.xca{left:872.998400pt;}
.x27{left:876.058267pt;}
.x143{left:881.233333pt;}
.x59{left:887.212000pt;}
.x144{left:893.362667pt;}
.x28{left:897.068533pt;}
.x5f{left:906.528000pt;}
.x145{left:909.432000pt;}
.x29{left:917.279733pt;}
.x146{left:919.058667pt;}
.x147{left:927.585333pt;}
.x148{left:934.306667pt;}
.x2a{left:935.726533pt;}
.xd0{left:938.574267pt;}
.x149{left:940.564000pt;}
.x14a{left:945.517333pt;}
.x14b{left:948.762667pt;}
.xa{left:950.509832pt;}
.x14c{left:951.902667pt;}
.x2b{left:955.037333pt;}
.x2c{left:967.466400pt;}
.x13{left:968.802588pt;}
.x2d{left:990.928000pt;}
.x2e{left:1008.406533pt;}
.x2f{left:1025.407467pt;}
.x30{left:1041.135600pt;}
.x31{left:1051.204267pt;}
.x32{left:1066.426000pt;}
.x33{left:1081.791333pt;}
.x34{left:1094.969067pt;}
.x23{left:1103.167200pt;}
.x4f{left:1107.389333pt;}
.x35{left:1116.347733pt;}
.x4e{left:1117.640000pt;}
.x36{left:1129.384533pt;}
.x5e{left:1132.448000pt;}
.x37{left:1137.992933pt;}
.x38{left:1153.359200pt;}
.x39{left:1164.567067pt;}
.x3a{left:1175.857333pt;}
.xd1{left:1179.851467pt;}
.x1f{left:1184.080000pt;}
.x3b{left:1190.583333pt;}
.x3c{left:1200.162133pt;}
.x3d{left:1209.352000pt;}
.x3e{left:1215.266933pt;}
.x3f{left:1221.257067pt;}
.x40{left:1229.417067pt;}
.x22{left:1258.277600pt;}
.x55{left:1298.914667pt;}
.x19{left:1338.962257pt;}
.x56{left:1342.666667pt;}
.x1c{left:1355.824792pt;}
.x171{left:1424.906667pt;}
.xe{left:1487.989456pt;}
.xb{left:1509.336472pt;}
.xc{left:1529.908651pt;}
.xd{left:1550.649581pt;}
.x51{left:1568.400000pt;}
.xf{left:1581.487952pt;}
.x172{left:1582.840000pt;}
.x50{left:1589.480000pt;}
.xcc{left:1630.794133pt;}
.x16d{left:1633.172000pt;}
.xcd{left:1653.675467pt;}
.x16e{left:1656.609333pt;}
.xce{left:1765.791467pt;}
.x16f{left:1771.450667pt;}
.x42{left:1810.678667pt;}
.xcf{left:1824.552800pt;}
.x170{left:1831.640000pt;}
.x58{left:1899.026667pt;}
.x65{left:1901.925333pt;}
.x43{left:1909.009333pt;}
.x125{left:1911.286667pt;}
.x61{left:1916.262667pt;}
.x57{left:1923.666667pt;}
.x44{left:1931.793333pt;}
.x60{left:1935.238667pt;}
.x46{left:1945.809333pt;}
.x47{left:1960.017333pt;}
.x45{left:1983.889333pt;}
.x64{left:2026.113333pt;}
.x12{left:2038.807948pt;}
.x10{left:2043.092194pt;}
.x11{left:2067.661857pt;}
.x1a{left:2069.560422pt;}
.x52{left:2080.786667pt;}
.x1b{left:2105.258906pt;}
.x48{left:2131.857333pt;}
.x49{left:2214.929333pt;}
.x41{left:2216.298667pt;}
.xd2{left:2233.226667pt;}
.x173{left:2239.081333pt;}
}




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