
    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_950e27c8743220859d82a0b5.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.869629;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_f38949855c1d5e1c950c5458.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.895996;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_c5037c4ace3882c7d9004238.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.172852;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_161124684bd6ba9abcb9ba38.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.916992;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_0541f124984af66b0334b28e.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.706543;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_983f90e9f251a9496ed89796.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.682129;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_2ee90760e4dc6383ccc4d43e.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.861816;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_e15383d30dc480ccdd004334.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.858398;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_c45db7c2152342ff4caac53c.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.666504;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_3f10bf465ba829e83dbdeb3b.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.130371;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_cc1cf792aa4c68d5246187ae.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.910645;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_d06f997fd6318f5a098000ed.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.939453;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_1872c0e22d571b1b2697de53.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.853027;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_80b3ff075dad96f09fab42d7.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.910156;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_75c35c9c94bd3523f14eef3b.woff2')format("woff");}.fff{font-family:fff;line-height:0.893555;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_75e0bf9bde95d28850adb6b4.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.914062;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_73f8500faaf71b989c63a5f6.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.666504;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_3044175e4b1a9511c7fe5a68.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.678223;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_6de334efdcba4212c01abc09.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.914062;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_8d38e2afc1be8effcc77004e.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_f814e0ba8af78b372b0cc56f.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.941406;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;}
.m18{transform:matrix(0.000000,-0.240507,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.240507,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.240507,0.250000,0.000000,0,0);}
.me{transform:matrix(0.000000,-0.279698,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.279698,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.279698,0.250000,0.000000,0,0);}
.ma{transform:matrix(0.000000,-0.280818,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.280818,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.280818,0.250000,0.000000,0,0);}
.mf{transform:matrix(0.000000,-0.278705,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.278705,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.278705,0.250000,0.000000,0,0);}
.mb{transform:matrix(0.000000,-0.279821,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.279821,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.279821,0.250000,0.000000,0,0);}
.m2{transform:matrix(0.189764,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189764,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189764,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.189862,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189862,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189862,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.192019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192019,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.192376,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192376,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192376,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.192475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192475,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.194662,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194662,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194662,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.217135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217135,0.000000,0.000000,0.250000,0,0);}
.m30{transform:matrix(0.217248,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217248,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217248,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.217524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217524,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.217637,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217637,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217637,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.218755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218755,0.000000,0.000000,0.250000,0,0);}
.m32{transform:matrix(0.219716,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219716,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219716,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.220110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220110,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.220202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220202,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.221084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221084,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.221380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221380,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.221766,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221766,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221766,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.222267,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222267,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222267,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.223568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223568,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.224530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224530,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.226645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226645,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.227621,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227621,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227621,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.242171,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242171,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242171,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.248791,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248791,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248791,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.248930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248930,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.249329,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249329,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249329,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.249440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249440,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.249688,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249688,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249688,0.000000,0.000000,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);}
.m8{transform:matrix(0.250025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250025,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.250044,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250044,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250044,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.250308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250308,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.250354,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250354,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250354,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.250689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250689,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.250757,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250757,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250757,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.250998,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250998,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250998,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.251038,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251038,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251038,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.255815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255815,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.256274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256274,0.000000,0.000000,0.250000,0,0);}
.m31{transform:matrix(0.256916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256916,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.257377,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257377,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257377,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.259868,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259868,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259868,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.260873,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260873,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260873,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.261525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261525,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.261788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261788,0.000000,0.000000,0.250000,0,0);}
.m26{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);}
.v4{vertical-align:-42.852829px;}
.v6{vertical-align:-41.186911px;}
.vf{vertical-align:-37.200000px;}
.v12{vertical-align:-34.913292px;}
.v1{vertical-align:-13.500000px;}
.v9{vertical-align:-8.810601px;}
.v2{vertical-align:-7.622445px;}
.vd{vertical-align:-6.611916px;}
.v7{vertical-align:-4.020000px;}
.v8{vertical-align:-1.200000px;}
.v0{vertical-align:0.000000px;}
.ve{vertical-align:6.680790px;}
.va{vertical-align:9.083094px;}
.vc{vertical-align:28.031767px;}
.v13{vertical-align:29.880000px;}
.v11{vertical-align:34.827087px;}
.vb{vertical-align:36.968193px;}
.v10{vertical-align:38.901527px;}
.v5{vertical-align:41.288859px;}
.v3{vertical-align:42.958901px;}
.ls2b{letter-spacing:-10.457400px;}
.ls58{letter-spacing:-4.025550px;}
.ls15{letter-spacing:-2.671170px;}
.lse{letter-spacing:-2.597400px;}
.ls30{letter-spacing:-2.042040px;}
.ls2{letter-spacing:-2.029500px;}
.ls20{letter-spacing:-1.946400px;}
.ls33{letter-spacing:-1.800000px;}
.ls8e{letter-spacing:-1.795290px;}
.ls12{letter-spacing:-1.587300px;}
.ls14{letter-spacing:-1.443000px;}
.ls11{letter-spacing:-1.298700px;}
.ls85{letter-spacing:-1.297800px;}
.ls7e{letter-spacing:-1.262100px;}
.ls8d{letter-spacing:-1.189650px;}
.ls10{letter-spacing:-1.154400px;}
.lsf{letter-spacing:-1.152000px;}
.ls71{letter-spacing:-1.080000px;}
.ls2d{letter-spacing:-0.866400px;}
.ls8b{letter-spacing:-0.662550px;}
.ls7{letter-spacing:-0.577200px;}
.lsb{letter-spacing:-0.567900px;}
.ls32{letter-spacing:-0.513900px;}
.ls18{letter-spacing:-0.504000px;}
.ls4{letter-spacing:-0.365310px;}
.ls6{letter-spacing:-0.338250px;}
.ls1e{letter-spacing:-0.180375px;}
.ls16{letter-spacing:-0.036075px;}
.ls0{letter-spacing:0.000000px;}
.ls5b{letter-spacing:0.001902px;}
.ls61{letter-spacing:0.001904px;}
.ls74{letter-spacing:0.001912px;}
.ls78{letter-spacing:0.002653px;}
.ls5d{letter-spacing:0.003756px;}
.ls75{letter-spacing:0.004692px;}
.ls5e{letter-spacing:0.018782px;}
.ls5a{letter-spacing:0.019023px;}
.ls60{letter-spacing:0.019040px;}
.ls73{letter-spacing:0.019121px;}
.ls76{letter-spacing:0.023462px;}
.ls25{letter-spacing:0.025487px;}
.ls77{letter-spacing:0.026534px;}
.ls67{letter-spacing:0.039985px;}
.ls6c{letter-spacing:0.050157px;}
.ls79{letter-spacing:0.066335px;}
.ls7d{letter-spacing:0.069300px;}
.ls66{letter-spacing:0.088725px;}
.ls4e{letter-spacing:0.098663px;}
.ls4d{letter-spacing:0.116517px;}
.ls51{letter-spacing:0.117456px;}
.ls41{letter-spacing:0.150416px;}
.ls69{letter-spacing:0.157325px;}
.ls47{letter-spacing:0.157722px;}
.ls5c{letter-spacing:0.174247px;}
.ls62{letter-spacing:0.174410px;}
.ls49{letter-spacing:0.182930px;}
.ls5f{letter-spacing:0.187072px;}
.ls53{letter-spacing:0.192628px;}
.ls22{letter-spacing:0.193580px;}
.ls26{letter-spacing:0.196250px;}
.ls5{letter-spacing:0.202950px;}
.ls3c{letter-spacing:0.208003px;}
.ls3e{letter-spacing:0.241247px;}
.ls46{letter-spacing:0.259457px;}
.ls4f{letter-spacing:0.286593px;}
.ls48{letter-spacing:0.295470px;}
.ls21{letter-spacing:0.324450px;}
.ls72{letter-spacing:0.330300px;}
.ls45{letter-spacing:0.336794px;}
.ls4c{letter-spacing:0.343682px;}
.ls43{letter-spacing:0.364344px;}
.ls3b{letter-spacing:0.369420px;}
.ls52{letter-spacing:0.380558px;}
.ls38{letter-spacing:0.389665px;}
.ls9{letter-spacing:0.396000px;}
.ls3{letter-spacing:0.405900px;}
.ls37{letter-spacing:0.428250px;}
.ls34{letter-spacing:0.432000px;}
.ls3d{letter-spacing:0.450521px;}
.ls3a{letter-spacing:0.453246px;}
.ls42{letter-spacing:0.480496px;}
.ls50{letter-spacing:0.504442px;}
.ls2c{letter-spacing:0.540900px;}
.ls1a{letter-spacing:0.541200px;}
.ls2e{letter-spacing:0.599550px;}
.ls57{letter-spacing:0.608115px;}
.lsc{letter-spacing:0.649350px;}
.ls4b{letter-spacing:0.681165px;}
.ls31{letter-spacing:0.686400px;}
.ls6e{letter-spacing:0.702201px;}
.ls4a{letter-spacing:0.708715px;}
.ls82{letter-spacing:0.721500px;}
.ls54{letter-spacing:0.756419px;}
.ls6d{letter-spacing:0.758029px;}
.ls6b{letter-spacing:0.800851px;}
.ls40{letter-spacing:0.843819px;}
.ls44{letter-spacing:0.846463px;}
.ls36{letter-spacing:0.873630px;}
.ls65{letter-spacing:0.879450px;}
.ls8c{letter-spacing:0.880245px;}
.ls6a{letter-spacing:0.887056px;}
.ls3f{letter-spacing:0.898318px;}
.ls64{letter-spacing:0.947100px;}
.ls24{letter-spacing:0.985403px;}
.ls28{letter-spacing:1.008264px;}
.ls63{letter-spacing:1.009680px;}
.ls56{letter-spacing:1.047710px;}
.ls27{letter-spacing:1.049043px;}
.ls55{letter-spacing:1.075900px;}
.ls23{letter-spacing:1.091474px;}
.ls39{letter-spacing:1.125395px;}
.ls1c{letter-spacing:1.150050px;}
.ls80{letter-spacing:1.153920px;}
.lsd{letter-spacing:1.154400px;}
.ls17{letter-spacing:1.224000px;}
.ls13{letter-spacing:1.370850px;}
.ls59{letter-spacing:1.396095px;}
.ls19{letter-spacing:1.420650px;}
.ls7c{letter-spacing:1.440000px;}
.ls81{letter-spacing:1.442400px;}
.ls1d{letter-spacing:1.443000px;}
.ls35{letter-spacing:1.456050px;}
.ls7a{letter-spacing:1.515150px;}
.ls2f{letter-spacing:1.583160px;}
.ls7b{letter-spacing:1.587300px;}
.ls7f{letter-spacing:1.622700px;}
.ls1b{letter-spacing:1.704780px;}
.ls1{letter-spacing:1.731840px;}
.ls29{letter-spacing:1.948050px;}
.ls2a{letter-spacing:2.054850px;}
.ls70{letter-spacing:2.088000px;}
.ls68{letter-spacing:2.092350px;}
.ls6f{letter-spacing:2.103570px;}
.ls84{letter-spacing:2.190042px;}
.ls8f{letter-spacing:2.237621px;}
.ls8{letter-spacing:2.308800px;}
.lsa{letter-spacing:2.650200px;}
.ls88{letter-spacing:2.654400px;}
.ls1f{letter-spacing:2.666105px;}
.ls8a{letter-spacing:3.028800px;}
.ls89{letter-spacing:3.407400px;}
.ls83{letter-spacing:43.147500px;}
.ls86{letter-spacing:106.141200px;}
.ls87{letter-spacing:106.187100px;}
.sc_{text-shadow:none;}
.sc2{text-shadow:-0.015em 0 rgb(255,0,0),0 0.015em rgb(255,0,0),0.015em 0 rgb(255,0,0),0 -0.015em  rgb(255,0,0);}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc2{-webkit-text-stroke:0.015em rgb(255,0,0);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws51{word-spacing:-127.523101px;}
.ws3b{word-spacing:-113.603733px;}
.ws4e{word-spacing:-112.995308px;}
.ws50{word-spacing:-112.756762px;}
.ws4f{word-spacing:-96.728704px;}
.ws4d{word-spacing:-91.894204px;}
.ws45{word-spacing:-91.508307px;}
.ws3e{word-spacing:-91.422447px;}
.ws41{word-spacing:-90.268070px;}
.ws30{word-spacing:-85.650000px;}
.ws49{word-spacing:-46.953270px;}
.ws4c{word-spacing:-44.849700px;}
.ws5a{word-spacing:-44.815800px;}
.ws53{word-spacing:-42.370500px;}
.ws55{word-spacing:-42.190200px;}
.ws54{word-spacing:-41.901720px;}
.ws3f{word-spacing:-41.757480px;}
.ws56{word-spacing:-40.781700px;}
.ws32{word-spacing:-40.747800px;}
.ws52{word-spacing:-39.485700px;}
.ws3a{word-spacing:-28.400933px;}
.ws33{word-spacing:-27.340113px;}
.ws1b{word-spacing:-25.546500px;}
.ws1d{word-spacing:-24.441900px;}
.ws8{word-spacing:-24.041100px;}
.ws5d{word-spacing:-23.252250px;}
.ws58{word-spacing:-23.144100px;}
.ws5c{word-spacing:-22.271145px;}
.ws5b{word-spacing:-21.390900px;}
.ws36{word-spacing:-20.731110px;}
.ws0{word-spacing:-20.373900px;}
.ws39{word-spacing:-19.965015px;}
.ws21{word-spacing:-19.956450px;}
.ws18{word-spacing:-19.798626px;}
.ws23{word-spacing:-19.356900px;}
.ws27{word-spacing:-18.843000px;}
.wsf{word-spacing:-18.614700px;}
.ws48{word-spacing:-18.398250px;}
.ws4a{word-spacing:-18.360000px;}
.ws1c{word-spacing:-18.253950px;}
.ws22{word-spacing:-18.037500px;}
.ws34{word-spacing:-17.925940px;}
.ws11{word-spacing:-17.676750px;}
.ws14{word-spacing:-17.496000px;}
.wsa{word-spacing:-17.460300px;}
.ws57{word-spacing:-17.027400px;}
.ws17{word-spacing:-16.993680px;}
.ws9{word-spacing:-16.955250px;}
.ws2f{word-spacing:-16.704000px;}
.ws5e{word-spacing:-16.616684px;}
.ws2{word-spacing:-16.614840px;}
.ws10{word-spacing:-16.305900px;}
.ws19{word-spacing:-16.272000px;}
.ws59{word-spacing:-16.263362px;}
.ws42{word-spacing:-16.236000px;}
.ws46{word-spacing:-16.168350px;}
.ws16{word-spacing:-15.830100px;}
.ws15{word-spacing:-15.768000px;}
.ws6{word-spacing:-15.728700px;}
.ws43{word-spacing:-15.288900px;}
.ws4b{word-spacing:-15.192000px;}
.wsd{word-spacing:-15.151500px;}
.wsc{word-spacing:-15.120000px;}
.ws5{word-spacing:-15.085950px;}
.wse{word-spacing:-15.007200px;}
.ws3{word-spacing:-14.883000px;}
.ws12{word-spacing:-14.862900px;}
.ws13{word-spacing:-14.718600px;}
.ws2d{word-spacing:-14.365551px;}
.ws2a{word-spacing:-14.282014px;}
.wsb{word-spacing:-13.708500px;}
.ws37{word-spacing:-13.592652px;}
.ws2c{word-spacing:-13.117637px;}
.ws29{word-spacing:-13.093584px;}
.ws7{word-spacing:-1.202550px;}
.ws1f{word-spacing:-0.628800px;}
.ws31{word-spacing:-0.477600px;}
.ws4{word-spacing:-0.473550px;}
.ws24{word-spacing:-0.299850px;}
.ws3c{word-spacing:-0.113604px;}
.ws35{word-spacing:-0.109360px;}
.ws44{word-spacing:-0.091508px;}
.ws3d{word-spacing:-0.091422px;}
.ws40{word-spacing:-0.090268px;}
.ws38{word-spacing:-0.082924px;}
.ws1{word-spacing:0.000000px;}
.ws20{word-spacing:0.631050px;}
.ws2e{word-spacing:3.492000px;}
.ws28{word-spacing:18.273455px;}
.ws1e{word-spacing:20.467500px;}
.ws47{word-spacing:114.937750px;}
.ws25{word-spacing:121.856850px;}
.ws2b{word-spacing:155.274403px;}
.ws26{word-spacing:217.001400px;}
.ws1a{word-spacing:253.215000px;}
._29{margin-left:-5734.469641px;}
._34{margin-left:-5511.540194px;}
._11d{margin-left:-5465.165032px;}
._11e{margin-left:-5454.325569px;}
._11a{margin-left:-5449.097122px;}
._11b{margin-left:-5429.458564px;}
._10c{margin-left:-5418.938416px;}
._10f{margin-left:-5390.813758px;}
._10d{margin-left:-5384.534745px;}
._116{margin-left:-5378.576847px;}
._20{margin-left:-5359.157061px;}
._23{margin-left:-5355.026611px;}
._118{margin-left:-5337.386885px;}
._25{margin-left:-5329.527639px;}
._110{margin-left:-5323.354037px;}
._10e{margin-left:-5309.198973px;}
._1f{margin-left:-5295.179802px;}
._27{margin-left:-5290.938401px;}
._26{margin-left:-5287.497393px;}
._22{margin-left:-5283.774978px;}
._112{margin-left:-5278.720952px;}
._114{margin-left:-5238.678698px;}
._113{margin-left:-5231.154835px;}
._119{margin-left:-5213.179385px;}
._2b{margin-left:-5150.860073px;}
._2e{margin-left:-5146.848140px;}
._24{margin-left:-5131.478515px;}
._30{margin-left:-5122.340450px;}
._2a{margin-left:-5089.369951px;}
._32{margin-left:-5085.251381px;}
._31{margin-left:-5081.944144px;}
._2d{margin-left:-5078.366439px;}
._11c{margin-left:-5064.742496px;}
._70{margin-left:-5010.427354px;}
._115{margin-left:-5006.719485px;}
._11f{margin-left:-4982.107526px;}
._21{margin-left:-4980.886937px;}
._2f{margin-left:-4931.990552px;}
._28{margin-left:-4899.139468px;}
._117{margin-left:-4888.633093px;}
._43{margin-left:-4843.469045px;}
._73{margin-left:-4832.022104px;}
._e1{margin-left:-4828.250949px;}
._76{margin-left:-4826.708336px;}
._109{margin-left:-4822.774075px;}
._107{margin-left:-4818.151048px;}
._e2{margin-left:-4810.849672px;}
._d7{margin-left:-4801.606998px;}
._fb{margin-left:-4791.470265px;}
._2c{margin-left:-4787.263467px;}
._da{margin-left:-4776.588582px;}
._d8{margin-left:-4770.938817px;}
._6c{margin-left:-4767.057182px;}
._df{margin-left:-4765.764544px;}
._fc{margin-left:-4760.959908px;}
._103{margin-left:-4755.796559px;}
._77{margin-left:-4729.485473px;}
._105{margin-left:-4719.376125px;}
._c5{margin-left:-4716.040892px;}
._111{margin-left:-4714.176184px;}
._33{margin-left:-4708.786988px;}
._fe{margin-left:-4706.949419px;}
._d9{margin-left:-4704.271585px;}
._6b{margin-left:-4698.694724px;}
._fd{margin-left:-4694.433419px;}
._6d{margin-left:-4687.915987px;}
._7b{margin-left:-4684.990430px;}
._71{margin-left:-4681.942486px;}
._78{margin-left:-4677.312606px;}
._46{margin-left:-4671.486653px;}
._100{margin-left:-4667.484553px;}
._4a{margin-left:-4665.885769px;}
._bb{margin-left:-4660.482718px;}
._dd{margin-left:-4641.785180px;}
._dc{margin-left:-4635.118457px;}
._102{margin-left:-4632.078929px;}
._101{margin-left:-4625.426280px;}
._e0{margin-left:-4619.209630px;}
._106{margin-left:-4609.551039px;}
._3f{margin-left:-4608.298120px;}
._4b{margin-left:-4571.725432px;}
._3e{margin-left:-4542.657680px;}
._6e{margin-left:-4540.989243px;}
._40{margin-left:-4530.307942px;}
._51{margin-left:-4529.055028px;}
._44{margin-left:-4525.998491px;}
._4c{margin-left:-4520.002196px;}
._50{margin-left:-4516.822057px;}
._72{margin-left:-4509.460120px;}
._e3{margin-left:-4487.683092px;}
._108{margin-left:-4478.302168px;}
._7a{margin-left:-4466.006562px;}
._75{margin-left:-4453.433514px;}
._de{margin-left:-4436.270227px;}
._79{margin-left:-4427.662258px;}
._e4{margin-left:-4414.462132px;}
._bd{margin-left:-4406.951880px;}
._10a{margin-left:-4405.235786px;}
._c0{margin-left:-4403.788532px;}
._7c{margin-left:-4390.671539px;}
._41{margin-left:-4389.050140px;}
._c2{margin-left:-4383.328606px;}
._45{margin-left:-4358.567640px;}
._bc{margin-left:-4355.066735px;}
._74{margin-left:-4353.850879px;}
._b5{margin-left:-4352.104124px;}
._c3{margin-left:-4349.285510px;}
._bf{margin-left:-4346.913041px;}
._b7{margin-left:-4331.380758px;}
._104{margin-left:-4322.585079px;}
._4e{margin-left:-4316.458309px;}
._48{margin-left:-4303.709748px;}
._b2{margin-left:-4302.586602px;}
._b9{margin-left:-4300.018751px;}
._b8{margin-left:-4297.222196px;}
._b4{margin-left:-4294.196938px;}
._4d{margin-left:-4280.507723px;}
._52{margin-left:-4244.924769px;}
._c1{margin-left:-4220.887091px;}
._49{margin-left:-4213.136768px;}
._47{margin-left:-4208.676254px;}
._db{margin-left:-4177.035479px;}
._b6{margin-left:-4170.423498px;}
._ff{margin-left:-4168.310367px;}
._f6{margin-left:-4145.320054px;}
._f7{margin-left:-4137.098114px;}
._f3{margin-left:-4133.132238px;}
._f4{margin-left:-4118.236017px;}
._e7{margin-left:-4110.376181px;}
._be{margin-left:-4097.176868px;}
._ea{margin-left:-4088.907093px;}
._e8{margin-left:-4084.070658px;}
._f0{margin-left:-4079.641264px;}
._b3{margin-left:-4048.035641px;}
._a2{margin-left:-4038.869340px;}
._eb{margin-left:-4037.737609px;}
._7d{margin-left:-4035.079804px;}
._c4{margin-left:-4029.666955px;}
._e9{margin-left:-4027.000723px;}
._ed{margin-left:-4003.882562px;}
._90{margin-left:-3984.069368px;}
._ba{margin-left:-3980.719150px;}
._ef{margin-left:-3973.509749px;}
._ee{margin-left:-3967.802756px;}
._f2{margin-left:-3954.184135px;}
._d2{margin-left:-3938.118852px;}
._d3{margin-left:-3930.307845px;}
._d0{margin-left:-3926.540183px;}
._ad{margin-left:-3911.435702px;}
._89{margin-left:-3907.765733px;}
._c6{margin-left:-3904.939623px;}
._b0{margin-left:-3888.375609px;}
._8d{margin-left:-3884.727276px;}
._c7{margin-left:-3879.936436px;}
._ae{margin-left:-3876.662546px;}
._8b{margin-left:-3873.025203px;}
._a7{margin-left:-3870.893714px;}
._82{margin-left:-3867.261784px;}
._9c{margin-left:-3858.437176px;}
._a4{margin-left:-3854.075226px;}
._7f{margin-left:-3850.459076px;}
._8a{margin-left:-3846.714560px;}
._f5{margin-left:-3841.591924px;}
._a8{margin-left:-3838.884848px;}
._83{margin-left:-3835.282950px;}
._af{margin-left:-3832.555542px;}
._8c{margin-left:-3828.959583px;}
._c8{margin-left:-3825.713120px;}
._9e{margin-left:-3824.135309px;}
._95{margin-left:-3818.429638px;}
._ca{margin-left:-3803.750405px;}
._92{margin-left:-3801.824070px;}
._9d{margin-left:-3798.141861px;}
._a3{margin-left:-3792.108871px;}
._7e{margin-left:-3788.550861px;}
._96{margin-left:-3786.835814px;}
._9f{margin-left:-3780.626099px;}
._f8{margin-left:-3778.911724px;}
._cc{margin-left:-3774.895625px;}
._cb{margin-left:-3769.837017px;}
._cf{margin-left:-3756.535905px;}
._91{margin-left:-3740.708830px;}
._6a{margin-left:-3735.310609px;}
._aa{margin-left:-3720.309503px;}
._85{margin-left:-3716.818861px;}
._a9{margin-left:-3715.551072px;}
._84{margin-left:-3712.064894px;}
._f1{margin-left:-3708.009584px;}
._a5{margin-left:-3697.851507px;}
._80{margin-left:-3694.381936px;}
._6f{margin-left:-3681.354651px;}
._59{margin-left:-3672.574701px;}
._98{margin-left:-3669.901361px;}
._97{margin-left:-3665.207421px;}
._d1{margin-left:-3649.571051px;}
._93{margin-left:-3647.732718px;}
._ab{margin-left:-3634.348550px;}
._86{margin-left:-3630.938562px;}
._3d{margin-left:-3611.616157px;}
._cd{margin-left:-3607.759188px;}
._a6{margin-left:-3600.578177px;}
._81{margin-left:-3597.199874px;}
._d4{margin-left:-3590.386756px;}
._99{margin-left:-3585.105459px;}
._ec{margin-left:-3575.664590px;}
._42{margin-left:-3558.291118px;}
._87{margin-left:-3555.606465px;}
._ac{margin-left:-3553.638224px;}
._94{margin-left:-3551.796541px;}
._88{margin-left:-3550.303963px;}
._5c{margin-left:-3542.894767px;}
._60{margin-left:-3537.406079px;}
._ce{margin-left:-3522.665154px;}
._9a{margin-left:-3510.724569px;}
._9b{margin-left:-3505.489021px;}
._55{margin-left:-3493.306807px;}
._61{margin-left:-3466.218931px;}
._54{margin-left:-3445.240356px;}
._56{margin-left:-3435.869068px;}
._67{margin-left:-3434.636772px;}
._5a{margin-left:-3432.641351px;}
._62{margin-left:-3428.094557px;}
._66{margin-left:-3425.327412px;}
._c9{margin-left:-3397.297912px;}
._57{margin-left:-3328.797912px;}
._5b{margin-left:-3305.684033px;}
._64{margin-left:-3273.431660px;}
._5e{margin-left:-3264.087095px;}
._63{margin-left:-3245.398102px;}
._68{margin-left:-3218.376719px;}
._5f{margin-left:-3195.408577px;}
._5d{margin-left:-3190.930657px;}
._b1{margin-left:-3019.229713px;}
._8e{margin-left:-3016.396871px;}
._a0{margin-left:-2978.323491px;}
._53{margin-left:-2738.617752px;}
._58{margin-left:-2699.209909px;}
._121{margin-left:-1008.553611px;}
._e6{margin-left:-893.463499px;}
._10b{margin-left:-891.668093px;}
._fa{margin-left:-765.715868px;}
._d6{margin-left:-727.427247px;}
._120{margin-left:-350.959176px;}
._e5{margin-left:-310.948698px;}
._f9{margin-left:-266.185076px;}
._d5{margin-left:-252.881148px;}
._8f{margin-left:-251.416372px;}
._a1{margin-left:-248.255975px;}
._12{margin-left:-42.226004px;}
._12d{margin-left:-35.313565px;}
._123{margin-left:-33.973373px;}
._135{margin-left:-22.467750px;}
._4f{margin-left:-14.334905px;}
._12c{margin-left:-12.396196px;}
._65{margin-left:-11.225438px;}
._9{margin-left:-9.313200px;}
._35{margin-left:-8.136750px;}
._7{margin-left:-6.887100px;}
._6{margin-left:-5.224500px;}
._1{margin-left:-3.606000px;}
._4{margin-left:-2.501250px;}
._3{margin-left:-1.444950px;}
._2{width:1.081800px;}
._0{width:2.343900px;}
._5{width:3.856050px;}
._8{width:4.915620px;}
._b{width:5.954178px;}
._e{width:6.965446px;}
._a{width:7.979543px;}
._f{width:9.713411px;}
._10{width:10.984053px;}
._c{width:12.302292px;}
._d{width:13.720546px;}
._15{width:15.307789px;}
._11{width:16.708620px;}
._14{width:18.040695px;}
._13{width:19.777028px;}
._129{width:35.532693px;}
._128{width:36.922882px;}
._132{width:38.812769px;}
._3c{width:42.109950px;}
._1b{width:43.700846px;}
._1a{width:45.073120px;}
._3a{width:58.136554px;}
._36{width:70.794252px;}
._39{width:83.778529px;}
._37{width:103.850852px;}
._38{width:110.092909px;}
._3b{width:155.149554px;}
._124{width:213.915501px;}
._12e{width:218.562818px;}
._16{width:260.415598px;}
._1e{width:303.844800px;}
._127{width:448.186816px;}
._131{width:457.749769px;}
._12a{width:461.000768px;}
._126{width:462.233449px;}
._133{width:470.814574px;}
._130{width:473.558004px;}
._19{width:544.871307px;}
._12b{width:556.350146px;}
._1c{width:560.192195px;}
._18{width:562.772028px;}
._134{width:567.947758px;}
._122{width:662.182050px;}
._1d{width:677.422704px;}
._69{width:826.822616px;}
._125{width:910.624081px;}
._12f{width:930.407402px;}
._17{width:1108.571904px;}
.fc5{color:rgb(255,0,0);}
.fc3{color:rgb(197,90,17);}
.fc2{color:transparent;}
.fc6{color:rgb(137,137,137);}
.fc4{color:rgb(215,171,169);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs1f{font-size:30.841548px;}
.fs23{font-size:31.021945px;}
.fs33{font-size:41.314122px;}
.fs32{font-size:44.362488px;}
.fs1d{font-size:47.099223px;}
.fs21{font-size:47.185745px;}
.fs8{font-size:49.650000px;}
.fs1e{font-size:51.374150px;}
.fs22{font-size:51.674645px;}
.fs29{font-size:54.150000px;}
.fs28{font-size:54.370608px;}
.fs35{font-size:57.121970px;}
.fs20{font-size:58.015804px;}
.fs24{font-size:58.122380px;}
.fs2f{font-size:59.308714px;}
.fs34{font-size:59.376674px;}
.fs2d{font-size:60.067173px;}
.fs31{font-size:60.123585px;}
.fs47{font-size:60.307526px;}
.fs51{font-size:61.617708px;}
.fs4{font-size:67.650000px;}
.fs38{font-size:68.052472px;}
.fs3b{font-size:69.077421px;}
.fs26{font-size:71.703761px;}
.fs42{font-size:71.961778px;}
.fs7{font-size:72.000000px;}
.fs5{font-size:72.150000px;}
.fse{font-size:73.416935px;}
.fs4c{font-size:73.525149px;}
.fs2b{font-size:74.410915px;}
.fs48{font-size:78.375725px;}
.fs52{font-size:80.078438px;}
.fs1a{font-size:80.479632px;}
.fs27{font-size:82.924440px;}
.fs17{font-size:83.734853px;}
.fs3{font-size:85.650000px;}
.fs1c{font-size:85.800000px;}
.fs9{font-size:87.604542px;}
.fs2{font-size:90.150000px;}
.fs2e{font-size:90.268070px;}
.fs2c{font-size:91.422447px;}
.fs30{font-size:91.508307px;}
.fs3d{font-size:91.894204px;}
.fs6{font-size:94.650000px;}
.fs1b{font-size:94.800000px;}
.fs37{font-size:95.231393px;}
.fsf{font-size:95.412726px;}
.fs3f{font-size:96.728704px;}
.fs3a{font-size:96.799109px;}
.fs36{font-size:103.576100px;}
.fs39{font-size:105.461046px;}
.fs46{font-size:107.945602px;}
.fs14{font-size:108.150000px;}
.fs12{font-size:108.300000px;}
.fs25{font-size:109.360452px;}
.fs50{font-size:110.290721px;}
.fs19{font-size:112.621735px;}
.fs40{font-size:112.756762px;}
.fs3e{font-size:112.995308px;}
.fs2a{font-size:113.603733px;}
.fs16{font-size:117.177031px;}
.fs13{font-size:121.650000px;}
.fs18{font-size:122.490282px;}
.fs15{font-size:127.444739px;}
.fs41{font-size:127.523101px;}
.fsd{font-size:131.410385px;}
.fs45{font-size:132.275173px;}
.fs4f{font-size:135.148853px;}
.fsc{font-size:161.028621px;}
.fs44{font-size:168.253128px;}
.fs4e{font-size:171.908429px;}
.fs0{font-size:180.300000px;}
.fs1{font-size:180.450000px;}
.fs49{font-size:183.111419px;}
.fs53{font-size:187.089517px;}
.fs4b{font-size:198.300000px;}
.fs3c{font-size:198.450000px;}
.fsb{font-size:204.827320px;}
.fs43{font-size:216.037908px;}
.fs4d{font-size:220.731335px;}
.fs10{font-size:222.915447px;}
.fs4a{font-size:261.921391px;}
.fsa{font-size:262.999365px;}
.fs54{font-size:267.611636px;}
.fs55{font-size:270.450000px;}
.fs11{font-size:318.856816px;}
.y1de{bottom:-1646.523300px;}
.y1dd{bottom:-1609.428565px;}
.y1f4{bottom:-1501.540731px;}
.y194{bottom:-1484.550505px;}
.y193{bottom:-1451.681707px;}
.y1f3{bottom:-1428.147286px;}
.y1f2{bottom:-1391.264825px;}
.y1aa{bottom:-1356.084761px;}
.y1f1{bottom:-1354.170090px;}
.y1f0{bottom:-1317.897914px;}
.y1a9{bottom:-1291.052506px;}
.y1ef{bottom:-1280.803179px;}
.y1a8{bottom:-1258.371799px;}
.y1ee{bottom:-1244.504469px;}
.y1c5{bottom:-1238.283217px;}
.y1a7{bottom:-1225.503001px;}
.y1ed{bottom:-1207.436268px;}
.y1c4{bottom:-1205.483809px;}
.y1a6{bottom:-1193.363054px;}
.y17b{bottom:-1192.655222px;}
.y1ec{bottom:-1171.137558px;}
.y17a{bottom:-1165.943569px;}
.y1a5{bottom:-1160.494257px;}
.y116{bottom:-1138.174057px;}
.yfd{bottom:-1137.682545px;}
.y1eb{bottom:-1134.042823px;}
.y1a4{bottom:-1128.330798px;}
.y115{bottom:-1111.878739px;}
.yfc{bottom:-1111.050954px;}
.y1db{bottom:-1110.088679px;}
.y1ea{bottom:-1097.744113px;}
.y1a3{bottom:-1095.485512px;}
.y191{bottom:-1088.179580px;}
.y1ad{bottom:-1068.363101px;}
.y1a2{bottom:-1063.322054px;}
.y1e9{bottom:-1060.596310px;}
.y1da{bottom:-1045.193714px;}
.y1ac{bottom:-1040.226037px;}
.y190{bottom:-1035.310776px;}
.y1a1{bottom:-1030.453256px;}
.y12b{bottom:-1029.781000px;}
.y112{bottom:-1027.884300px;}
.y1e8{bottom:-1024.297599px;}
.y1d9{bottom:-1012.582000px;}
.y18f{bottom:-1008.732968px;}
.y12a{bottom:-1003.523247px;}
.y111{bottom:-1001.309776px;}
.y1a0{bottom:-998.289798px;}
.y1e7{bottom:-987.229399px;}
.y18e{bottom:-982.002195px;}
.y1d8{bottom:-979.806054px;}
.y129{bottom:-977.828965px;}
.y110{bottom:-975.286908px;}
.y19f{bottom:-965.373978px;}
.y1c3{bottom:-958.391058px;}
.y18d{bottom:-955.845043px;}
.y128{bottom:-951.589994px;}
.y1e6{bottom:-950.930689px;}
.y10f{bottom:-948.693362px;}
.y1d7{bottom:-947.710496px;}
.y19e{bottom:-933.210520px;}
.y18c{bottom:-929.133390px;}
.y127{bottom:-925.895712px;}
.y10e{bottom:-922.670493px;}
.y1d6{bottom:-914.911088px;}
.y1e5{bottom:-913.835954px;}
.y18b{bottom:-902.976238px;}
.y1c2{bottom:-902.720730px;}
.y19d{bottom:-900.365233px;}
.y126{bottom:-899.637958px;}
.y10d{bottom:-896.095969px;}
.y1d5{bottom:-882.815531px;}
.y1e4{bottom:-877.537243px;}
.y18a{bottom:-876.245465px;}
.y1c1{bottom:-874.744680px;}
.y125{bottom:-873.943676px;}
.y10c{bottom:-870.073101px;}
.y19c{bottom:-868.201775px;}
.yb2{bottom:-850.291137px;}
.y189{bottom:-850.088313px;}
.y1d4{bottom:-850.039585px;}
.y124{bottom:-847.704705px;}
.y1c0{bottom:-846.607616px;}
.y10b{bottom:-843.479555px;}
.y1e3{bottom:-840.469043px;}
.y19b{bottom:-835.332978px;}
.y188{bottom:-823.376660px;}
.y123{bottom:-822.010423px;}
.y1bf{bottom:-819.094479px;}
.yb1{bottom:-818.659262px;}
.y1d3{bottom:-817.944027px;}
.y10a{bottom:-817.475708px;}
.y1e2{bottom:-804.170333px;}
.y19a{bottom:-803.169519px;}
.y187{bottom:-797.219508px;}
.y122{bottom:-795.752670px;}
.y1be{bottom:-790.957415px;}
.y109{bottom:-790.882162px;}
.yc7{bottom:-785.415138px;}
.y1d2{bottom:-785.144619px;}
.y186{bottom:-770.450493px;}
.y199{bottom:-770.324233px;}
.y121{bottom:-770.058388px;}
.y1e1{bottom:-767.075598px;}
.y108{bottom:-764.859294px;}
.y1bd{bottom:-763.424151px;}
.y1d1{bottom:-753.049062px;}
.yc6{bottom:-749.219009px;}
.y185{bottom:-744.293341px;}
.y120{bottom:-743.819417px;}
.y107{bottom:-738.284770px;}
.y198{bottom:-738.160775px;}
.y1bc{bottom:-735.307214px;}
.y1e0{bottom:-730.803422px;}
.y1d0{bottom:-720.202731px;}
.y11f{bottom:-718.125135px;}
.y184{bottom:-717.562568px;}
.yc5{bottom:-712.682263px;}
.y106{bottom:-712.261901px;}
.y1bb{bottom:-707.773950px;}
.y197{bottom:-705.291977px;}
.y11e{bottom:-691.867381px;}
.y183{bottom:-691.424537px;}
.y1cf{bottom:-688.107173px;}
.y105{bottom:-685.668355px;}
.y1ba{bottom:-679.636886px;}
.yc4{bottom:-674.919300px;}
.y196{bottom:-673.152030px;}
.y11d{bottom:-666.191882px;}
.y182{bottom:-664.693763px;}
.y104{bottom:-659.645487px;}
.y1ce{bottom:-655.331227px;}
.y1b9{bottom:-652.103622px;}
.ycb{bottom:-643.335936px;}
.y11c{bottom:-639.934128px;}
.yc3{bottom:-638.904832px;}
.y181{bottom:-638.536611px;}
.y130{bottom:-635.322028px;}
.y103{bottom:-633.070963px;}
.y1df{bottom:-632.441346px;}
.y1b8{bottom:-623.926305px;}
.y1cd{bottom:-623.235669px;}
.yca{bottom:-619.350524px;}
.y11b{bottom:-614.239846px;}
.y180{bottom:-611.824959px;}
.y12f{bottom:-608.665426px;}
.y102{bottom:-607.048094px;}
.ye5{bottom:-603.232051px;}
.yc2{bottom:-602.368086px;}
.y1b7{bottom:-596.393041px;}
.ye0{bottom:-594.142596px;}
.y158{bottom:-590.465818px;}
.y1cc{bottom:-590.436261px;}
.y11a{bottom:-588.000875px;}
.y195{bottom:-585.995641px;}
.y17f{bottom:-585.667807px;}
.y101{bottom:-580.454548px;}
.ye4{bottom:-570.226830px;}
.y1b6{bottom:-568.276104px;}
.ydf{bottom:-566.696259px;}
.yc1{bottom:-566.171957px;}
.y119{bottom:-562.306593px;}
.y157{bottom:-560.336940px;}
.y17e{bottom:-558.937033px;}
.y1cb{bottom:-558.364165px;}
.y100{bottom:-554.431679px;}
.y1b5{bottom:-540.742840px;}
.yde{bottom:-538.991645px;}
.y165{bottom:-536.544178px;}
.y118{bottom:-536.048840px;}
.yfa{bottom:-535.647696px;}
.y17d{bottom:-532.779881px;}
.yc0{bottom:-530.157489px;}
.yff{bottom:-527.857156px;}
.y1ca{bottom:-525.564758px;}
.y145{bottom:-525.439706px;}
.y117{bottom:-515.294321px;}
.y1b4{bottom:-512.605776px;}
.ydd{bottom:-510.357229px;}
.yfe{bottom:-506.837222px;}
.y144{bottom:-498.821185px;}
.yf9{bottom:-498.202627px;}
.ybf{bottom:-494.143021px;}
.y1c9{bottom:-493.469200px;}
.y1b3{bottom:-485.072512px;}
.ydc{bottom:-483.048641px;}
.y143{bottom:-472.773877px;}
.y17c{bottom:-461.918475px;}
.y1c8{bottom:-460.693254px;}
.yf8{bottom:-460.240751px;}
.ybe{bottom:-458.105846px;}
.y1b2{bottom:-456.955575px;}
.ydb{bottom:-455.344026px;}
.y142{bottom:-446.174396px;}
.y1b1{bottom:-429.422311px;}
.y1c7{bottom:-428.597696px;}
.yda{bottom:-427.897689px;}
.ybd{bottom:-422.091378px;}
.yf7{bottom:-421.057329px;}
.y141{bottom:-420.127088px;}
.y6b{bottom:-401.877865px;}
.y1b0{bottom:-401.285247px;}
.yd9{bottom:-400.589100px;}
.y140{bottom:-393.508567px;}
.ybc{bottom:-385.895249px;}
.yf6{bottom:-383.682735px;}
.y7b{bottom:-382.941424px;}
.y1af{bottom:-373.772110px;}
.yd8{bottom:-373.280512px;}
.y13f{bottom:-367.461259px;}
.y6a{bottom:-364.805925px;}
.ybb{bottom:-349.880781px;}
.y7a{bottom:-347.336155px;}
.yd7{bottom:-345.954705px;}
.yf5{bottom:-345.532928px;}
.y1c6{bottom:-341.625304px;}
.y13e{bottom:-340.861778px;}
.y78{bottom:-335.503712px;}
.y88{bottom:-319.173075px;}
.yd6{bottom:-318.646116px;}
.y13d{bottom:-314.814470px;}
.yba{bottom:-313.866313px;}
.yf4{bottom:-308.111351px;}
.y1ae{bottom:-299.162600px;}
.yd5{bottom:-291.199779px;}
.y13c{bottom:-288.195948px;}
.yf3{bottom:-270.666283px;}
.yd4{bottom:-263.891191px;}
.y13b{bottom:-262.148640px;}
.yb9{bottom:-256.483867px;}
.yd3{bottom:-236.582602px;}
.y13a{bottom:-235.549160px;}
.yf2{bottom:-233.279942px;}
.y139{bottom:-209.501851px;}
.yf1{bottom:-195.668086px;}
.yd2{bottom:-193.071377px;}
.yaa{bottom:-192.401571px;}
.y138{bottom:-182.890946px;}
.ya1{bottom:-171.068124px;}
.yf0{bottom:-158.227716px;}
.y137{bottom:-156.847446px;}
.ya2{bottom:-131.587363px;}
.y136{bottom:-130.236541px;}
.yef{bottom:-120.789695px;}
.ya7{bottom:-112.889304px;}
.y135{bottom:-104.191137px;}
.yee{bottom:-83.408053px;}
.y134{bottom:-77.580232px;}
.ya8{bottom:-52.921697px;}
.y133{bottom:-51.536732px;}
.ya3{bottom:-51.287665px;}
.y168{bottom:-51.103684px;}
.y4a{bottom:-48.902646px;}
.ya9{bottom:-47.996843px;}
.yed{bottom:-45.970032px;}
.y279{bottom:-41.043200px;}
.y231{bottom:-40.170513px;}
.y4c{bottom:-33.118826px;}
.y27b{bottom:-27.796173px;}
.y233{bottom:-27.205202px;}
.y132{bottom:-24.925827px;}
.y49{bottom:-22.301241px;}
.y167{bottom:-20.463281px;}
.y278{bottom:-18.717049px;}
.y230{bottom:-18.319084px;}
.y131{bottom:-3.891483px;}
.y0{bottom:0.000000px;}
.ya6{bottom:0.679329px;}
.y22b{bottom:1.019792px;}
.y273{bottom:1.041908px;}
.y44{bottom:1.241464px;}
.y175{bottom:3.735406px;}
.y154{bottom:4.140042px;}
.y22f{bottom:5.280603px;}
.y277{bottom:5.395366px;}
.y9f{bottom:6.008027px;}
.y48{bottom:6.428469px;}
.y156{bottom:6.750150px;}
.y1f9{bottom:9.750000px;}
.y207{bottom:10.950000px;}
.y292{bottom:11.250150px;}
.y177{bottom:11.325000px;}
.y22d{bottom:11.472236px;}
.y275{bottom:11.721432px;}
.y1f7{bottom:12.187500px;}
.y155{bottom:12.300000px;}
.yec{bottom:13.628704px;}
.y46{bottom:13.966019px;}
.y24{bottom:14.475000px;}
.ya5{bottom:15.096817px;}
.y2ab{bottom:15.601515px;}
.y2ad{bottom:15.824865px;}
.y26{bottom:15.937500px;}
.y92{bottom:15.975000px;}
.y2ac{bottom:16.308570px;}
.y1fc{bottom:16.387500px;}
.y256{bottom:16.875000px;}
.y272{bottom:21.226515px;}
.y27a{bottom:21.449865px;}
.y276{bottom:21.933570px;}
.y16{bottom:23.437500px;}
.y148{bottom:24.751796px;}
.y98{bottom:27.301448px;}
.y254{bottom:27.600000px;}
.y1ab{bottom:28.125000px;}
.ya4{bottom:28.983812px;}
.y22c{bottom:29.826509px;}
.y274{bottom:30.474452px;}
.y12e{bottom:31.876500px;}
.ye2{bottom:32.212500px;}
.y89{bottom:33.375000px;}
.y7{bottom:34.912500px;}
.y45{bottom:36.310070px;}
.y93{bottom:36.375000px;}
.y114{bottom:40.500000px;}
.y147{bottom:42.407175px;}
.y15{bottom:44.850000px;}
.y149{bottom:44.982441px;}
.y247{bottom:45.669273px;}
.y152{bottom:46.219809px;}
.y28f{bottom:46.661456px;}
.y60{bottom:55.596649px;}
.ye1{bottom:58.125000px;}
.y153{bottom:58.452617px;}
.y151{bottom:58.880936px;}
.y253{bottom:60.262500px;}
.y99{bottom:61.147938px;}
.y229{bottom:62.783908px;}
.y298{bottom:63.193665px;}
.y2aa{bottom:64.147739px;}
.y271{bottom:64.147889px;}
.y14{bottom:66.262500px;}
.yaf{bottom:68.437500px;}
.y25c{bottom:68.818665px;}
.y150{bottom:71.543333px;}
.y201{bottom:73.162500px;}
.y2ae{bottom:73.500000px;}
.y42{bottom:76.431623px;}
.y246{bottom:77.972266px;}
.y290{bottom:79.125000px;}
.y245{bottom:79.537609px;}
.y28e{bottom:79.666232px;}
.y28d{bottom:81.265582px;}
.y14a{bottom:82.347774px;}
.y6{bottom:83.400000px;}
.y14f{bottom:84.205729px;}
.y9c{bottom:85.372681px;}
.ye3{bottom:85.873485px;}
.y69{bottom:92.250000px;}
.yae{bottom:94.350000px;}
.y5f{bottom:94.921537px;}
.y79{bottom:95.625000px;}
.y228{bottom:95.961263px;}
.y5e{bottom:96.827149px;}
.y14e{bottom:96.866222px;}
.y19{bottom:97.350000px;}
.y2a9{bottom:98.045873px;}
.y270{bottom:98.046023px;}
.yb0{bottom:101.250000px;}
.y5{bottom:108.187500px;}
.y244{bottom:111.401954px;}
.y28c{bottom:113.822180px;}
.y41{bottom:116.820939px;}
.y18{bottom:118.762500px;}
.y14b{bottom:119.762601px;}
.y20d{bottom:126.262500px;}
.y227{bottom:129.030056px;}
.y2a8{bottom:131.833086px;}
.y26f{bottom:131.833236px;}
.y4{bottom:132.975000px;}
.y9a{bottom:133.217910px;}
.y243{bottom:133.437057px;}
.y5d{bottom:135.618037px;}
.y1dc{bottom:136.125000px;}
.y28b{bottom:136.335997px;}
.y17{bottom:140.175000px;}
.y9d{bottom:145.230329px;}
.y8d{bottom:147.075000px;}
.y90{bottom:147.450000px;}
.y9e{bottom:150.146152px;}
.yc9{bottom:153.000000px;}
.y20c{bottom:155.595000px;}
.y40{bottom:157.078094px;}
.y14c{bottom:157.129203px;}
.y226{bottom:161.771697px;}
.y5c{bottom:162.443044px;}
.y242{bottom:165.052003px;}
.y2a7{bottom:165.286040px;}
.y26e{bottom:165.286190px;}
.y28a{bottom:168.637777px;}
.y3{bottom:170.145000px;}
.y1c{bottom:171.255000px;}
.y252{bottom:175.995000px;}
.y20b{bottom:184.875000px;}
.y1b{bottom:192.675000px;}
.y94{bottom:193.530000px;}
.y14d{bottom:194.496439px;}
.y225{bottom:194.985728px;}
.y1ff{bottom:195.600000px;}
.y3f{bottom:196.936982px;}
.y64{bottom:197.925000px;}
.y2a6{bottom:199.221646px;}
.y26d{bottom:199.221796px;}
.y5b{bottom:200.930320px;}
.y9b{bottom:205.287881px;}
.y1fa{bottom:207.480000px;}
.y63{bottom:209.775000px;}
.y1a{bottom:214.095000px;}
.y251{bottom:215.445000px;}
.y2{bottom:218.625000px;}
.y146{bottom:220.200000px;}
.y291{bottom:220.470000px;}
.y20a{bottom:225.450000px;}
.y66{bottom:227.100000px;}
.y224{bottom:227.730303px;}
.y2a5{bottom:232.677597px;}
.y26c{bottom:232.677747px;}
.y3e{bottom:237.370947px;}
.y192{bottom:240.750000px;}
.y250{bottom:243.645000px;}
.y97{bottom:249.750000px;}
.y1f6{bottom:251.145000px;}
.y209{bottom:254.775000px;}
.y166{bottom:255.375000px;}
.y1e{bottom:255.780000px;}
.y223{bottom:260.797630px;}
.y2a4{bottom:266.463312px;}
.y26b{bottom:266.463462px;}
.y1{bottom:267.075000px;}
.y179{bottom:271.125000px;}
.y24f{bottom:272.925000px;}
.y96{bottom:275.280000px;}
.yfb{bottom:275.625000px;}
.y1d{bottom:277.200000px;}
.y3d{bottom:277.233407px;}
.y25{bottom:283.650000px;}
.y222{bottom:293.644898px;}
.y2a3{bottom:300.024188px;}
.y26a{bottom:300.024338px;}
.y24e{bottom:301.125000px;}
.yab{bottom:302.745000px;}
.y164{bottom:312.344508px;}
.y249{bottom:316.005000px;}
.y3c{bottom:317.488776px;}
.y23{bottom:318.120000px;}
.y21{bottom:320.295000px;}
.y221{bottom:326.712224px;}
.y2a2{bottom:333.809902px;}
.y269{bottom:333.810052px;}
.y24d{bottom:334.905000px;}
.y20{bottom:341.700000px;}
.y3b{bottom:357.476252px;}
.y220{bottom:359.456799px;}
.y91{bottom:360.975000px;}
.y95{bottom:361.695000px;}
.y1f{bottom:363.120000px;}
.yd1{bottom:363.982506px;}
.y8f{bottom:365.145000px;}
.y2a1{bottom:367.265853px;}
.y268{bottom:367.266003px;}
.y163{bottom:371.955721px;}
.y8c{bottom:372.600000px;}
.y24c{bottom:373.245000px;}
.y8b{bottom:383.145000px;}
.y62{bottom:385.575000px;}
.y21f{bottom:392.626819px;}
.y20e{bottom:393.750000px;}
.y3a{bottom:397.731622px;}
.y22a{bottom:398.008950px;}
.y232{bottom:398.227650px;}
.y22e{bottom:398.701050px;}
.y2a0{bottom:401.156492px;}
.y267{bottom:401.156642px;}
.y24b{bottom:402.570000px;}
.y13{bottom:403.620000px;}
.yc{bottom:405.120000px;}
.yd0{bottom:411.626178px;}
.yac{bottom:412.725000px;}
.y27{bottom:417.375000px;}
.y43{bottom:422.559750px;}
.y4b{bottom:422.825850px;}
.y47{bottom:423.402300px;}
.y21e{bottom:425.738157px;}
.y241{bottom:427.671519px;}
.y162{bottom:431.545384px;}
.y29f{bottom:434.987174px;}
.y266{bottom:434.987324px;}
.y12{bottom:436.275000px;}
.y289{bottom:436.962751px;}
.y39{bottom:437.594082px;}
.y214{bottom:444.589200px;}
.ya0{bottom:445.500000px;}
.y200{bottom:446.550000px;}
.y240{bottom:451.628459px;}
.y21d{bottom:458.468061px;}
.ycf{bottom:459.252632px;}
.y288{bottom:461.440156px;}
.y248{bottom:462.675000px;}
.y208{bottom:464.880000px;}
.y12d{bottom:465.345000px;}
.y204{bottom:468.300000px;}
.y29e{bottom:468.428136px;}
.y265{bottom:468.428286px;}
.y11{bottom:468.975000px;}
.y1f5{bottom:471.945000px;}
.yd{bottom:473.025000px;}
.ya{bottom:476.280000px;}
.y68{bottom:477.570000px;}
.y38{bottom:477.974468px;}
.yb8{bottom:478.156776px;}
.y2d{bottom:479.265450px;}
.y23f{bottom:485.502663px;}
.y61{bottom:488.280000px;}
.y161{bottom:491.156598px;}
.y21c{bottom:491.652751px;}
.y12c{bottom:495.975000px;}
.y287{bottom:496.050277px;}
.y8e{bottom:497.775000px;}
.y9{bottom:499.695000px;}
.y10{bottom:501.675000px;}
.y29d{bottom:502.333764px;}
.y264{bottom:502.333914px;}
.y255{bottom:502.470000px;}
.ye{bottom:505.155000px;}
.yce{bottom:506.913523px;}
.y206{bottom:508.845000px;}
.y37{bottom:518.283416px;}
.y23e{bottom:519.215492px;}
.y5a{bottom:520.637178px;}
.y203{bottom:522.405000px;}
.y21b{bottom:524.397326px;}
.y8{bottom:525.600000px;}
.y178{bottom:526.050000px;}
.y286{bottom:530.495518px;}
.y24a{bottom:531.780000px;}
.yf{bottom:533.220000px;}
.y67{bottom:533.880000px;}
.y29c{bottom:535.789715px;}
.y263{bottom:535.789865px;}
.y219{bottom:536.890712px;}
.y113{bottom:537.345000px;}
.y65{bottom:539.025000px;}
.yb7{bottom:540.989079px;}
.y176{bottom:542.175000px;}
.yc8{bottom:543.375000px;}
.y202{bottom:545.505000px;}
.y261{bottom:548.554687px;}
.y59{bottom:549.801782px;}
.y160{bottom:550.810915px;}
.yad{bottom:550.950000px;}
.y1fd{bottom:551.325000px;}
.y1fe{bottom:551.700000px;}
.y23d{bottom:553.089696px;}
.y1f8{bottom:554.475000px;}
.ycd{bottom:554.574414px;}
.y205{bottom:557.280000px;}
.y21a{bottom:557.464652px;}
.y8a{bottom:557.700000px;}
.y36{bottom:558.128016px;}
.y1fb{bottom:558.900000px;}
.y22{bottom:560.025000px;}
.yb{bottom:560.400000px;}
.y218{bottom:563.913788px;}
.y285{bottom:565.105639px;}
.y29b{bottom:569.575430px;}
.y262{bottom:569.575580px;}
.y260{bottom:576.164840px;}
.y23c{bottom:586.963900px;}
.y58{bottom:591.039425px;}
.y35{bottom:598.526261px;}
.y284{bottom:599.715761px;}
.ycc{bottom:602.183650px;}
.yb6{bottom:603.798674px;}
.y23b{bottom:608.878897px;}
.y15f{bottom:619.128900px;}
.y283{bottom:622.106817px;}
.y57{bottom:632.080614px;}
.y34{bottom:638.388721px;}
.y32{bottom:653.597841px;}
.y217{bottom:657.605544px;}
.yb5{bottom:666.653684px;}
.y15e{bottom:670.011791px;}
.y29a{bottom:671.891883px;}
.y25f{bottom:671.892033px;}
.y56{bottom:673.318257px;}
.y33{bottom:678.644090px;}
.y87{bottom:684.732399px;}
.y31{bottom:686.495086px;}
.y77{bottom:709.007488px;}
.y216{bottom:711.945107px;}
.y215{bottom:712.643403px;}
.y55{bottom:714.555900px;}
.y299{bottom:727.411974px;}
.y25e{bottom:727.412124px;}
.y25d{bottom:728.125608px;}
.yb4{bottom:729.508695px;}
.y15d{bottom:729.601453px;}
.y54{bottom:741.234530px;}
.y23a{bottom:741.341661px;}
.y86{bottom:755.203815px;}
.y282{bottom:757.447381px;}
.y239{bottom:775.171854px;}
.yeb{bottom:776.738527px;}
.y76{bottom:782.329316px;}
.y15c{bottom:789.191116px;}
.y281{bottom:792.012535px;}
.yb3{bottom:792.295582px;}
.y30{bottom:800.553208px;}
.y238{bottom:809.046058px;}
.y85{bottom:825.700719px;}
.y280{bottom:826.622657px;}
.yea{bottom:842.067721px;}
.y237{bottom:842.802898px;}
.y15b{bottom:848.802330px;}
.y75{bottom:855.677661px;}
.y27f{bottom:861.112865px;}
.y213{bottom:866.396220px;}
.y2f{bottom:866.704889px;}
.y174{bottom:866.826119px;}
.y2e{bottom:867.554950px;}
.y236{bottom:876.677102px;}
.y297{bottom:885.218540px;}
.y25b{bottom:885.218690px;}
.y27e{bottom:895.722986px;}
.y84{bottom:896.172136px;}
.y53{bottom:902.491682px;}
.ye9{bottom:907.326441px;}
.y15a{bottom:908.391992px;}
.y235{bottom:910.536636px;}
.y173{bottom:927.407340px;}
.y74{bottom:928.999489px;}
.y27d{bottom:930.318119px;}
.y212{bottom:932.208122px;}
.y234{bottom:939.100116px;}
.y52{bottom:943.675747px;}
.y296{bottom:952.460206px;}
.y25a{bottom:952.460356px;}
.y27c{bottom:959.502141px;}
.y83{bottom:966.720014px;}
.y159{bottom:968.046309px;}
.ye8{bottom:972.585162px;}
.y51{bottom:984.913390px;}
.y172{bottom:988.032176px;}
.y211{bottom:988.469522px;}
.y73{bottom:1002.400870px;}
.y295{bottom:1009.943886px;}
.y259{bottom:1009.944036px;}
.y210{bottom:1010.401932px;}
.y50{bottom:1026.008157px;}
.y294{bottom:1032.352778px;}
.y258{bottom:1032.352928px;}
.y20f{bottom:1032.363683px;}
.ye7{bottom:1037.820391px;}
.y82{bottom:1047.513645px;}
.y171{bottom:1048.613397px;}
.y2c{bottom:1054.729968px;}
.y293{bottom:1054.791648px;}
.y257{bottom:1054.791798px;}
.y4f{bottom:1067.245800px;}
.y72{bottom:1086.462423px;}
.ye6{bottom:1103.079111px;}
.y81{bottom:1107.688334px;}
.y4e{bottom:1108.465584px;}
.y170{bottom:1109.238233px;}
.y2b{bottom:1134.847797px;}
.y4d{bottom:1143.238079px;}
.y71{bottom:1149.071043px;}
.y80{bottom:1178.185238px;}
.y16f{bottom:1178.695105px;}
.y2a{bottom:1203.339075px;}
.y70{bottom:1222.392870px;}
.y29{bottom:1230.039065px;}
.y16e{bottom:1230.466098px;}
.y7f{bottom:1248.656654px;}
.y28{bottom:1256.774774px;}
.y16d{bottom:1291.025511px;}
.y6f{bottom:1295.741216px;}
.y7e{bottom:1319.128071px;}
.y16c{bottom:1351.606733px;}
.y6e{bottom:1369.063044px;}
.y7d{bottom:1389.624975px;}
.y16b{bottom:1412.253376px;}
.y6d{bottom:1442.411389px;}
.y7c{bottom:1460.172852px;}
.y16a{bottom:1472.812790px;}
.y6c{bottom:1515.812770px;}
.y169{bottom:1533.459433px;}
.h7a{height:0.909572px;}
.h8f{height:0.929332px;}
.h12{height:1.107290px;}
.h36{height:22.483609px;}
.h3b{height:22.615119px;}
.h38{height:28.124850px;}
.h57{height:30.118156px;}
.h56{height:32.340427px;}
.h34{height:34.335518px;}
.h39{height:34.398592px;}
.h35{height:37.451956px;}
.h3a{height:37.671018px;}
.h59{height:41.642140px;}
.h37{height:42.293748px;}
.h3c{height:42.371442px;}
.h58{height:43.285828px;}
.h7f{height:43.287140px;}
.h94{height:44.227554px;}
.h80{height:46.797450px;}
.h6{height:47.269116px;}
.h83{height:47.271165px;}
.h5d{height:47.284506px;}
.h7e{height:47.489760px;}
.h95{height:47.814135px;}
.h62{height:47.996665px;}
.h98{height:48.298140px;}
.h93{height:48.521475px;}
.he{height:48.557373px;}
.h81{height:49.754823px;}
.hb{height:49.781250px;}
.ha{height:49.884961px;}
.h30{height:50.131567px;}
.h96{height:50.835747px;}
.h78{height:51.652253px;}
.hd{height:51.679688px;}
.h77{height:51.748755px;}
.hc{height:51.787354px;}
.h17{height:52.696726px;}
.h8d{height:52.774399px;}
.h9e{height:52.872840px;}
.h8c{height:52.872990px;}
.h87{height:54.189466px;}
.h9c{height:55.366733px;}
.h2c{height:55.919198px;}
.h84{height:56.256013px;}
.h18{height:56.970090px;}
.h99{height:57.478176px;}
.h1b{height:57.546780px;}
.h45{height:57.577419px;}
.h16{height:57.812880px;}
.h47{height:57.901343px;}
.h27{height:58.181004px;}
.h3e{height:59.218945px;}
.h19{height:60.570328px;}
.h4{height:61.477295px;}
.h23{height:62.377295px;}
.h50{height:62.720441px;}
.h10{height:62.880213px;}
.hf{height:62.997675px;}
.h51{height:63.028975px;}
.h4d{height:63.522531px;}
.h53{height:63.582188px;}
.h4e{height:63.835010px;}
.h65{height:63.850319px;}
.h54{height:63.894960px;}
.h66{height:64.164410px;}
.h9{height:64.702148px;}
.h3{height:64.707275px;}
.h46{height:65.809782px;}
.h1f{height:65.968955px;}
.h6b{height:67.209446px;}
.h6c{height:67.540062px;}
.h8b{height:67.937256px;}
.h31{height:68.044922px;}
.h1c{height:68.484721px;}
.h82{height:68.518295px;}
.h97{height:70.006856px;}
.h8{height:71.762476px;}
.h5b{height:71.967183px;}
.h3d{height:72.183545px;}
.h60{height:73.276889px;}
.h22{height:73.930664px;}
.h20{height:74.033203px;}
.h2e{height:74.775586px;}
.h41{height:75.932892px;}
.h43{height:76.360081px;}
.h7d{height:77.480485px;}
.h2f{height:77.627197px;}
.h32{height:77.734863px;}
.h6e{height:78.346129px;}
.h68{height:78.511876px;}
.h6f{height:78.731528px;}
.h49{height:78.879155px;}
.h69{height:78.898091px;}
.h75{height:79.053003px;}
.h92{height:79.163750px;}
.h4b{height:79.322919px;}
.h3f{height:81.551514px;}
.h73{height:81.559687px;}
.h5c{height:82.111592px;}
.h5e{height:82.456415px;}
.h1a{height:83.412528px;}
.h61{height:83.499267px;}
.h2a{height:85.109214px;}
.h5{height:85.189966px;}
.h42{height:86.789702px;}
.h21{height:87.317139px;}
.h25{height:88.551691px;}
.h71{height:88.606139px;}
.h72{height:89.042009px;}
.h4a{height:90.604033px;}
.h8a{height:94.141626px;}
.h15{height:94.322884px;}
.h7c{height:94.943606px;}
.h91{height:97.006257px;}
.h2b{height:97.208057px;}
.h2d{height:97.411952px;}
.h26{height:101.139905px;}
.h28{height:101.352047px;}
.h76{height:107.569116px;}
.h14{height:115.582067px;}
.h7b{height:120.767626px;}
.h90{height:123.391304px;}
.h1{height:124.660547px;}
.h2{height:124.764258px;}
.h85{height:126.604379px;}
.h9a{height:129.354861px;}
.h7{height:129.522217px;}
.h89{height:137.105859px;}
.h63{height:137.209570px;}
.h13{height:147.019610px;}
.h1d{height:154.125133px;}
.h79{height:155.066272px;}
.h8e{height:158.435089px;}
.h74{height:171.815186px;}
.h9d{height:186.990820px;}
.h86{height:188.000217px;}
.h11{height:188.773958px;}
.h88{height:188.811035px;}
.h6a{height:190.124400px;}
.h9b{height:192.084524px;}
.h64{height:220.500000px;}
.h6d{height:221.625000px;}
.h52{height:227.998500px;}
.h1e{height:228.866953px;}
.h55{height:234.337800px;}
.h4f{height:248.396700px;}
.h67{height:253.099200px;}
.h5a{height:258.746250px;}
.h33{height:260.868600px;}
.h5f{height:262.125000px;}
.h48{height:262.867215px;}
.h4c{height:266.620350px;}
.h70{height:305.991750px;}
.h29{height:305.996250px;}
.h24{height:318.373050px;}
.h44{height:335.244750px;}
.h40{height:440.257650px;}
.h0{height:607.500000px;}
.w1a{width:0.775343px;}
.w24{width:0.894144px;}
.w1f{width:0.895747px;}
.w3{width:0.931068px;}
.w1d{width:62.996730px;}
.w1b{width:69.327900px;}
.w27{width:72.649335px;}
.w22{width:72.779550px;}
.w6{width:75.649410px;}
.w25{width:79.950585px;}
.w20{width:80.093895px;}
.w4{width:83.252175px;}
.wa{width:177.742950px;}
.wb{width:262.125000px;}
.wd{width:297.000000px;}
.w18{width:312.740100px;}
.w17{width:312.745200px;}
.w11{width:318.237750px;}
.w12{width:322.864950px;}
.w15{width:326.250000px;}
.w9{width:330.750000px;}
.wf{width:332.168550px;}
.w10{width:336.375000px;}
.w8{width:361.110150px;}
.w13{width:370.125000px;}
.w7{width:375.743700px;}
.w16{width:397.608450px;}
.w14{width:411.746850px;}
.wc{width:435.369450px;}
.w1c{width:474.807450px;}
.w19{width:543.361050px;}
.w26{width:547.559400px;}
.w21{width:548.540850px;}
.w5{width:570.171000px;}
.w23{width:626.617050px;}
.w1e{width:627.740250px;}
.w2{width:652.493400px;}
.we{width:660.372284px;}
.w1{width:1079.999984px;}
.w0{width:1080.000000px;}
.x32{left:-961.541540px;}
.x31{left:-900.494116px;}
.x7c{left:-821.140423px;}
.x5c{left:-812.032515px;}
.x62{left:-640.524383px;}
.x2d{left:-581.955817px;}
.x2c{left:-518.434526px;}
.x6e{left:-459.488192px;}
.x56{left:-413.594937px;}
.x6d{left:-407.730398px;}
.x83{left:-341.632041px;}
.x53{left:-303.986614px;}
.x30{left:-300.699985px;}
.x5b{left:-269.790038px;}
.x7b{left:-267.395681px;}
.x78{left:-257.915413px;}
.x61{left:-179.437484px;}
.x7f{left:-109.233806px;}
.x73{left:-46.687917px;}
.x4b{left:-38.656030px;}
.x84{left:-35.810413px;}
.x4c{left:-34.095003px;}
.x4a{left:-30.689711px;}
.x14{left:-6.323497px;}
.x55{left:-4.518811px;}
.x1d{left:-3.375148px;}
.x0{left:0.000000px;}
.x16{left:1.745744px;}
.x49{left:3.234724px;}
.x72{left:5.761329px;}
.x93{left:7.041706px;}
.x19{left:8.456041px;}
.x11{left:9.487484px;}
.x3{left:10.799984px;}
.x60{left:13.500000px;}
.x50{left:16.049984px;}
.x10{left:19.537484px;}
.x35{left:20.887484px;}
.x75{left:21.899984px;}
.x37{left:23.099984px;}
.x89{left:24.149984px;}
.x46{left:25.427581px;}
.x27{left:26.887484px;}
.x47{left:29.961683px;}
.x3c{left:31.087484px;}
.x44{left:33.347575px;}
.x13{left:34.875000px;}
.x1a{left:36.737175px;}
.x29{left:39.899984px;}
.x51{left:43.424984px;}
.x45{left:47.839402px;}
.x9c{left:49.387484px;}
.x4d{left:53.574162px;}
.x8b{left:56.774984px;}
.x8c{left:57.937484px;}
.x9d{left:59.437484px;}
.x91{left:63.448302px;}
.x43{left:66.386171px;}
.x1b{left:69.170904px;}
.x8f{left:70.875000px;}
.x69{left:73.374584px;}
.x17{left:76.191706px;}
.x58{left:83.024984px;}
.xa8{left:84.682620px;}
.x5{left:85.724984px;}
.x94{left:89.260979px;}
.x8e{left:93.562484px;}
.x6c{left:100.803437px;}
.xa0{left:103.122459px;}
.x2b{left:105.673437px;}
.x1c{left:107.188782px;}
.x34{left:113.062484px;}
.x18{left:117.197340px;}
.x8d{left:130.912484px;}
.xab{left:134.924984px;}
.x92{left:139.428585px;}
.x25{left:153.899984px;}
.x6a{left:155.903016px;}
.x9f{left:165.824400px;}
.x77{left:193.652562px;}
.x82{left:208.911949px;}
.x39{left:212.369984px;}
.x24{left:214.904984px;}
.x90{left:219.996624px;}
.x52{left:234.317366px;}
.x9b{left:249.074984px;}
.x9e{left:254.160251px;}
.x59{left:261.644984px;}
.x15{left:264.182296px;}
.x97{left:270.268553px;}
.x26{left:288.029984px;}
.x81{left:299.250000px;}
.xa3{left:312.238988px;}
.x28{left:315.704984px;}
.x7d{left:317.263081px;}
.x76{left:318.375000px;}
.x20{left:324.551193px;}
.x66{left:329.625000px;}
.x5d{left:339.786171px;}
.x63{left:345.829234px;}
.x70{left:353.250000px;}
.x1{left:355.019984px;}
.x2{left:356.024984px;}
.x2a{left:358.875000px;}
.x3a{left:373.799984px;}
.x87{left:381.299984px;}
.x3b{left:382.649984px;}
.x6b{left:387.000000px;}
.x80{left:389.929770px;}
.x33{left:393.507364px;}
.xf{left:399.569984px;}
.x38{left:407.024984px;}
.x98{left:415.006941px;}
.x64{left:424.574984px;}
.x99{left:426.237765px;}
.x12{left:430.154984px;}
.x6{left:436.319984px;}
.x57{left:455.615372px;}
.x5e{left:468.029378px;}
.xa4{left:479.454032px;}
.x9a{left:488.235039px;}
.x95{left:489.794599px;}
.xa5{left:492.428909px;}
.x21{left:498.359859px;}
.x88{left:507.044984px;}
.x22{left:511.846361px;}
.x96{left:513.143264px;}
.x71{left:520.958685px;}
.x3f{left:526.319984px;}
.x40{left:534.944984px;}
.x3e{left:543.779984px;}
.x65{left:545.849984px;}
.x67{left:555.254984px;}
.x4f{left:556.499984px;}
.xaa{left:563.044256px;}
.xa6{left:564.053839px;}
.xa1{left:565.855588px;}
.xa7{left:570.404984px;}
.x23{left:586.295604px;}
.x1e{left:588.168394px;}
.xa9{left:591.769013px;}
.xa2{left:592.830101px;}
.x1f{left:616.206572px;}
.x7e{left:649.125000px;}
.x79{left:670.430314px;}
.x5a{left:677.250000px;}
.x6f{left:689.361952px;}
.x68{left:697.500000px;}
.x4{left:706.949984px;}
.x42{left:714.375000px;}
.x2f{left:716.625000px;}
.x7a{left:726.750000px;}
.x48{left:776.250000px;}
.x3d{left:789.974984px;}
.x41{left:801.404984px;}
.x2e{left:828.004679px;}
.x54{left:839.850024px;}
.x86{left:863.774984px;}
.x8a{left:895.754984px;}
.x4e{left:913.619984px;}
.xb{left:929.294984px;}
.x7{left:933.119984px;}
.x36{left:935.249984px;}
.xc{left:943.379984px;}
.xa{left:952.844984px;}
.xd{left:955.874984px;}
.x8{left:957.194984px;}
.xe{left:959.879984px;}
.x9{left:961.874984px;}
.x5f{left:1001.892836px;}
.x74{left:1117.256482px;}
.x85{left:1241.633747px;}
@media print{
.v4{vertical-align:-38.091404pt;}
.v6{vertical-align:-36.610588pt;}
.vf{vertical-align:-33.066667pt;}
.v12{vertical-align:-31.034038pt;}
.v1{vertical-align:-12.000000pt;}
.v9{vertical-align:-7.831645pt;}
.v2{vertical-align:-6.775507pt;}
.vd{vertical-align:-5.877258pt;}
.v7{vertical-align:-3.573333pt;}
.v8{vertical-align:-1.066667pt;}
.v0{vertical-align:0.000000pt;}
.ve{vertical-align:5.938480pt;}
.va{vertical-align:8.073861pt;}
.vc{vertical-align:24.917126pt;}
.v13{vertical-align:26.560000pt;}
.v11{vertical-align:30.957410pt;}
.vb{vertical-align:32.860616pt;}
.v10{vertical-align:34.579135pt;}
.v5{vertical-align:36.701208pt;}
.v3{vertical-align:38.185690pt;}
.ls2b{letter-spacing:-9.295467pt;}
.ls58{letter-spacing:-3.578267pt;}
.ls15{letter-spacing:-2.374373pt;}
.lse{letter-spacing:-2.308800pt;}
.ls30{letter-spacing:-1.815147pt;}
.ls2{letter-spacing:-1.804000pt;}
.ls20{letter-spacing:-1.730133pt;}
.ls33{letter-spacing:-1.600000pt;}
.ls8e{letter-spacing:-1.595813pt;}
.ls12{letter-spacing:-1.410933pt;}
.ls14{letter-spacing:-1.282667pt;}
.ls11{letter-spacing:-1.154400pt;}
.ls85{letter-spacing:-1.153600pt;}
.ls7e{letter-spacing:-1.121867pt;}
.ls8d{letter-spacing:-1.057467pt;}
.ls10{letter-spacing:-1.026133pt;}
.lsf{letter-spacing:-1.024000pt;}
.ls71{letter-spacing:-0.960000pt;}
.ls2d{letter-spacing:-0.770133pt;}
.ls8b{letter-spacing:-0.588933pt;}
.ls7{letter-spacing:-0.513067pt;}
.lsb{letter-spacing:-0.504800pt;}
.ls32{letter-spacing:-0.456800pt;}
.ls18{letter-spacing:-0.448000pt;}
.ls4{letter-spacing:-0.324720pt;}
.ls6{letter-spacing:-0.300667pt;}
.ls1e{letter-spacing:-0.160333pt;}
.ls16{letter-spacing:-0.032067pt;}
.ls0{letter-spacing:0.000000pt;}
.ls5b{letter-spacing:0.001691pt;}
.ls61{letter-spacing:0.001692pt;}
.ls74{letter-spacing:0.001700pt;}
.ls78{letter-spacing:0.002359pt;}
.ls5d{letter-spacing:0.003339pt;}
.ls75{letter-spacing:0.004171pt;}
.ls5e{letter-spacing:0.016695pt;}
.ls5a{letter-spacing:0.016909pt;}
.ls60{letter-spacing:0.016925pt;}
.ls73{letter-spacing:0.016996pt;}
.ls76{letter-spacing:0.020855pt;}
.ls25{letter-spacing:0.022655pt;}
.ls77{letter-spacing:0.023586pt;}
.ls67{letter-spacing:0.035543pt;}
.ls6c{letter-spacing:0.044584pt;}
.ls79{letter-spacing:0.058965pt;}
.ls7d{letter-spacing:0.061600pt;}
.ls66{letter-spacing:0.078867pt;}
.ls4e{letter-spacing:0.087701pt;}
.ls4d{letter-spacing:0.103570pt;}
.ls51{letter-spacing:0.104406pt;}
.ls41{letter-spacing:0.133703pt;}
.ls69{letter-spacing:0.139845pt;}
.ls47{letter-spacing:0.140197pt;}
.ls5c{letter-spacing:0.154886pt;}
.ls62{letter-spacing:0.155031pt;}
.ls49{letter-spacing:0.162604pt;}
.ls5f{letter-spacing:0.166287pt;}
.ls53{letter-spacing:0.171225pt;}
.ls22{letter-spacing:0.172071pt;}
.ls26{letter-spacing:0.174444pt;}
.ls5{letter-spacing:0.180400pt;}
.ls3c{letter-spacing:0.184891pt;}
.ls3e{letter-spacing:0.214442pt;}
.ls46{letter-spacing:0.230629pt;}
.ls4f{letter-spacing:0.254750pt;}
.ls48{letter-spacing:0.262640pt;}
.ls21{letter-spacing:0.288400pt;}
.ls72{letter-spacing:0.293600pt;}
.ls45{letter-spacing:0.299373pt;}
.ls4c{letter-spacing:0.305495pt;}
.ls43{letter-spacing:0.323861pt;}
.ls3b{letter-spacing:0.328374pt;}
.ls52{letter-spacing:0.338274pt;}
.ls38{letter-spacing:0.346369pt;}
.ls9{letter-spacing:0.352000pt;}
.ls3{letter-spacing:0.360800pt;}
.ls37{letter-spacing:0.380667pt;}
.ls34{letter-spacing:0.384000pt;}
.ls3d{letter-spacing:0.400464pt;}
.ls3a{letter-spacing:0.402886pt;}
.ls42{letter-spacing:0.427107pt;}
.ls50{letter-spacing:0.448393pt;}
.ls2c{letter-spacing:0.480800pt;}
.ls1a{letter-spacing:0.481067pt;}
.ls2e{letter-spacing:0.532933pt;}
.ls57{letter-spacing:0.540547pt;}
.lsc{letter-spacing:0.577200pt;}
.ls4b{letter-spacing:0.605480pt;}
.ls31{letter-spacing:0.610133pt;}
.ls6e{letter-spacing:0.624179pt;}
.ls4a{letter-spacing:0.629969pt;}
.ls82{letter-spacing:0.641333pt;}
.ls54{letter-spacing:0.672372pt;}
.ls6d{letter-spacing:0.673803pt;}
.ls6b{letter-spacing:0.711867pt;}
.ls40{letter-spacing:0.750062pt;}
.ls44{letter-spacing:0.752411pt;}
.ls36{letter-spacing:0.776560pt;}
.ls65{letter-spacing:0.781733pt;}
.ls8c{letter-spacing:0.782440pt;}
.ls6a{letter-spacing:0.788494pt;}
.ls3f{letter-spacing:0.798505pt;}
.ls64{letter-spacing:0.841867pt;}
.ls24{letter-spacing:0.875914pt;}
.ls28{letter-spacing:0.896234pt;}
.ls63{letter-spacing:0.897493pt;}
.ls56{letter-spacing:0.931298pt;}
.ls27{letter-spacing:0.932483pt;}
.ls55{letter-spacing:0.956355pt;}
.ls23{letter-spacing:0.970199pt;}
.ls39{letter-spacing:1.000351pt;}
.ls1c{letter-spacing:1.022267pt;}
.ls80{letter-spacing:1.025707pt;}
.lsd{letter-spacing:1.026133pt;}
.ls17{letter-spacing:1.088000pt;}
.ls13{letter-spacing:1.218533pt;}
.ls59{letter-spacing:1.240973pt;}
.ls19{letter-spacing:1.262800pt;}
.ls7c{letter-spacing:1.280000pt;}
.ls81{letter-spacing:1.282133pt;}
.ls1d{letter-spacing:1.282667pt;}
.ls35{letter-spacing:1.294267pt;}
.ls7a{letter-spacing:1.346800pt;}
.ls2f{letter-spacing:1.407253pt;}
.ls7b{letter-spacing:1.410933pt;}
.ls7f{letter-spacing:1.442400pt;}
.ls1b{letter-spacing:1.515360pt;}
.ls1{letter-spacing:1.539413pt;}
.ls29{letter-spacing:1.731600pt;}
.ls2a{letter-spacing:1.826533pt;}
.ls70{letter-spacing:1.856000pt;}
.ls68{letter-spacing:1.859867pt;}
.ls6f{letter-spacing:1.869840pt;}
.ls84{letter-spacing:1.946704pt;}
.ls8f{letter-spacing:1.988996pt;}
.ls8{letter-spacing:2.052267pt;}
.lsa{letter-spacing:2.355733pt;}
.ls88{letter-spacing:2.359467pt;}
.ls1f{letter-spacing:2.369871pt;}
.ls8a{letter-spacing:2.692267pt;}
.ls89{letter-spacing:3.028800pt;}
.ls83{letter-spacing:38.353333pt;}
.ls86{letter-spacing:94.347733pt;}
.ls87{letter-spacing:94.388533pt;}
.ws51{word-spacing:-113.353867pt;}
.ws3b{word-spacing:-100.981096pt;}
.ws4e{word-spacing:-100.440274pt;}
.ws50{word-spacing:-100.228233pt;}
.ws4f{word-spacing:-85.981070pt;}
.ws4d{word-spacing:-81.683737pt;}
.ws45{word-spacing:-81.340717pt;}
.ws3e{word-spacing:-81.264398pt;}
.ws41{word-spacing:-80.238285pt;}
.ws30{word-spacing:-76.133333pt;}
.ws49{word-spacing:-41.736240pt;}
.ws4c{word-spacing:-39.866400pt;}
.ws5a{word-spacing:-39.836267pt;}
.ws53{word-spacing:-37.662667pt;}
.ws55{word-spacing:-37.502400pt;}
.ws54{word-spacing:-37.245973pt;}
.ws3f{word-spacing:-37.117760pt;}
.ws56{word-spacing:-36.250400pt;}
.ws32{word-spacing:-36.220267pt;}
.ws52{word-spacing:-35.098400pt;}
.ws3a{word-spacing:-25.245274pt;}
.ws33{word-spacing:-24.302323pt;}
.ws1b{word-spacing:-22.708000pt;}
.ws1d{word-spacing:-21.726133pt;}
.ws8{word-spacing:-21.369867pt;}
.ws5d{word-spacing:-20.668667pt;}
.ws58{word-spacing:-20.572533pt;}
.ws5c{word-spacing:-19.796573pt;}
.ws5b{word-spacing:-19.014133pt;}
.ws36{word-spacing:-18.427653pt;}
.ws0{word-spacing:-18.110133pt;}
.ws39{word-spacing:-17.746680pt;}
.ws21{word-spacing:-17.739067pt;}
.ws18{word-spacing:-17.598779pt;}
.ws23{word-spacing:-17.206133pt;}
.ws27{word-spacing:-16.749333pt;}
.wsf{word-spacing:-16.546400pt;}
.ws48{word-spacing:-16.354000pt;}
.ws4a{word-spacing:-16.320000pt;}
.ws1c{word-spacing:-16.225733pt;}
.ws22{word-spacing:-16.033333pt;}
.ws34{word-spacing:-15.934169pt;}
.ws11{word-spacing:-15.712667pt;}
.ws14{word-spacing:-15.552000pt;}
.wsa{word-spacing:-15.520267pt;}
.ws57{word-spacing:-15.135467pt;}
.ws17{word-spacing:-15.105493pt;}
.ws9{word-spacing:-15.071333pt;}
.ws2f{word-spacing:-14.848000pt;}
.ws5e{word-spacing:-14.770385pt;}
.ws2{word-spacing:-14.768747pt;}
.ws10{word-spacing:-14.494133pt;}
.ws19{word-spacing:-14.464000pt;}
.ws59{word-spacing:-14.456322pt;}
.ws42{word-spacing:-14.432000pt;}
.ws46{word-spacing:-14.371867pt;}
.ws16{word-spacing:-14.071200pt;}
.ws15{word-spacing:-14.016000pt;}
.ws6{word-spacing:-13.981067pt;}
.ws43{word-spacing:-13.590133pt;}
.ws4b{word-spacing:-13.504000pt;}
.wsd{word-spacing:-13.468000pt;}
.wsc{word-spacing:-13.440000pt;}
.ws5{word-spacing:-13.409733pt;}
.wse{word-spacing:-13.339733pt;}
.ws3{word-spacing:-13.229333pt;}
.ws12{word-spacing:-13.211467pt;}
.ws13{word-spacing:-13.083200pt;}
.ws2d{word-spacing:-12.769379pt;}
.ws2a{word-spacing:-12.695123pt;}
.wsb{word-spacing:-12.185333pt;}
.ws37{word-spacing:-12.082357pt;}
.ws2c{word-spacing:-11.660122pt;}
.ws29{word-spacing:-11.638741pt;}
.ws7{word-spacing:-1.068933pt;}
.ws1f{word-spacing:-0.558933pt;}
.ws31{word-spacing:-0.424533pt;}
.ws4{word-spacing:-0.420933pt;}
.ws24{word-spacing:-0.266533pt;}
.ws3c{word-spacing:-0.100981pt;}
.ws35{word-spacing:-0.097209pt;}
.ws44{word-spacing:-0.081341pt;}
.ws3d{word-spacing:-0.081264pt;}
.ws40{word-spacing:-0.080238pt;}
.ws38{word-spacing:-0.073711pt;}
.ws1{word-spacing:0.000000pt;}
.ws20{word-spacing:0.560933pt;}
.ws2e{word-spacing:3.104000pt;}
.ws28{word-spacing:16.243072pt;}
.ws1e{word-spacing:18.193333pt;}
.ws47{word-spacing:102.166889pt;}
.ws25{word-spacing:108.317200pt;}
.ws2b{word-spacing:138.021692pt;}
.ws26{word-spacing:192.890133pt;}
.ws1a{word-spacing:225.080000pt;}
._29{margin-left:-5097.306348pt;}
._34{margin-left:-4899.146839pt;}
._11d{margin-left:-4857.924473pt;}
._11e{margin-left:-4848.289394pt;}
._11a{margin-left:-4843.641886pt;}
._11b{margin-left:-4826.185390pt;}
._10c{margin-left:-4816.834148pt;}
._10f{margin-left:-4791.834451pt;}
._10d{margin-left:-4786.253106pt;}
._116{margin-left:-4780.957197pt;}
._20{margin-left:-4763.695165pt;}
._23{margin-left:-4760.023654pt;}
._118{margin-left:-4744.343898pt;}
._25{margin-left:-4737.357902pt;}
._110{margin-left:-4731.870255pt;}
._10e{margin-left:-4719.287976pt;}
._1f{margin-left:-4706.826491pt;}
._27{margin-left:-4703.056357pt;}
._26{margin-left:-4699.997683pt;}
._22{margin-left:-4696.688869pt;}
._112{margin-left:-4692.196402pt;}
._114{margin-left:-4656.603287pt;}
._113{margin-left:-4649.915409pt;}
._119{margin-left:-4633.937231pt;}
._2b{margin-left:-4578.542287pt;}
._2e{margin-left:-4574.976125pt;}
._24{margin-left:-4561.314236pt;}
._30{margin-left:-4553.191511pt;}
._2a{margin-left:-4523.884401pt;}
._32{margin-left:-4520.223450pt;}
._31{margin-left:-4517.283683pt;}
._2d{margin-left:-4514.103501pt;}
._11c{margin-left:-4501.993329pt;}
._70{margin-left:-4453.713204pt;}
._115{margin-left:-4450.417320pt;}
._11f{margin-left:-4428.540023pt;}
._21{margin-left:-4427.455055pt;}
._2f{margin-left:-4383.991602pt;}
._28{margin-left:-4354.790638pt;}
._117{margin-left:-4345.451638pt;}
._43{margin-left:-4305.305817pt;}
._73{margin-left:-4295.130759pt;}
._e1{margin-left:-4291.778622pt;}
._76{margin-left:-4290.407410pt;}
._109{margin-left:-4286.910289pt;}
._107{margin-left:-4282.800932pt;}
._e2{margin-left:-4276.310819pt;}
._d7{margin-left:-4268.095109pt;}
._fb{margin-left:-4259.084680pt;}
._2c{margin-left:-4255.345304pt;}
._da{margin-left:-4245.856518pt;}
._d8{margin-left:-4240.834504pt;}
._6c{margin-left:-4237.384162pt;}
._df{margin-left:-4236.235150pt;}
._fc{margin-left:-4231.964363pt;}
._103{margin-left:-4227.374719pt;}
._77{margin-left:-4203.987087pt;}
._105{margin-left:-4195.001000pt;}
._c5{margin-left:-4192.036349pt;}
._111{margin-left:-4190.378831pt;}
._33{margin-left:-4185.588434pt;}
._fe{margin-left:-4183.955039pt;}
._d9{margin-left:-4181.574743pt;}
._6b{margin-left:-4176.617532pt;}
._fd{margin-left:-4172.829705pt;}
._6d{margin-left:-4167.036433pt;}
._7b{margin-left:-4164.435937pt;}
._71{margin-left:-4161.726654pt;}
._78{margin-left:-4157.611206pt;}
._46{margin-left:-4152.432581pt;}
._100{margin-left:-4148.875158pt;}
._4a{margin-left:-4147.454017pt;}
._bb{margin-left:-4142.651305pt;}
._dd{margin-left:-4126.031271pt;}
._dc{margin-left:-4120.105295pt;}
._102{margin-left:-4117.403493pt;}
._101{margin-left:-4111.490027pt;}
._e0{margin-left:-4105.964115pt;}
._106{margin-left:-4097.378701pt;}
._3f{margin-left:-4096.264995pt;}
._4b{margin-left:-4063.755940pt;}
._3e{margin-left:-4037.917937pt;}
._6e{margin-left:-4036.434883pt;}
._40{margin-left:-4026.940393pt;}
._51{margin-left:-4025.826691pt;}
._44{margin-left:-4023.109770pt;}
._4c{margin-left:-4017.779730pt;}
._50{margin-left:-4014.952940pt;}
._72{margin-left:-4008.408995pt;}
._e3{margin-left:-3989.051637pt;}
._108{margin-left:-3980.713038pt;}
._7a{margin-left:-3969.783610pt;}
._75{margin-left:-3958.607568pt;}
._de{margin-left:-3943.351312pt;}
._79{margin-left:-3935.699785pt;}
._e4{margin-left:-3923.966340pt;}
._bd{margin-left:-3917.290560pt;}
._10a{margin-left:-3915.765143pt;}
._c0{margin-left:-3914.478695pt;}
._7c{margin-left:-3902.819146pt;}
._41{margin-left:-3901.377902pt;}
._c2{margin-left:-3896.292094pt;}
._45{margin-left:-3874.282346pt;}
._bc{margin-left:-3871.170431pt;}
._74{margin-left:-3870.089670pt;}
._b5{margin-left:-3868.536999pt;}
._c3{margin-left:-3866.031564pt;}
._bf{margin-left:-3863.922703pt;}
._b7{margin-left:-3850.116229pt;}
._104{margin-left:-3842.297848pt;}
._4e{margin-left:-3836.851831pt;}
._48{margin-left:-3825.519776pt;}
._b2{margin-left:-3824.521424pt;}
._b9{margin-left:-3822.238889pt;}
._b8{margin-left:-3819.753063pt;}
._b4{margin-left:-3817.063945pt;}
._4d{margin-left:-3804.895754pt;}
._52{margin-left:-3773.266462pt;}
._c1{margin-left:-3751.899636pt;}
._49{margin-left:-3745.010461pt;}
._47{margin-left:-3741.045559pt;}
._db{margin-left:-3712.920426pt;}
._b6{margin-left:-3707.043109pt;}
._ff{margin-left:-3705.164771pt;}
._f6{margin-left:-3684.728937pt;}
._f7{margin-left:-3677.420546pt;}
._f3{margin-left:-3673.895322pt;}
._f4{margin-left:-3660.654237pt;}
._e7{margin-left:-3653.667716pt;}
._be{margin-left:-3641.934993pt;}
._ea{margin-left:-3634.584083pt;}
._e8{margin-left:-3630.285029pt;}
._f0{margin-left:-3626.347790pt;}
._b3{margin-left:-3598.253903pt;}
._a2{margin-left:-3590.106080pt;}
._eb{margin-left:-3589.100097pt;}
._7d{margin-left:-3586.737603pt;}
._c4{margin-left:-3581.926182pt;}
._e9{margin-left:-3579.556198pt;}
._ed{margin-left:-3559.006722pt;}
._90{margin-left:-3541.394994pt;}
._ba{margin-left:-3538.417022pt;}
._ef{margin-left:-3532.008666pt;}
._ee{margin-left:-3526.935783pt;}
._f2{margin-left:-3514.830342pt;}
._d2{margin-left:-3500.550091pt;}
._d3{margin-left:-3493.606973pt;}
._d0{margin-left:-3490.257940pt;}
._ad{margin-left:-3476.831735pt;}
._89{margin-left:-3473.569540pt;}
._c6{margin-left:-3471.057443pt;}
._b0{margin-left:-3456.333875pt;}
._8d{margin-left:-3453.090912pt;}
._c7{margin-left:-3448.832388pt;}
._ae{margin-left:-3445.922263pt;}
._8b{margin-left:-3442.689069pt;}
._a7{margin-left:-3440.794413pt;}
._82{margin-left:-3437.566030pt;}
._9c{margin-left:-3429.721934pt;}
._a4{margin-left:-3425.844646pt;}
._7f{margin-left:-3422.630290pt;}
._8a{margin-left:-3419.301832pt;}
._f5{margin-left:-3414.748377pt;}
._a8{margin-left:-3412.342087pt;}
._83{margin-left:-3409.140400pt;}
._af{margin-left:-3406.716037pt;}
._8c{margin-left:-3403.519629pt;}
._c8{margin-left:-3400.633884pt;}
._9e{margin-left:-3399.231386pt;}
._95{margin-left:-3394.159679pt;}
._ca{margin-left:-3381.111471pt;}
._92{margin-left:-3379.399173pt;}
._9d{margin-left:-3376.126099pt;}
._a3{margin-left:-3370.763440pt;}
._7e{margin-left:-3367.600766pt;}
._96{margin-left:-3366.076279pt;}
._9f{margin-left:-3360.556533pt;}
._f8{margin-left:-3359.032643pt;}
._cc{margin-left:-3355.462778pt;}
._cb{margin-left:-3350.966237pt;}
._cf{margin-left:-3339.143026pt;}
._91{margin-left:-3325.074515pt;}
._6a{margin-left:-3320.276097pt;}
._aa{margin-left:-3306.941781pt;}
._85{margin-left:-3303.838988pt;}
._a9{margin-left:-3302.712064pt;}
._84{margin-left:-3299.613239pt;}
._f1{margin-left:-3296.008519pt;}
._a5{margin-left:-3286.979117pt;}
._80{margin-left:-3283.895054pt;}
._6f{margin-left:-3272.315245pt;}
._59{margin-left:-3264.510845pt;}
._98{margin-left:-3262.134543pt;}
._97{margin-left:-3257.962152pt;}
._d1{margin-left:-3244.063156pt;}
._93{margin-left:-3242.429082pt;}
._ab{margin-left:-3230.532044pt;}
._86{margin-left:-3227.500944pt;}
._3d{margin-left:-3210.325473pt;}
._cd{margin-left:-3206.897056pt;}
._a6{margin-left:-3200.513935pt;}
._81{margin-left:-3197.511000pt;}
._d4{margin-left:-3191.454894pt;}
._99{margin-left:-3186.760408pt;}
._ec{margin-left:-3178.368525pt;}
._42{margin-left:-3162.925438pt;}
._87{margin-left:-3160.539080pt;}
._ac{margin-left:-3158.789532pt;}
._94{margin-left:-3157.152481pt;}
._88{margin-left:-3155.825745pt;}
._5c{margin-left:-3149.239793pt;}
._60{margin-left:-3144.360960pt;}
._ce{margin-left:-3131.257915pt;}
._9a{margin-left:-3120.644062pt;}
._9b{margin-left:-3115.990241pt;}
._55{margin-left:-3105.161606pt;}
._61{margin-left:-3081.083494pt;}
._54{margin-left:-3062.435872pt;}
._56{margin-left:-3054.105838pt;}
._67{margin-left:-3053.010464pt;}
._5a{margin-left:-3051.236756pt;}
._62{margin-left:-3047.195162pt;}
._66{margin-left:-3044.735478pt;}
._c9{margin-left:-3019.820366pt;}
._57{margin-left:-2958.931477pt;}
._5b{margin-left:-2938.385807pt;}
._64{margin-left:-2909.717031pt;}
._5e{margin-left:-2901.410751pt;}
._63{margin-left:-2884.798313pt;}
._68{margin-left:-2860.779305pt;}
._5f{margin-left:-2840.363180pt;}
._5d{margin-left:-2836.382807pt;}
._b1{margin-left:-2683.759745pt;}
._8e{margin-left:-2681.241663pt;}
._a0{margin-left:-2647.398659pt;}
._53{margin-left:-2434.326891pt;}
._58{margin-left:-2399.297697pt;}
._121{margin-left:-896.492099pt;}
._e6{margin-left:-794.189777pt;}
._10b{margin-left:-792.593861pt;}
._fa{margin-left:-680.636327pt;}
._d6{margin-left:-646.601997pt;}
._120{margin-left:-311.963712pt;}
._e5{margin-left:-276.398843pt;}
._f9{margin-left:-236.608956pt;}
._d5{margin-left:-224.783243pt;}
._8f{margin-left:-223.481219pt;}
._a1{margin-left:-220.671978pt;}
._12{margin-left:-37.534226pt;}
._12d{margin-left:-31.389836pt;}
._123{margin-left:-30.198554pt;}
._135{margin-left:-19.971333pt;}
._4f{margin-left:-12.742138pt;}
._12c{margin-left:-11.018841pt;}
._65{margin-left:-9.978167pt;}
._9{margin-left:-8.278400pt;}
._35{margin-left:-7.232667pt;}
._7{margin-left:-6.121867pt;}
._6{margin-left:-4.644000pt;}
._1{margin-left:-3.205333pt;}
._4{margin-left:-2.223333pt;}
._3{margin-left:-1.284400pt;}
._2{width:0.961600pt;}
._0{width:2.083467pt;}
._5{width:3.427600pt;}
._8{width:4.369440pt;}
._b{width:5.292603pt;}
._e{width:6.191507pt;}
._a{width:7.092927pt;}
._f{width:8.634143pt;}
._10{width:9.763602pt;}
._c{width:10.935370pt;}
._d{width:12.196041pt;}
._15{width:13.606923pt;}
._11{width:14.852107pt;}
._14{width:16.036174pt;}
._13{width:17.579580pt;}
._129{width:31.584616pt;}
._128{width:32.820339pt;}
._132{width:34.500239pt;}
._3c{width:37.431067pt;}
._1b{width:38.845197pt;}
._1a{width:40.064996pt;}
._3a{width:51.676937pt;}
._36{width:62.928224pt;}
._39{width:74.469803pt;}
._37{width:92.311869pt;}
._38{width:97.860363pt;}
._3b{width:137.910715pt;}
._124{width:190.147112pt;}
._12e{width:194.278061pt;}
._16{width:231.480531pt;}
._1e{width:270.084267pt;}
._127{width:398.388281pt;}
._131{width:406.888684pt;}
._12a{width:409.778460pt;}
._126{width:410.874177pt;}
._133{width:418.501843pt;}
._130{width:420.940448pt;}
._19{width:484.330050pt;}
._12b{width:494.533463pt;}
._1c{width:497.948617pt;}
._18{width:500.241803pt;}
._134{width:504.842451pt;}
._122{width:588.606267pt;}
._1d{width:602.153515pt;}
._69{width:734.953436pt;}
._125{width:809.443627pt;}
._12f{width:827.028801pt;}
._17{width:985.397248pt;}
.fs1f{font-size:27.414710pt;}
.fs23{font-size:27.575062pt;}
.fs33{font-size:36.723664pt;}
.fs32{font-size:39.433323pt;}
.fs1d{font-size:41.865976pt;}
.fs21{font-size:41.942884pt;}
.fs8{font-size:44.133333pt;}
.fs1e{font-size:45.665911pt;}
.fs22{font-size:45.933017pt;}
.fs29{font-size:48.133333pt;}
.fs28{font-size:48.329429pt;}
.fs35{font-size:50.775085pt;}
.fs20{font-size:51.569604pt;}
.fs24{font-size:51.664337pt;}
.fs2f{font-size:52.718857pt;}
.fs34{font-size:52.779266pt;}
.fs2d{font-size:53.393043pt;}
.fs31{font-size:53.443187pt;}
.fs47{font-size:53.606690pt;}
.fs51{font-size:54.771296pt;}
.fs4{font-size:60.133333pt;}
.fs38{font-size:60.491086pt;}
.fs3b{font-size:61.402152pt;}
.fs26{font-size:63.736676pt;}
.fs42{font-size:63.966025pt;}
.fs7{font-size:64.000000pt;}
.fs5{font-size:64.133333pt;}
.fse{font-size:65.259498pt;}
.fs4c{font-size:65.355688pt;}
.fs2b{font-size:66.143036pt;}
.fs48{font-size:69.667311pt;}
.fs52{font-size:71.180834pt;}
.fs1a{font-size:71.537451pt;}
.fs27{font-size:73.710614pt;}
.fs17{font-size:74.430980pt;}
.fs3{font-size:76.133333pt;}
.fs1c{font-size:76.266667pt;}
.fs9{font-size:77.870704pt;}
.fs2{font-size:80.133333pt;}
.fs2e{font-size:80.238285pt;}
.fs2c{font-size:81.264398pt;}
.fs30{font-size:81.340717pt;}
.fs3d{font-size:81.683737pt;}
.fs6{font-size:84.133333pt;}
.fs1b{font-size:84.266667pt;}
.fs37{font-size:84.650127pt;}
.fsf{font-size:84.811312pt;}
.fs3f{font-size:85.981070pt;}
.fs3a{font-size:86.043652pt;}
.fs36{font-size:92.067645pt;}
.fs39{font-size:93.743152pt;}
.fs46{font-size:95.951646pt;}
.fs14{font-size:96.133333pt;}
.fs12{font-size:96.266667pt;}
.fs25{font-size:97.209290pt;}
.fs50{font-size:98.036197pt;}
.fs19{font-size:100.108209pt;}
.fs40{font-size:100.228233pt;}
.fs3e{font-size:100.440274pt;}
.fs2a{font-size:100.981096pt;}
.fs16{font-size:104.157361pt;}
.fs13{font-size:108.133333pt;}
.fs18{font-size:108.880250pt;}
.fs15{font-size:113.284212pt;}
.fs41{font-size:113.353867pt;}
.fsd{font-size:116.809231pt;}
.fs45{font-size:117.577931pt;}
.fs4f{font-size:120.132314pt;}
.fsc{font-size:143.136552pt;}
.fs44{font-size:149.558336pt;}
.fs4e{font-size:152.807493pt;}
.fs0{font-size:160.266667pt;}
.fs1{font-size:160.400000pt;}
.fs49{font-size:162.765706pt;}
.fs53{font-size:166.301793pt;}
.fs4b{font-size:176.266667pt;}
.fs3c{font-size:176.400000pt;}
.fsb{font-size:182.068729pt;}
.fs43{font-size:192.033696pt;}
.fs4d{font-size:196.205631pt;}
.fs10{font-size:198.147064pt;}
.fs4a{font-size:232.819014pt;}
.fsa{font-size:233.777213pt;}
.fs54{font-size:237.877010pt;}
.fs55{font-size:240.400000pt;}
.fs11{font-size:283.428280pt;}
.y1de{bottom:-1463.576266pt;}
.y1dd{bottom:-1430.603169pt;}
.y1f4{bottom:-1334.702872pt;}
.y194{bottom:-1319.600449pt;}
.y193{bottom:-1290.383740pt;}
.y1f3{bottom:-1269.464255pt;}
.y1f2{bottom:-1236.679844pt;}
.y1aa{bottom:-1205.408677pt;}
.y1f1{bottom:-1203.706747pt;}
.y1f0{bottom:-1171.464812pt;}
.y1a9{bottom:-1147.602227pt;}
.y1ef{bottom:-1138.491715pt;}
.y1a8{bottom:-1118.552710pt;}
.y1ee{bottom:-1106.226194pt;}
.y1c5{bottom:-1100.696193pt;}
.y1a7{bottom:-1089.336001pt;}
.y1ed{bottom:-1073.276683pt;}
.y1c4{bottom:-1071.541164pt;}
.y1a6{bottom:-1060.767159pt;}
.y17b{bottom:-1060.137975pt;}
.y1ec{bottom:-1041.011163pt;}
.y17a{bottom:-1036.394284pt;}
.y1a5{bottom:-1031.550450pt;}
.y116{bottom:-1011.710273pt;}
.yfd{bottom:-1011.273373pt;}
.y1eb{bottom:-1008.038065pt;}
.y1a4{bottom:-1002.960710pt;}
.y115{bottom:-988.336657pt;}
.yfc{bottom:-987.600848pt;}
.y1db{bottom:-986.745493pt;}
.y1ea{bottom:-975.772545pt;}
.y1a3{bottom:-973.764900pt;}
.y191{bottom:-967.270738pt;}
.y1ad{bottom:-949.656090pt;}
.y1a2{bottom:-945.175159pt;}
.y1e9{bottom:-942.752275pt;}
.y1da{bottom:-929.061079pt;}
.y1ac{bottom:-924.645366pt;}
.y190{bottom:-920.276245pt;}
.y1a1{bottom:-915.958450pt;}
.y12b{bottom:-915.360889pt;}
.y112{bottom:-913.674933pt;}
.y1e8{bottom:-910.486755pt;}
.y1d9{bottom:-900.072889pt;}
.y18f{bottom:-896.651527pt;}
.y12a{bottom:-892.020664pt;}
.y111{bottom:-890.053135pt;}
.y1a0{bottom:-887.368709pt;}
.y1e7{bottom:-877.537243pt;}
.y18e{bottom:-872.890840pt;}
.y1d8{bottom:-870.938714pt;}
.y129{bottom:-869.181302pt;}
.y110{bottom:-866.921696pt;}
.y19f{bottom:-858.110203pt;}
.y1c3{bottom:-851.903162pt;}
.y18d{bottom:-849.640038pt;}
.y128{bottom:-845.857772pt;}
.y1e6{bottom:-845.271723pt;}
.y10f{bottom:-843.282988pt;}
.y1d7{bottom:-842.409330pt;}
.y19e{bottom:-829.520462pt;}
.y18c{bottom:-825.896347pt;}
.y127{bottom:-823.018410pt;}
.y10e{bottom:-820.151549pt;}
.y1d6{bottom:-813.254301pt;}
.y1e5{bottom:-812.298626pt;}
.y18b{bottom:-802.645545pt;}
.y1c2{bottom:-802.418427pt;}
.y19d{bottom:-800.324652pt;}
.y126{bottom:-799.678185pt;}
.y10d{bottom:-796.529751pt;}
.y1d5{bottom:-784.724916pt;}
.y1e4{bottom:-780.033105pt;}
.y18a{bottom:-778.884857pt;}
.y1c1{bottom:-777.550826pt;}
.y125{bottom:-776.838823pt;}
.y10c{bottom:-773.398312pt;}
.y19c{bottom:-771.734911pt;}
.yb2{bottom:-755.814344pt;}
.y189{bottom:-755.634056pt;}
.y1d4{bottom:-755.590742pt;}
.y124{bottom:-753.515294pt;}
.y1c0{bottom:-752.540103pt;}
.y10b{bottom:-749.759604pt;}
.y1e3{bottom:-747.083594pt;}
.y19b{bottom:-742.518202pt;}
.y188{bottom:-731.890364pt;}
.y123{bottom:-730.675932pt;}
.y1bf{bottom:-728.083981pt;}
.yb1{bottom:-727.697122pt;}
.y1d3{bottom:-727.061357pt;}
.y10a{bottom:-726.645074pt;}
.y1e2{bottom:-714.818073pt;}
.y19a{bottom:-713.928462pt;}
.y187{bottom:-708.639563pt;}
.y122{bottom:-707.335706pt;}
.y1be{bottom:-703.073258pt;}
.y109{bottom:-703.006367pt;}
.yc7{bottom:-698.146789pt;}
.y1d2{bottom:-697.906328pt;}
.y186{bottom:-684.844883pt;}
.y199{bottom:-684.732652pt;}
.y121{bottom:-684.496345pt;}
.y1e1{bottom:-681.844976pt;}
.y108{bottom:-679.874928pt;}
.y1bd{bottom:-678.599245pt;}
.y1d1{bottom:-669.376944pt;}
.yc6{bottom:-665.972452pt;}
.y185{bottom:-661.594081pt;}
.y120{bottom:-661.172815pt;}
.y107{bottom:-656.253129pt;}
.y198{bottom:-656.142911pt;}
.y1bc{bottom:-653.606412pt;}
.y1e0{bottom:-649.603041pt;}
.y1d0{bottom:-640.180205pt;}
.y11f{bottom:-638.333453pt;}
.y184{bottom:-637.833394pt;}
.yc5{bottom:-633.495345pt;}
.y106{bottom:-633.121690pt;}
.y1bb{bottom:-629.132400pt;}
.y197{bottom:-626.926202pt;}
.y11e{bottom:-614.993228pt;}
.y183{bottom:-614.599588pt;}
.y1cf{bottom:-611.650820pt;}
.y105{bottom:-609.482983pt;}
.y1ba{bottom:-604.121676pt;}
.yc4{bottom:-599.928266pt;}
.y196{bottom:-598.357360pt;}
.y11d{bottom:-592.170561pt;}
.y182{bottom:-590.838901pt;}
.y104{bottom:-586.351544pt;}
.y1ce{bottom:-582.516646pt;}
.y1b9{bottom:-579.647664pt;}
.ycb{bottom:-571.854166pt;}
.y11c{bottom:-568.830336pt;}
.yc3{bottom:-567.915406pt;}
.y181{bottom:-567.588099pt;}
.y130{bottom:-564.730691pt;}
.y103{bottom:-562.729745pt;}
.y1df{bottom:-562.170085pt;}
.y1b8{bottom:-554.601160pt;}
.y1cd{bottom:-553.987261pt;}
.yca{bottom:-550.533799pt;}
.y11b{bottom:-545.990974pt;}
.y180{bottom:-543.844408pt;}
.y12f{bottom:-541.035934pt;}
.y102{bottom:-539.598306pt;}
.ye5{bottom:-536.206267pt;}
.yc2{bottom:-535.438299pt;}
.y1b7{bottom:-530.127148pt;}
.ye0{bottom:-528.126752pt;}
.y158{bottom:-524.858505pt;}
.y1cc{bottom:-524.832232pt;}
.y11a{bottom:-522.667445pt;}
.y195{bottom:-520.885014pt;}
.y17f{bottom:-520.593606pt;}
.y101{bottom:-515.959599pt;}
.ye4{bottom:-506.868294pt;}
.y1b6{bottom:-505.134315pt;}
.ydf{bottom:-503.730008pt;}
.yc1{bottom:-503.263962pt;}
.y119{bottom:-499.828083pt;}
.y157{bottom:-498.077280pt;}
.y17e{bottom:-496.832918pt;}
.y1cb{bottom:-496.323703pt;}
.y100{bottom:-492.828160pt;}
.y1b5{bottom:-480.660302pt;}
.yde{bottom:-479.103684pt;}
.y165{bottom:-476.928158pt;}
.y118{bottom:-476.487858pt;}
.yfa{bottom:-476.131285pt;}
.y17d{bottom:-473.582117pt;}
.yc0{bottom:-471.251101pt;}
.yff{bottom:-469.206361pt;}
.y1ca{bottom:-467.168673pt;}
.y145{bottom:-467.057517pt;}
.y117{bottom:-458.039396pt;}
.y1b4{bottom:-455.649579pt;}
.ydd{bottom:-453.650870pt;}
.yfe{bottom:-450.521975pt;}
.y144{bottom:-443.396609pt;}
.yf9{bottom:-442.846780pt;}
.ybf{bottom:-439.238241pt;}
.y1c9{bottom:-438.639289pt;}
.y1b3{bottom:-431.175566pt;}
.ydc{bottom:-429.376569pt;}
.y143{bottom:-420.243446pt;}
.y17c{bottom:-410.594200pt;}
.y1c8{bottom:-409.505115pt;}
.yf8{bottom:-409.102890pt;}
.ybe{bottom:-407.205196pt;}
.y1b2{bottom:-406.182733pt;}
.ydb{bottom:-404.750245pt;}
.y142{bottom:-396.599463pt;}
.y1b1{bottom:-381.708721pt;}
.y1c7{bottom:-380.975730pt;}
.yda{bottom:-380.353501pt;}
.ybd{bottom:-375.192336pt;}
.yf7{bottom:-374.273182pt;}
.y141{bottom:-373.446300pt;}
.y6b{bottom:-357.224769pt;}
.y1b0{bottom:-356.697998pt;}
.yd9{bottom:-356.079200pt;}
.y140{bottom:-349.785393pt;}
.ybc{bottom:-343.017999pt;}
.yf6{bottom:-341.051320pt;}
.y7b{bottom:-340.392377pt;}
.y1af{bottom:-332.241876pt;}
.yd8{bottom:-331.804899pt;}
.y13f{bottom:-326.632230pt;}
.y6a{bottom:-324.271933pt;}
.ybb{bottom:-311.005139pt;}
.y7a{bottom:-308.743249pt;}
.yd7{bottom:-307.515293pt;}
.yf5{bottom:-307.140381pt;}
.y1c6{bottom:-303.666937pt;}
.y13e{bottom:-302.988247pt;}
.y78{bottom:-298.225521pt;}
.y88{bottom:-283.709400pt;}
.yd6{bottom:-283.240992pt;}
.y13d{bottom:-279.835084pt;}
.yba{bottom:-278.992278pt;}
.yf4{bottom:-273.876757pt;}
.y1ae{bottom:-265.922311pt;}
.yd5{bottom:-258.844248pt;}
.y13c{bottom:-256.174176pt;}
.yf3{bottom:-240.592251pt;}
.yd4{bottom:-234.569947pt;}
.y13b{bottom:-233.021014pt;}
.yb9{bottom:-227.985659pt;}
.yd3{bottom:-210.295646pt;}
.y13a{bottom:-209.377031pt;}
.yf2{bottom:-207.359949pt;}
.y139{bottom:-186.223868pt;}
.yf1{bottom:-173.927188pt;}
.yd2{bottom:-171.619002pt;}
.yaa{bottom:-171.023619pt;}
.y138{bottom:-162.569730pt;}
.ya1{bottom:-152.060554pt;}
.yf0{bottom:-140.646859pt;}
.y137{bottom:-139.419952pt;}
.ya2{bottom:-116.966545pt;}
.y136{bottom:-115.765814pt;}
.yef{bottom:-107.368618pt;}
.ya7{bottom:-100.346048pt;}
.y135{bottom:-92.614344pt;}
.yee{bottom:-74.140491pt;}
.y134{bottom:-68.960206pt;}
.ya8{bottom:-47.041509pt;}
.y133{bottom:-45.810428pt;}
.ya3{bottom:-45.589036pt;}
.y168{bottom:-45.425497pt;}
.y4a{bottom:-43.469019pt;}
.ya9{bottom:-42.663861pt;}
.yed{bottom:-40.862250pt;}
.y279{bottom:-36.482845pt;}
.y231{bottom:-35.707122pt;}
.y4c{bottom:-29.438957pt;}
.y27b{bottom:-24.707709pt;}
.y233{bottom:-24.182402pt;}
.y132{bottom:-22.156291pt;}
.y49{bottom:-19.823325pt;}
.y167{bottom:-18.189583pt;}
.y278{bottom:-16.637377pt;}
.y230{bottom:-16.283630pt;}
.y131{bottom:-3.459096pt;}
.y0{bottom:0.000000pt;}
.ya6{bottom:0.603848pt;}
.y22b{bottom:0.906482pt;}
.y273{bottom:0.926141pt;}
.y44{bottom:1.103524pt;}
.y175{bottom:3.320361pt;}
.y154{bottom:3.680037pt;}
.y22f{bottom:4.693869pt;}
.y277{bottom:4.795880pt;}
.y9f{bottom:5.340468pt;}
.y48{bottom:5.714194pt;}
.y156{bottom:6.000133pt;}
.y1f9{bottom:8.666667pt;}
.y207{bottom:9.733333pt;}
.y292{bottom:10.000133pt;}
.y177{bottom:10.066667pt;}
.y22d{bottom:10.197543pt;}
.y275{bottom:10.419050pt;}
.y1f7{bottom:10.833333pt;}
.y155{bottom:10.933333pt;}
.yec{bottom:12.114404pt;}
.y46{bottom:12.414239pt;}
.y24{bottom:12.866667pt;}
.ya5{bottom:13.419392pt;}
.y2ab{bottom:13.868013pt;}
.y2ad{bottom:14.066547pt;}
.y26{bottom:14.166667pt;}
.y92{bottom:14.200000pt;}
.y2ac{bottom:14.496507pt;}
.y1fc{bottom:14.566667pt;}
.y256{bottom:15.000000pt;}
.y272{bottom:18.868013pt;}
.y27a{bottom:19.066547pt;}
.y276{bottom:19.496507pt;}
.y16{bottom:20.833333pt;}
.y148{bottom:22.001597pt;}
.y98{bottom:24.267954pt;}
.y254{bottom:24.533333pt;}
.y1ab{bottom:25.000000pt;}
.ya4{bottom:25.763389pt;}
.y22c{bottom:26.512453pt;}
.y274{bottom:27.088401pt;}
.y12e{bottom:28.334667pt;}
.ye2{bottom:28.633333pt;}
.y89{bottom:29.666667pt;}
.y7{bottom:31.033333pt;}
.y45{bottom:32.275618pt;}
.y93{bottom:32.333333pt;}
.y114{bottom:36.000000pt;}
.y147{bottom:37.695267pt;}
.y15{bottom:39.866667pt;}
.y149{bottom:39.984392pt;}
.y247{bottom:40.594909pt;}
.y152{bottom:41.084275pt;}
.y28f{bottom:41.476850pt;}
.y60{bottom:49.419244pt;}
.ye1{bottom:51.666667pt;}
.y153{bottom:51.957881pt;}
.y151{bottom:52.338610pt;}
.y253{bottom:53.566667pt;}
.y99{bottom:54.353723pt;}
.y229{bottom:55.807918pt;}
.y298{bottom:56.172147pt;}
.y2aa{bottom:57.020213pt;}
.y271{bottom:57.020346pt;}
.y14{bottom:58.900000pt;}
.yaf{bottom:60.833333pt;}
.y25c{bottom:61.172147pt;}
.y150{bottom:63.594073pt;}
.y201{bottom:65.033333pt;}
.y2ae{bottom:65.333333pt;}
.y42{bottom:67.939221pt;}
.y246{bottom:69.308681pt;}
.y290{bottom:70.333333pt;}
.y245{bottom:70.700097pt;}
.y28e{bottom:70.814428pt;}
.y28d{bottom:72.236073pt;}
.y14a{bottom:73.198021pt;}
.y6{bottom:74.133333pt;}
.y14f{bottom:74.849537pt;}
.y9c{bottom:75.886827pt;}
.ye3{bottom:76.331987pt;}
.y69{bottom:82.000000pt;}
.yae{bottom:83.866667pt;}
.y5f{bottom:84.374700pt;}
.y79{bottom:85.000000pt;}
.y228{bottom:85.298901pt;}
.y5e{bottom:86.068577pt;}
.y14e{bottom:86.103308pt;}
.y19{bottom:86.533333pt;}
.y2a9{bottom:87.151887pt;}
.y270{bottom:87.152020pt;}
.yb0{bottom:90.000000pt;}
.y5{bottom:96.166667pt;}
.y244{bottom:99.023959pt;}
.y28c{bottom:101.175271pt;}
.y41{bottom:103.840835pt;}
.y18{bottom:105.566667pt;}
.y14b{bottom:106.455645pt;}
.y20d{bottom:112.233333pt;}
.y227{bottom:114.693383pt;}
.y2a8{bottom:117.184965pt;}
.y26f{bottom:117.185099pt;}
.y4{bottom:118.200000pt;}
.y9a{bottom:118.415920pt;}
.y243{bottom:118.610718pt;}
.y5d{bottom:120.549366pt;}
.y1dc{bottom:121.000000pt;}
.y28b{bottom:121.187552pt;}
.y17{bottom:124.600000pt;}
.y9d{bottom:129.093625pt;}
.y8d{bottom:130.733333pt;}
.y90{bottom:131.066667pt;}
.y9e{bottom:133.463246pt;}
.yc9{bottom:136.000000pt;}
.y20c{bottom:138.306667pt;}
.y40{bottom:139.624973pt;}
.y14c{bottom:139.670402pt;}
.y226{bottom:143.797064pt;}
.y5c{bottom:144.393816pt;}
.y242{bottom:146.712892pt;}
.y2a7{bottom:146.920924pt;}
.y26e{bottom:146.921057pt;}
.y28a{bottom:149.900247pt;}
.y3{bottom:151.240000pt;}
.y1c{bottom:152.226667pt;}
.y252{bottom:156.440000pt;}
.y20b{bottom:164.333333pt;}
.y1b{bottom:171.266667pt;}
.y94{bottom:172.026667pt;}
.y14d{bottom:172.885723pt;}
.y225{bottom:173.320648pt;}
.y1ff{bottom:173.866667pt;}
.y3f{bottom:175.055095pt;}
.y64{bottom:175.933333pt;}
.y2a6{bottom:177.085908pt;}
.y26d{bottom:177.086041pt;}
.y5b{bottom:178.604729pt;}
.y9b{bottom:182.478116pt;}
.y1fa{bottom:184.426667pt;}
.y63{bottom:186.466667pt;}
.y1a{bottom:190.306667pt;}
.y251{bottom:191.506667pt;}
.y2{bottom:194.333333pt;}
.y146{bottom:195.733333pt;}
.y291{bottom:195.973333pt;}
.y20a{bottom:200.400000pt;}
.y66{bottom:201.866667pt;}
.y224{bottom:202.426936pt;}
.y2a5{bottom:206.824531pt;}
.y26c{bottom:206.824664pt;}
.y3e{bottom:210.996397pt;}
.y192{bottom:214.000000pt;}
.y250{bottom:216.573333pt;}
.y97{bottom:222.000000pt;}
.y1f6{bottom:223.240000pt;}
.y209{bottom:226.466667pt;}
.y166{bottom:227.000000pt;}
.y1e{bottom:227.360000pt;}
.y223{bottom:231.820115pt;}
.y2a4{bottom:236.856277pt;}
.y26b{bottom:236.856410pt;}
.y1{bottom:237.400000pt;}
.y179{bottom:241.000000pt;}
.y24f{bottom:242.600000pt;}
.y96{bottom:244.693333pt;}
.yfb{bottom:245.000000pt;}
.y1d{bottom:246.400000pt;}
.y3d{bottom:246.429695pt;}
.y25{bottom:252.133333pt;}
.y222{bottom:261.017687pt;}
.y2a3{bottom:266.688167pt;}
.y26a{bottom:266.688300pt;}
.y24e{bottom:267.666667pt;}
.yab{bottom:269.106667pt;}
.y164{bottom:277.639562pt;}
.y249{bottom:280.893333pt;}
.y3c{bottom:282.212245pt;}
.y23{bottom:282.773333pt;}
.y21{bottom:284.706667pt;}
.y221{bottom:290.410866pt;}
.y2a2{bottom:296.719913pt;}
.y269{bottom:296.720046pt;}
.y24d{bottom:297.693333pt;}
.y20{bottom:303.733333pt;}
.y3b{bottom:317.756669pt;}
.y220{bottom:319.517155pt;}
.y91{bottom:320.866667pt;}
.y95{bottom:321.506667pt;}
.y1f{bottom:322.773333pt;}
.yd1{bottom:323.540005pt;}
.y8f{bottom:324.573333pt;}
.y2a1{bottom:326.458536pt;}
.y268{bottom:326.458670pt;}
.y163{bottom:330.627308pt;}
.y8c{bottom:331.200000pt;}
.y24c{bottom:331.773333pt;}
.y8b{bottom:340.573333pt;}
.y62{bottom:342.733333pt;}
.y21f{bottom:349.001617pt;}
.y20e{bottom:350.000000pt;}
.y3a{bottom:353.539219pt;}
.y22a{bottom:353.785733pt;}
.y232{bottom:353.980133pt;}
.y22e{bottom:354.400933pt;}
.y2a0{bottom:356.583548pt;}
.y267{bottom:356.583682pt;}
.y24b{bottom:357.840000pt;}
.y13{bottom:358.773333pt;}
.yc{bottom:360.106667pt;}
.yd0{bottom:365.889936pt;}
.yac{bottom:366.866667pt;}
.y27{bottom:371.000000pt;}
.y43{bottom:375.608667pt;}
.y4b{bottom:375.845200pt;}
.y47{bottom:376.357600pt;}
.y21e{bottom:378.433917pt;}
.y241{bottom:380.152461pt;}
.y162{bottom:383.595897pt;}
.y29f{bottom:386.655266pt;}
.y266{bottom:386.655399pt;}
.y12{bottom:387.800000pt;}
.y289{bottom:388.411334pt;}
.y39{bottom:388.972517pt;}
.y214{bottom:395.190400pt;}
.ya0{bottom:396.000000pt;}
.y200{bottom:396.933333pt;}
.y240{bottom:401.447519pt;}
.y21d{bottom:407.527165pt;}
.ycf{bottom:408.224562pt;}
.y288{bottom:410.169027pt;}
.y248{bottom:411.266667pt;}
.y208{bottom:413.226667pt;}
.y12d{bottom:413.640000pt;}
.y204{bottom:416.266667pt;}
.y29e{bottom:416.380565pt;}
.y265{bottom:416.380699pt;}
.y11{bottom:416.866667pt;}
.y1f5{bottom:419.506667pt;}
.yd{bottom:420.466667pt;}
.ya{bottom:423.360000pt;}
.y68{bottom:424.506667pt;}
.y38{bottom:424.866193pt;}
.yb8{bottom:425.028245pt;}
.y2d{bottom:426.013733pt;}
.y23f{bottom:431.557923pt;}
.y61{bottom:434.026667pt;}
.y161{bottom:436.583643pt;}
.y21c{bottom:437.024668pt;}
.y12c{bottom:440.866667pt;}
.y287{bottom:440.933580pt;}
.y8e{bottom:442.466667pt;}
.y9{bottom:444.173333pt;}
.y10{bottom:445.933333pt;}
.y29d{bottom:446.518901pt;}
.y264{bottom:446.519035pt;}
.y255{bottom:446.640000pt;}
.ye{bottom:449.026667pt;}
.yce{bottom:450.589798pt;}
.y206{bottom:452.306667pt;}
.y37{bottom:460.696369pt;}
.y23e{bottom:461.524882pt;}
.y5a{bottom:462.788603pt;}
.y203{bottom:464.360000pt;}
.y21b{bottom:466.130957pt;}
.y8{bottom:467.200000pt;}
.y178{bottom:467.600000pt;}
.y286{bottom:471.551571pt;}
.y24a{bottom:472.693333pt;}
.yf{bottom:473.973333pt;}
.y67{bottom:474.560000pt;}
.y29c{bottom:476.257525pt;}
.y263{bottom:476.257658pt;}
.y219{bottom:477.236188pt;}
.y113{bottom:477.640000pt;}
.y65{bottom:479.133333pt;}
.yb7{bottom:480.879181pt;}
.y176{bottom:481.933333pt;}
.yc8{bottom:483.000000pt;}
.y202{bottom:484.893333pt;}
.y261{bottom:487.604166pt;}
.y59{bottom:488.712695pt;}
.y160{bottom:489.609702pt;}
.yad{bottom:489.733333pt;}
.y1fd{bottom:490.066667pt;}
.y1fe{bottom:490.400000pt;}
.y23d{bottom:491.635285pt;}
.y1f8{bottom:492.866667pt;}
.ycd{bottom:492.955035pt;}
.y205{bottom:495.360000pt;}
.y21a{bottom:495.524136pt;}
.y8a{bottom:495.733333pt;}
.y36{bottom:496.113792pt;}
.y1fb{bottom:496.800000pt;}
.y22{bottom:497.800000pt;}
.yb{bottom:498.133333pt;}
.y218{bottom:501.256701pt;}
.y285{bottom:502.316124pt;}
.y29b{bottom:506.289271pt;}
.y262{bottom:506.289404pt;}
.y260{bottom:512.146525pt;}
.y23c{bottom:521.745689pt;}
.y58{bottom:525.368378pt;}
.y35{bottom:532.023343pt;}
.y284{bottom:533.080676pt;}
.ycc{bottom:535.274355pt;}
.yb6{bottom:536.709932pt;}
.y23b{bottom:541.225686pt;}
.y15f{bottom:550.336800pt;}
.y283{bottom:552.983837pt;}
.y57{bottom:561.849435pt;}
.y34{bottom:567.456641pt;}
.y32{bottom:580.975858pt;}
.y217{bottom:584.538261pt;}
.yb5{bottom:592.581053pt;}
.y15e{bottom:595.566036pt;}
.y29a{bottom:597.237229pt;}
.y25f{bottom:597.237363pt;}
.y56{bottom:598.505117pt;}
.y33{bottom:603.239192pt;}
.y87{bottom:608.651021pt;}
.y31{bottom:610.217854pt;}
.y77{bottom:630.228878pt;}
.y216{bottom:632.840095pt;}
.y215{bottom:633.460803pt;}
.y55{bottom:635.160800pt;}
.y299{bottom:646.588422pt;}
.y25e{bottom:646.588555pt;}
.y25d{bottom:647.222763pt;}
.yb4{bottom:648.452173pt;}
.y15d{bottom:648.534625pt;}
.y54{bottom:658.875138pt;}
.y23a{bottom:658.970365pt;}
.y86{bottom:671.292280pt;}
.y282{bottom:673.286561pt;}
.y239{bottom:689.041648pt;}
.yeb{bottom:690.434246pt;}
.y76{bottom:695.403836pt;}
.y15c{bottom:701.503214pt;}
.y281{bottom:704.011142pt;}
.yb3{bottom:704.262739pt;}
.y30{bottom:711.602852pt;}
.y238{bottom:719.152051pt;}
.y85{bottom:733.956195pt;}
.y280{bottom:734.775695pt;}
.yea{bottom:748.504641pt;}
.y237{bottom:749.158131pt;}
.y15b{bottom:754.490960pt;}
.y75{bottom:760.602365pt;}
.y27f{bottom:765.433657pt;}
.y213{bottom:770.129974pt;}
.y2f{bottom:770.404346pt;}
.y174{bottom:770.512106pt;}
.y2e{bottom:771.159956pt;}
.y236{bottom:779.268535pt;}
.y297{bottom:786.860925pt;}
.y25b{bottom:786.861058pt;}
.y27e{bottom:796.198210pt;}
.y84{bottom:796.597454pt;}
.y53{bottom:802.214828pt;}
.ye9{bottom:806.512392pt;}
.y15a{bottom:807.459549pt;}
.y235{bottom:809.365898pt;}
.y173{bottom:824.362080pt;}
.y74{bottom:825.777323pt;}
.y27d{bottom:826.949439pt;}
.y212{bottom:828.629441pt;}
.y234{bottom:834.755658pt;}
.y52{bottom:838.822886pt;}
.y296{bottom:846.631294pt;}
.y25a{bottom:846.631428pt;}
.y27c{bottom:852.890792pt;}
.y83{bottom:859.306679pt;}
.y159{bottom:860.485608pt;}
.ye8{bottom:864.520144pt;}
.y51{bottom:875.478569pt;}
.y172{bottom:878.250823pt;}
.y211{bottom:878.639575pt;}
.y73{bottom:891.022995pt;}
.y295{bottom:897.727898pt;}
.y259{bottom:897.728032pt;}
.y210{bottom:898.135051pt;}
.y50{bottom:912.007251pt;}
.y294{bottom:917.646914pt;}
.y258{bottom:917.647047pt;}
.y20f{bottom:917.656607pt;}
.ye7{bottom:922.507014pt;}
.y82{bottom:931.123240pt;}
.y171{bottom:932.100797pt;}
.y2c{bottom:937.537749pt;}
.y293{bottom:937.592576pt;}
.y257{bottom:937.592710pt;}
.y4f{bottom:948.662933pt;}
.y72{bottom:965.744376pt;}
.ye6{bottom:980.514765pt;}
.y81{bottom:984.611852pt;}
.y4e{bottom:985.302741pt;}
.y170{bottom:985.989541pt;}
.y2b{bottom:1008.753597pt;}
.y4d{bottom:1016.211626pt;}
.y71{bottom:1021.396483pt;}
.y80{bottom:1047.275767pt;}
.y16f{bottom:1047.728982pt;}
.y2a{bottom:1069.634734pt;}
.y70{bottom:1086.571440pt;}
.y29{bottom:1093.368058pt;}
.y16e{bottom:1093.747643pt;}
.y7f{bottom:1109.917026pt;}
.y28{bottom:1117.133133pt;}
.y16d{bottom:1147.578232pt;}
.y6f{bottom:1151.769970pt;}
.y7e{bottom:1172.558285pt;}
.y16c{bottom:1201.428207pt;}
.y6e{bottom:1216.944928pt;}
.y7d{bottom:1235.222200pt;}
.y16b{bottom:1255.336334pt;}
.y6d{bottom:1282.143457pt;}
.y7c{bottom:1297.931424pt;}
.y16a{bottom:1309.166924pt;}
.y6c{bottom:1347.389129pt;}
.y169{bottom:1363.075052pt;}
.h7a{height:0.808508pt;}
.h8f{height:0.826073pt;}
.h12{height:0.984258pt;}
.h36{height:19.985430pt;}
.h3b{height:20.102328pt;}
.h38{height:24.999867pt;}
.h57{height:26.771694pt;}
.h56{height:28.747046pt;}
.h34{height:30.520460pt;}
.h39{height:30.576526pt;}
.h35{height:33.290628pt;}
.h3a{height:33.485349pt;}
.h59{height:37.015235pt;}
.h37{height:37.594443pt;}
.h3c{height:37.663504pt;}
.h58{height:38.476291pt;}
.h7f{height:38.477458pt;}
.h94{height:39.313382pt;}
.h80{height:41.597733pt;}
.h6{height:42.016992pt;}
.h83{height:42.018813pt;}
.h5d{height:42.030672pt;}
.h7e{height:42.213120pt;}
.h95{height:42.501453pt;}
.h62{height:42.663702pt;}
.h98{height:42.931680pt;}
.h93{height:43.130200pt;}
.he{height:43.162109pt;}
.h81{height:44.226510pt;}
.hb{height:44.250000pt;}
.ha{height:44.342188pt;}
.h30{height:44.561393pt;}
.h96{height:45.187331pt;}
.h78{height:45.913114pt;}
.hd{height:45.937500pt;}
.h77{height:45.998893pt;}
.hc{height:46.033203pt;}
.h17{height:46.841534pt;}
.h8d{height:46.910577pt;}
.h9e{height:46.998080pt;}
.h8c{height:46.998213pt;}
.h87{height:48.168414pt;}
.h9c{height:49.214874pt;}
.h2c{height:49.705953pt;}
.h84{height:50.005345pt;}
.h18{height:50.640080pt;}
.h99{height:51.091712pt;}
.h1b{height:51.152693pt;}
.h45{height:51.179928pt;}
.h16{height:51.389227pt;}
.h47{height:51.467860pt;}
.h27{height:51.716448pt;}
.h3e{height:52.639063pt;}
.h19{height:53.840291pt;}
.h4{height:54.646484pt;}
.h23{height:55.446484pt;}
.h50{height:55.751503pt;}
.h10{height:55.893523pt;}
.hf{height:55.997933pt;}
.h51{height:56.025755pt;}
.h4d{height:56.464472pt;}
.h53{height:56.517500pt;}
.h4e{height:56.742231pt;}
.h65{height:56.755839pt;}
.h54{height:56.795520pt;}
.h66{height:57.035031pt;}
.h9{height:57.513021pt;}
.h3{height:57.517578pt;}
.h46{height:58.497584pt;}
.h1f{height:58.639071pt;}
.h6b{height:59.741730pt;}
.h6c{height:60.035611pt;}
.h8b{height:60.388672pt;}
.h31{height:60.484375pt;}
.h1c{height:60.875307pt;}
.h82{height:60.905151pt;}
.h97{height:62.228316pt;}
.h8{height:63.788867pt;}
.h5b{height:63.970829pt;}
.h3d{height:64.163151pt;}
.h60{height:65.135012pt;}
.h22{height:65.716146pt;}
.h20{height:65.807292pt;}
.h2e{height:66.467187pt;}
.h41{height:67.495904pt;}
.h43{height:67.875628pt;}
.h7d{height:68.871543pt;}
.h2f{height:69.001953pt;}
.h32{height:69.097656pt;}
.h6e{height:69.641004pt;}
.h68{height:69.788335pt;}
.h6f{height:69.983581pt;}
.h49{height:70.114804pt;}
.h69{height:70.131636pt;}
.h75{height:70.269336pt;}
.h92{height:70.367778pt;}
.h4b{height:70.509262pt;}
.h3f{height:72.490234pt;}
.h73{height:72.497500pt;}
.h5c{height:72.988082pt;}
.h5e{height:73.294591pt;}
.h1a{height:74.144469pt;}
.h61{height:74.221571pt;}
.h2a{height:75.652635pt;}
.h5{height:75.724414pt;}
.h42{height:77.146402pt;}
.h21{height:77.615234pt;}
.h25{height:78.712614pt;}
.h71{height:78.761012pt;}
.h72{height:79.148452pt;}
.h4a{height:80.536918pt;}
.h8a{height:83.681445pt;}
.h15{height:83.842563pt;}
.h7c{height:84.394316pt;}
.h91{height:86.227784pt;}
.h2b{height:86.407161pt;}
.h2d{height:86.588402pt;}
.h26{height:89.902137pt;}
.h28{height:90.090709pt;}
.h76{height:95.616992pt;}
.h14{height:102.739615pt;}
.h7b{height:107.349001pt;}
.h90{height:109.681159pt;}
.h1{height:110.809375pt;}
.h2{height:110.901562pt;}
.h85{height:112.537226pt;}
.h9a{height:114.982099pt;}
.h7{height:115.130859pt;}
.h89{height:121.871875pt;}
.h63{height:121.964062pt;}
.h13{height:130.684098pt;}
.h1d{height:137.000119pt;}
.h79{height:137.836686pt;}
.h8e{height:140.831190pt;}
.h74{height:152.724609pt;}
.h9d{height:166.214063pt;}
.h86{height:167.111304pt;}
.h11{height:167.799074pt;}
.h88{height:167.832031pt;}
.h6a{height:168.999467pt;}
.h9b{height:170.741799pt;}
.h64{height:196.000000pt;}
.h6d{height:197.000000pt;}
.h52{height:202.665333pt;}
.h1e{height:203.437291pt;}
.h55{height:208.300267pt;}
.h4f{height:220.797067pt;}
.h67{height:224.977067pt;}
.h5a{height:229.996667pt;}
.h33{height:231.883200pt;}
.h5f{height:233.000000pt;}
.h48{height:233.659747pt;}
.h4c{height:236.995867pt;}
.h70{height:271.992667pt;}
.h29{height:271.996667pt;}
.h24{height:282.998267pt;}
.h44{height:297.995333pt;}
.h40{height:391.340133pt;}
.h0{height:540.000000pt;}
.w1a{width:0.689194pt;}
.w24{width:0.794795pt;}
.w1f{width:0.796220pt;}
.w3{width:0.827616pt;}
.w1d{width:55.997093pt;}
.w1b{width:61.624800pt;}
.w27{width:64.577187pt;}
.w22{width:64.692933pt;}
.w6{width:67.243920pt;}
.w25{width:71.067187pt;}
.w20{width:71.194573pt;}
.w4{width:74.001933pt;}
.wa{width:157.993733pt;}
.wb{width:233.000000pt;}
.wd{width:264.000000pt;}
.w18{width:277.991200pt;}
.w17{width:277.995733pt;}
.w11{width:282.878000pt;}
.w12{width:286.991067pt;}
.w15{width:290.000000pt;}
.w9{width:294.000000pt;}
.wf{width:295.260933pt;}
.w10{width:299.000000pt;}
.w8{width:320.986800pt;}
.w13{width:329.000000pt;}
.w7{width:333.994400pt;}
.w16{width:353.429733pt;}
.w14{width:365.997200pt;}
.wc{width:386.995067pt;}
.w1c{width:422.051067pt;}
.w19{width:482.987600pt;}
.w26{width:486.719467pt;}
.w21{width:487.591867pt;}
.w5{width:506.818667pt;}
.w23{width:556.992933pt;}
.w1e{width:557.991333pt;}
.w2{width:579.994133pt;}
.we{width:586.997586pt;}
.w1{width:959.999986pt;}
.w0{width:960.000000pt;}
.x32{left:-854.703591pt;}
.x31{left:-800.439214pt;}
.x7c{left:-729.902599pt;}
.x5c{left:-721.806680pt;}
.x62{left:-569.355007pt;}
.x2d{left:-517.294060pt;}
.x2c{left:-460.830689pt;}
.x6e{left:-408.433948pt;}
.x56{left:-367.639944pt;}
.x6d{left:-362.427020pt;}
.x83{left:-303.672925pt;}
.x53{left:-270.210324pt;}
.x30{left:-267.288876pt;}
.x5b{left:-239.813367pt;}
.x7b{left:-237.685050pt;}
.x78{left:-229.258145pt;}
.x61{left:-159.499986pt;}
.x7f{left:-97.096716pt;}
.x73{left:-41.500371pt;}
.x4b{left:-34.360916pt;}
.x84{left:-31.831479pt;}
.x4c{left:-30.306669pt;}
.x4a{left:-27.279743pt;}
.x14{left:-5.620887pt;}
.x55{left:-4.016721pt;}
.x1d{left:-3.000132pt;}
.x0{left:0.000000pt;}
.x16{left:1.551773pt;}
.x49{left:2.875310pt;}
.x72{left:5.121182pt;}
.x93{left:6.259294pt;}
.x19{left:7.516481pt;}
.x11{left:8.433319pt;}
.x3{left:9.599986pt;}
.x60{left:12.000000pt;}
.x50{left:14.266652pt;}
.x10{left:17.366652pt;}
.x35{left:18.566652pt;}
.x75{left:19.466652pt;}
.x37{left:20.533319pt;}
.x89{left:21.466652pt;}
.x46{left:22.602294pt;}
.x27{left:23.899986pt;}
.x47{left:26.632607pt;}
.x3c{left:27.633319pt;}
.x44{left:29.642289pt;}
.x13{left:31.000000pt;}
.x1a{left:32.655267pt;}
.x29{left:35.466652pt;}
.x51{left:38.599986pt;}
.x45{left:42.523912pt;}
.x9c{left:43.899986pt;}
.x4d{left:47.621477pt;}
.x8b{left:50.466652pt;}
.x8c{left:51.499986pt;}
.x9d{left:52.833319pt;}
.x91{left:56.398490pt;}
.x43{left:59.009930pt;}
.x1b{left:61.485248pt;}
.x8f{left:63.000000pt;}
.x69{left:65.221852pt;}
.x17{left:67.725961pt;}
.x58{left:73.799986pt;}
.xa8{left:75.273440pt;}
.x5{left:76.199986pt;}
.x94{left:79.343092pt;}
.x8e{left:83.166652pt;}
.x6c{left:89.603055pt;}
.xa0{left:91.664408pt;}
.x2b{left:93.931944pt;}
.x1c{left:95.278918pt;}
.x34{left:100.499986pt;}
.x18{left:104.175413pt;}
.x8d{left:116.366652pt;}
.xab{left:119.933319pt;}
.x92{left:123.936520pt;}
.x25{left:136.799986pt;}
.x6a{left:138.580459pt;}
.x9f{left:147.399467pt;}
.x77{left:172.135610pt;}
.x82{left:185.699510pt;}
.x39{left:188.773319pt;}
.x24{left:191.026652pt;}
.x90{left:195.552555pt;}
.x52{left:208.282103pt;}
.x9b{left:221.399986pt;}
.x9e{left:225.920223pt;}
.x59{left:232.573319pt;}
.x15{left:234.828707pt;}
.x97{left:240.238714pt;}
.x26{left:256.026652pt;}
.x81{left:266.000000pt;}
.xa3{left:277.545767pt;}
.x28{left:280.626652pt;}
.x7d{left:282.011627pt;}
.x76{left:283.000000pt;}
.x20{left:288.489949pt;}
.x66{left:293.000000pt;}
.x5d{left:302.032152pt;}
.x63{left:307.403763pt;}
.x70{left:314.000000pt;}
.x1{left:315.573319pt;}
.x2{left:316.466652pt;}
.x2a{left:319.000000pt;}
.x3a{left:332.266652pt;}
.x87{left:338.933319pt;}
.x3b{left:340.133319pt;}
.x6b{left:344.000000pt;}
.x80{left:346.604240pt;}
.x33{left:349.784324pt;}
.xf{left:355.173319pt;}
.x38{left:361.799986pt;}
.x98{left:368.895059pt;}
.x64{left:377.399986pt;}
.x99{left:378.878014pt;}
.x12{left:382.359986pt;}
.x6{left:387.839986pt;}
.x57{left:404.991442pt;}
.x5e{left:416.026114pt;}
.xa4{left:426.181362pt;}
.x9a{left:433.986701pt;}
.x95{left:435.372977pt;}
.xa5{left:437.714586pt;}
.x21{left:442.986541pt;}
.x88{left:450.706652pt;}
.x22{left:454.974543pt;}
.x96{left:456.127346pt;}
.x71{left:463.074386pt;}
.x3f{left:467.839986pt;}
.x40{left:475.506652pt;}
.x3e{left:483.359986pt;}
.x65{left:485.199986pt;}
.x67{left:493.559986pt;}
.x4f{left:494.666652pt;}
.xaa{left:500.483783pt;}
.xa6{left:501.381190pt;}
.xa1{left:502.982745pt;}
.xa7{left:507.026652pt;}
.x23{left:521.151648pt;}
.x1e{left:522.816350pt;}
.xa9{left:526.016900pt;}
.xa2{left:526.960090pt;}
.x1f{left:547.739175pt;}
.x7e{left:577.000000pt;}
.x79{left:595.938057pt;}
.x5a{left:602.000000pt;}
.x6f{left:612.766180pt;}
.x68{left:620.000000pt;}
.x4{left:628.399986pt;}
.x42{left:635.000000pt;}
.x2f{left:637.000000pt;}
.x7a{left:646.000000pt;}
.x48{left:690.000000pt;}
.x3d{left:702.199986pt;}
.x41{left:712.359986pt;}
.x2e{left:736.004159pt;}
.x54{left:746.533355pt;}
.x86{left:767.799986pt;}
.x8a{left:796.226652pt;}
.x4e{left:812.106652pt;}
.xb{left:826.039986pt;}
.x7{left:829.439986pt;}
.x36{left:831.333319pt;}
.xc{left:838.559986pt;}
.xa{left:846.973319pt;}
.xd{left:849.666652pt;}
.x8{left:850.839986pt;}
.xe{left:853.226652pt;}
.x9{left:854.999986pt;}
.x5f{left:890.571410pt;}
.x74{left:993.116873pt;}
.x85{left:1103.674442pt;}
}




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