
    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_8c0092f301457294f118f663.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_54c5f2c4b4064b6dcc5b3157.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_58dd3333a4d813e987e7e845.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_05d5558700b05f42ccc1309e.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_872b5ccc5b09118cb911bdff.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.364746;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_528b5dd7a2a45df876373f53.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_aa42df0a6674284780ec3eb2.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_0e74b2d5e52d58adc5ae2fe4.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_eeaf1223f681757823728fe6.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_17bf8bf235e093ed45dafaf3.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.364746;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_5a6609c9ce33f5f36fad3641.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.364746;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_379fce54ccbfe60234dcb45f.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_f27164c0010108d3ae2194c3.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.364746;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_713f32de0b23aca2a0e9ccc0.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_e904de4e31dde8ec621725dd.woff2')format("woff");}.fff{font-family:fff;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_5e39aa007dbb909b2f9df4f0.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.364746;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_8f5e3af1f8faec515825df8e.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_748752e18c6af4cb106f7051.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_da68ca517a3158de078db8bf.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_a5aa1c2a24008687e0026914.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_8d66ebb2b5d38c0868ede8c1.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_b0470269435e7671ddbd13f8.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_d246cf49b70c4869957e192c.woff2')format("woff");}.ff17{font-family:ff17;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url('chunks/assets/font_a2fc1a92a89cbfc9950402a4.woff2')format("woff");}.ff18{font-family:ff18;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19;src:url('chunks/assets/font_70ecf00f198c8e859662b549.woff2')format("woff");}.ff19{font-family:ff19;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a;src:url('chunks/assets/font_f5cf97272401282d0e36c4c1.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b;src:url('chunks/assets/font_3b96a01bb091f1001f7247a9.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c;src:url('chunks/assets/font_c12ed2155381c40fe7686ae5.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1d;src:url('chunks/assets/font_71cd666a1111210b0b73a941.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:1.364746;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;}
.mb{transform:matrix(0.093750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093750,0.000000,0.000000,0.250000,0,0);}
.m38{transform:matrix(0.114583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114583,0.000000,0.000000,0.250000,0,0);}
.m34{transform:matrix(0.115625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115625,0.000000,0.000000,0.250000,0,0);}
.m84{transform:matrix(0.130208,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130208,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130208,0.000000,0.000000,0.250000,0,0);}
.m50{transform:matrix(0.133152,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133152,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133152,0.000000,0.000000,0.250000,0,0);}
.m32{transform:matrix(0.140625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140625,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.145833,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145833,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145833,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.151042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151042,0.000000,0.000000,0.250000,0,0);}
.m7e{transform:matrix(0.151961,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151961,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151961,0.000000,0.000000,0.250000,0,0);}
.m51{transform:matrix(0.152174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152174,0.000000,0.000000,0.250000,0,0);}
.m5f{transform:matrix(0.153846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153846,0.000000,0.000000,0.250000,0,0);}
.m3d{transform:matrix(0.157609,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157609,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157609,0.000000,0.000000,0.250000,0,0);}
.m36{transform:matrix(0.159420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159420,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.165179,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165179,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165179,0.000000,0.000000,0.250000,0,0);}
.m33{transform:matrix(0.166667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166667,0.000000,0.000000,0.250000,0,0);}
.m82{transform:matrix(0.169643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169643,0.000000,0.000000,0.250000,0,0);}
.m81{transform:matrix(0.172727,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172727,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172727,0.000000,0.000000,0.250000,0,0);}
.m6d{transform:matrix(0.177778,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177778,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177778,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.183099,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183099,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183099,0.000000,0.000000,0.250000,0,0);}
.m58{transform:matrix(0.183824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183824,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.185065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185065,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.186170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186170,0.000000,0.000000,0.250000,0,0);}
.m4d{transform:matrix(0.191176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191176,0.000000,0.000000,0.250000,0,0);}
.m6f{transform:matrix(0.191406,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191406,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191406,0.000000,0.000000,0.250000,0,0);}
.m42{transform:matrix(0.195833,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195833,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195833,0.000000,0.000000,0.250000,0,0);}
.m6e{transform:matrix(0.196970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196970,0.000000,0.000000,0.250000,0,0);}
.m77{transform:matrix(0.198630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198630,0.000000,0.000000,0.250000,0,0);}
.m62{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m63{transform:matrix(0.200658,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200658,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200658,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.201923,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201923,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201923,0.000000,0.000000,0.250000,0,0);}
.m57{transform:matrix(0.202703,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202703,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202703,0.000000,0.000000,0.250000,0,0);}
.m5d{transform:matrix(0.203488,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203488,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203488,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.203704,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203704,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203704,0.000000,0.000000,0.250000,0,0);}
.m69{transform:matrix(0.205224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205224,0.000000,0.000000,0.250000,0,0);}
.m92{transform:matrix(0.205479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205479,0.000000,0.000000,0.250000,0,0);}
.m4b{transform:matrix(0.207746,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207746,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207746,0.000000,0.000000,0.250000,0,0);}
.m72{transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m7b{transform:matrix(0.211268,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211268,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211268,0.000000,0.000000,0.250000,0,0);}
.m3c{transform:matrix(0.212121,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212121,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212121,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.212209,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212209,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212209,0.000000,0.000000,0.250000,0,0);}
.m44{transform:matrix(0.212264,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212264,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212264,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.213816,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213816,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213816,0.000000,0.000000,0.250000,0,0);}
.m5e{transform:matrix(0.214286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214286,0.000000,0.000000,0.250000,0,0);}
.m93{transform:matrix(0.215278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215278,0.000000,0.000000,0.250000,0,0);}
.m59{transform:matrix(0.215385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215385,0.000000,0.000000,0.250000,0,0);}
.m5b{transform:matrix(0.216049,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216049,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216049,0.000000,0.000000,0.250000,0,0);}
.m66{transform:matrix(0.216102,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216102,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216102,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.216418,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216418,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216418,0.000000,0.000000,0.250000,0,0);}
.m6c{transform:matrix(0.219156,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219156,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219156,0.000000,0.000000,0.250000,0,0);}
.m75{transform:matrix(0.221429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221429,0.000000,0.000000,0.250000,0,0);}
.m45{transform:matrix(0.222222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222222,0.000000,0.000000,0.250000,0,0);}
.m7a{transform:matrix(0.222973,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222973,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222973,0.000000,0.000000,0.250000,0,0);}
.m43{transform:matrix(0.223214,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223214,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223214,0.000000,0.000000,0.250000,0,0);}
.m7c{transform:matrix(0.223958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223958,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.225352,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225352,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225352,0.000000,0.000000,0.250000,0,0);}
.m40{transform:matrix(0.226027,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226027,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226027,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.228495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228495,0.000000,0.000000,0.250000,0,0);}
.m74{transform:matrix(0.231343,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231343,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231343,0.000000,0.000000,0.250000,0,0);}
.m49{transform:matrix(0.231818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231818,0.000000,0.000000,0.250000,0,0);}
.m4e{transform:matrix(0.231959,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231959,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231959,0.000000,0.000000,0.250000,0,0);}
.m31{transform:matrix(0.232394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232394,0.000000,0.000000,0.250000,0,0);}
.m41{transform:matrix(0.232759,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232759,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232759,0.000000,0.000000,0.250000,0,0);}
.m37{transform:matrix(0.233108,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233108,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233108,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.233871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233871,0.000000,0.000000,0.250000,0,0);}
.m8f{transform:matrix(0.235714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235714,0.000000,0.000000,0.250000,0,0);}
.m35{transform:matrix(0.236301,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236301,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236301,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.236364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236364,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.236559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236559,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.236607,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236607,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236607,0.000000,0.000000,0.250000,0,0);}
.m61{transform:matrix(0.237179,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237179,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237179,0.000000,0.000000,0.250000,0,0);}
.m83{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m56{transform:matrix(0.238971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238971,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.239130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239130,0.000000,0.000000,0.250000,0,0);}
.m73{transform:matrix(0.239437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239437,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.239474,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239474,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239474,0.000000,0.000000,0.250000,0,0);}
.m5c{transform:matrix(0.239583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239583,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.239726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239726,0.000000,0.000000,0.250000,0,0);}
.m65{transform:matrix(0.240196,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240196,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240196,0.000000,0.000000,0.250000,0,0);}
.m8a{transform:matrix(0.240741,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240741,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240741,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.241071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241071,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.243151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243151,0.000000,0.000000,0.250000,0,0);}
.m71{transform:matrix(0.245283,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245283,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245283,0.000000,0.000000,0.250000,0,0);}
.m46{transform:matrix(0.245536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245536,0.000000,0.000000,0.250000,0,0);}
.m48{transform:matrix(0.245614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245614,0.000000,0.000000,0.250000,0,0);}
.m89{transform:matrix(0.245902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245902,0.000000,0.000000,0.250000,0,0);}
.m90{transform:matrix(0.246269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246269,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.246479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246479,0.000000,0.000000,0.250000,0,0);}
.m6b{transform:matrix(0.246528,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246528,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246528,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.246753,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246753,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246753,0.000000,0.000000,0.250000,0,0);}
.m8{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);}
.m6a{transform:matrix(0.253521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253521,0.000000,0.000000,0.250000,0,0);}
.m8d{transform:matrix(0.253571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253571,0.000000,0.000000,0.250000,0,0);}
.m5a{transform:matrix(0.253623,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253623,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253623,0.000000,0.000000,0.250000,0,0);}
.m91{transform:matrix(0.253846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253846,0.000000,0.000000,0.250000,0,0);}
.m85{transform:matrix(0.254386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254386,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.254545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254545,0.000000,0.000000,0.250000,0,0);}
.m68{transform:matrix(0.254630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254630,0.000000,0.000000,0.250000,0,0);}
.m55{transform:matrix(0.254902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254902,0.000000,0.000000,0.250000,0,0);}
.m87{transform:matrix(0.255208,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255208,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255208,0.000000,0.000000,0.250000,0,0);}
.m80{transform:matrix(0.255556,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255556,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255556,0.000000,0.000000,0.250000,0,0);}
.m7d{transform:matrix(0.256098,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256098,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256098,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.256494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256494,0.000000,0.000000,0.250000,0,0);}
.m8e{transform:matrix(0.257246,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257246,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257246,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.258929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258929,0.000000,0.000000,0.250000,0,0);}
.m76{transform:matrix(0.260204,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260204,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260204,0.000000,0.000000,0.250000,0,0);}
.m70{transform:matrix(0.260274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260274,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.260638,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260638,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260638,0.000000,0.000000,0.250000,0,0);}
.m79{transform:matrix(0.261194,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261194,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261194,0.000000,0.000000,0.250000,0,0);}
.m64{transform:matrix(0.261364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261364,0.000000,0.000000,0.250000,0,0);}
.m94{transform:matrix(0.264085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264085,0.000000,0.000000,0.250000,0,0);}
.m30{transform:matrix(0.264286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264286,0.000000,0.000000,0.250000,0,0);}
.m3a{transform:matrix(0.265385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265385,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.266447,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266447,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266447,0.000000,0.000000,0.250000,0,0);}
.m52{transform:matrix(0.269022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269022,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.269231,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269231,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269231,0.000000,0.000000,0.250000,0,0);}
.m8c{transform:matrix(0.269608,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269608,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269608,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.270270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270270,0.000000,0.000000,0.250000,0,0);}
.m39{transform:matrix(0.270492,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270492,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270492,0.000000,0.000000,0.250000,0,0);}
.m67{transform:matrix(0.274510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274510,0.000000,0.000000,0.250000,0,0);}
.m4c{transform:matrix(0.275362,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275362,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275362,0.000000,0.000000,0.250000,0,0);}
.m8b{transform:matrix(0.277778,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277778,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277778,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.280612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280612,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.282407,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282407,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282407,0.000000,0.000000,0.250000,0,0);}
.m4a{transform:matrix(0.288194,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288194,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288194,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.288462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288462,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.288732,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288732,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288732,0.000000,0.000000,0.250000,0,0);}
.m47{transform:matrix(0.291667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291667,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.303571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303571,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.305556,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305556,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305556,0.000000,0.000000,0.250000,0,0);}
.m4f{transform:matrix(0.307065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307065,0.000000,0.000000,0.250000,0,0);}
.m88{transform:matrix(0.314815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314815,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.317568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317568,0.000000,0.000000,0.250000,0,0);}
.m54{transform:matrix(0.318750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318750,0.000000,0.000000,0.250000,0,0);}
.m7f{transform:matrix(0.325581,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325581,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325581,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.333333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333333,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.341837,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341837,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341837,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.342857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342857,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.360795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360795,0.000000,0.000000,0.250000,0,0);}
.m60{transform:matrix(0.380208,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380208,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380208,0.000000,0.000000,0.250000,0,0);}
.m53{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.429104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429104,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.439394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439394,0.000000,0.000000,0.250000,0,0);}
.m78{transform:matrix(0.456349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456349,0.000000,0.000000,0.250000,0,0);}
.m86{transform:matrix(0.494898,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494898,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494898,0.000000,0.000000,0.250000,0,0);}
.m3b{transform:matrix(0.552632,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552632,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552632,0.000000,0.000000,0.250000,0,0);}
.m3e{transform:matrix(0.697368,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697368,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697368,0.000000,0.000000,0.250000,0,0);}
.m3f{transform:matrix(0.760870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.760870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.760870,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:1.423500px;}
.ls2b{letter-spacing:-18.160800px;}
.ls1b{letter-spacing:-17.004225px;}
.ls1c{letter-spacing:-15.441300px;}
.ls20{letter-spacing:-15.423075px;}
.ls1a{letter-spacing:-13.510200px;}
.ls29{letter-spacing:-13.257750px;}
.ls1d{letter-spacing:-12.887100px;}
.ls53{letter-spacing:-11.769525px;}
.ls63{letter-spacing:-11.568675px;}
.ls3e{letter-spacing:-10.024725px;}
.ls81{letter-spacing:-9.887400px;}
.ls1e{letter-spacing:-9.448875px;}
.ls85{letter-spacing:-9.110700px;}
.ls14{letter-spacing:-8.248500px;}
.ls7e{letter-spacing:-8.136600px;}
.ls5a{letter-spacing:-7.708800px;}
.lsad{letter-spacing:-7.392000px;}
.ls15{letter-spacing:-7.135425px;}
.ls11{letter-spacing:-7.046625px;}
.ls86{letter-spacing:-6.998400px;}
.lsb0{letter-spacing:-6.390000px;}
.ls8c{letter-spacing:-6.085800px;}
.lsae{letter-spacing:-5.916750px;}
.ls91{letter-spacing:-5.892750px;}
.ls1f{letter-spacing:-5.398350px;}
.lsab{letter-spacing:-5.176500px;}
.ls9a{letter-spacing:-4.762800px;}
.ls25{letter-spacing:-4.626375px;}
.ls89{letter-spacing:-4.563000px;}
.ls62{letter-spacing:-4.438800px;}
.ls60{letter-spacing:-4.373250px;}
.ls21{letter-spacing:-4.297050px;}
.ls41{letter-spacing:-3.938700px;}
.ls51{letter-spacing:-3.904200px;}
.ls5f{letter-spacing:-3.854400px;}
.ls84{letter-spacing:-3.801600px;}
.lsa9{letter-spacing:-3.696000px;}
.ls90{letter-spacing:-3.659250px;}
.ls17{letter-spacing:-3.252600px;}
.ls19{letter-spacing:-3.082425px;}
.ls8b{letter-spacing:-3.040200px;}
.lsd{letter-spacing:-3.037650px;}
.lsaa{letter-spacing:-2.955750px;}
.ls8f{letter-spacing:-2.944350px;}
.ls30{letter-spacing:-2.876400px;}
.ls98{letter-spacing:-2.653350px;}
.ls7f{letter-spacing:-2.533275px;}
.ls93{letter-spacing:-2.467125px;}
.ls10{letter-spacing:-2.406375px;}
.ls23{letter-spacing:-2.315925px;}
.ls66{letter-spacing:-2.293200px;}
.ls54{letter-spacing:-2.251200px;}
.ls43{letter-spacing:-2.249100px;}
.lsac{letter-spacing:-2.220750px;}
.ls31{letter-spacing:-2.211000px;}
.ls35{letter-spacing:-2.109000px;}
.ls9d{letter-spacing:-2.025000px;}
.ls2f{letter-spacing:-1.992600px;}
.lse{letter-spacing:-1.948950px;}
.ls3f{letter-spacing:-1.695750px;}
.ls16{letter-spacing:-1.543950px;}
.ls4b{letter-spacing:-1.526175px;}
.ls80{letter-spacing:-1.522800px;}
.lsa7{letter-spacing:-1.480500px;}
.ls5c{letter-spacing:-1.480050px;}
.ls96{letter-spacing:-1.474200px;}
.ls2e{letter-spacing:-1.472625px;}
.lsa6{letter-spacing:-1.459350px;}
.ls6c{letter-spacing:-1.365525px;}
.ls42{letter-spacing:-0.984975px;}
.ls40{letter-spacing:-0.886050px;}
.ls47{letter-spacing:-0.842400px;}
.ls3a{letter-spacing:-0.793875px;}
.ls18{letter-spacing:-0.771975px;}
.ls83{letter-spacing:-0.761400px;}
.ls2d{letter-spacing:-0.751800px;}
.ls2a{letter-spacing:-0.749700px;}
.lsa8{letter-spacing:-0.740250px;}
.ls27{letter-spacing:-0.738375px;}
.ls97{letter-spacing:-0.737100px;}
.ls24{letter-spacing:-0.733425px;}
.lsaf{letter-spacing:-0.693750px;}
.ls4a{letter-spacing:-0.643950px;}
.lsc{letter-spacing:0.000000px;}
.ls9e{letter-spacing:0.696150px;}
.ls3d{letter-spacing:0.706875px;}
.ls56{letter-spacing:0.734400px;}
.ls77{letter-spacing:0.737100px;}
.ls9{letter-spacing:0.738375px;}
.lsa0{letter-spacing:0.740250px;}
.ls6b{letter-spacing:0.748125px;}
.ls92{letter-spacing:0.750000px;}
.ls57{letter-spacing:0.750825px;}
.ls70{letter-spacing:0.761400px;}
.ls49{letter-spacing:0.764400px;}
.ls0{letter-spacing:0.771975px;}
.ls6d{letter-spacing:0.793800px;}
.ls48{letter-spacing:0.804750px;}
.ls38{letter-spacing:0.809400px;}
.ls12{letter-spacing:0.823050px;}
.ls22{letter-spacing:0.853875px;}
.ls6a{letter-spacing:0.867300px;}
.ls46{letter-spacing:0.882450px;}
.ls88{letter-spacing:0.901800px;}
.ls58{letter-spacing:0.926850px;}
.ls8{letter-spacing:1.472625px;}
.ls78{letter-spacing:1.474200px;}
.ls9f{letter-spacing:1.480500px;}
.ls67{letter-spacing:1.498500px;}
.ls71{letter-spacing:1.522800px;}
.ls9b{letter-spacing:1.523475px;}
.ls4e{letter-spacing:1.528800px;}
.ls4{letter-spacing:1.543950px;}
.ls33{letter-spacing:1.554000px;}
.ls9c{letter-spacing:1.559250px;}
.ls65{letter-spacing:1.560600px;}
.ls87{letter-spacing:1.565550px;}
.ls13{letter-spacing:1.583325px;}
.ls3c{letter-spacing:1.609500px;}
.ls4c{letter-spacing:1.617000px;}
.ls8e{letter-spacing:1.674000px;}
.ls8a{letter-spacing:1.681650px;}
.ls94{letter-spacing:1.728600px;}
.ls36{letter-spacing:1.755600px;}
.ls5b{letter-spacing:1.848150px;}
.ls44{letter-spacing:1.917000px;}
.ls82{letter-spacing:1.958400px;}
.ls37{letter-spacing:2.050125px;}
.ls64{letter-spacing:2.153250px;}
.lsa{letter-spacing:2.211000px;}
.ls79{letter-spacing:2.211300px;}
.lsa1{letter-spacing:2.220750px;}
.ls6e{letter-spacing:2.284200px;}
.ls50{letter-spacing:2.293200px;}
.ls2{letter-spacing:2.315925px;}
.ls68{letter-spacing:2.347200px;}
.ls5e{letter-spacing:2.349000px;}
.ls69{letter-spacing:2.418600px;}
.ls61{letter-spacing:2.439450px;}
.ls26{letter-spacing:2.597925px;}
.ls52{letter-spacing:2.705100px;}
.ls7a{letter-spacing:2.944350px;}
.lsb{letter-spacing:2.945250px;}
.lsa3{letter-spacing:2.955750px;}
.ls6f{letter-spacing:3.040200px;}
.ls4f{letter-spacing:3.053400px;}
.ls5{letter-spacing:3.082425px;}
.ls2c{letter-spacing:3.171000px;}
.ls45{letter-spacing:3.360000px;}
.ls99{letter-spacing:3.672000px;}
.ls7c{letter-spacing:3.681450px;}
.lsa2{letter-spacing:3.696000px;}
.ls75{letter-spacing:3.801600px;}
.ls1{letter-spacing:3.854400px;}
.lsf{letter-spacing:3.961800px;}
.ls7b{letter-spacing:4.418550px;}
.ls8d{letter-spacing:4.435725px;}
.lsa4{letter-spacing:4.436250px;}
.ls73{letter-spacing:4.563000px;}
.ls4d{letter-spacing:4.582200px;}
.ls5d{letter-spacing:4.623150px;}
.ls7{letter-spacing:4.626375px;}
.ls59{letter-spacing:5.100000px;}
.ls7d{letter-spacing:5.155650px;}
.ls74{letter-spacing:5.324400px;}
.ls6{letter-spacing:5.398350px;}
.ls39{letter-spacing:5.625900px;}
.ls95{letter-spacing:5.869125px;}
.ls3b{letter-spacing:5.878800px;}
.lsa5{letter-spacing:5.916750px;}
.ls72{letter-spacing:6.085800px;}
.ls3{letter-spacing:6.170325px;}
.ls32{letter-spacing:7.367250px;}
.ls34{letter-spacing:8.480775px;}
.ls76{letter-spacing:12.171600px;}
.ls28{letter-spacing:20.047125px;}
.ls55{letter-spacing:28.824000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:0.000000px;}
._23{margin-left:-1618.207425px;}
._39{margin-left:-34.415850px;}
._30{margin-left:-18.492000px;}
._29{margin-left:-12.138075px;}
._22{margin-left:-10.276575px;}
._7{margin-left:-9.236325px;}
._1e{margin-left:-7.396725px;}
._20{margin-left:-6.378375px;}
._5{margin-left:-5.310750px;}
._6{margin-left:-3.870825px;}
._9{margin-left:-2.441850px;}
._d{margin-left:-1.297575px;}
._8{width:1.450875px;}
._4{width:3.399975px;}
._2{width:4.544250px;}
._1d{width:5.825400px;}
._3{width:6.953250px;}
._f{width:8.217975px;}
._a{width:9.384150px;}
._3c{width:10.401450px;}
._b{width:11.459175px;}
._c{width:13.435650px;}
._1c{width:14.946750px;}
._11{width:16.682325px;}
._0{width:17.958000px;}
._2e{width:19.009200px;}
._27{width:20.148000px;}
._1{width:21.197025px;}
._21{width:22.294200px;}
._2d{width:23.350875px;}
._3e{width:25.188075px;}
._35{width:27.013650px;}
._3d{width:31.168500px;}
._1f{width:32.220525px;}
._3b{width:35.959800px;}
._36{width:37.372350px;}
._13{width:38.505675px;}
._37{width:41.577150px;}
._38{width:43.635750px;}
._1a{width:45.639600px;}
._40{width:47.099400px;}
._1b{width:48.541350px;}
._34{width:50.370000px;}
._3a{width:57.339675px;}
._33{width:59.190225px;}
._12{width:87.320775px;}
._25{width:206.402025px;}
._3f{width:211.503075px;}
._2c{width:217.269900px;}
._16{width:219.843150px;}
._19{width:220.916250px;}
._28{width:223.232175px;}
._17{width:227.973525px;}
._15{width:229.774800px;}
._24{width:236.448825px;}
._e{width:242.104500px;}
._26{width:246.446175px;}
._10{width:252.167550px;}
._2b{width:255.671550px;}
._2a{width:285.641700px;}
._32{width:458.093250px;}
._31{width:470.915700px;}
._18{width:684.566625px;}
._14{width:692.833875px;}
._2f{width:694.947225px;}
.fc0{color:transparent;}
.fs26{font-size:14.250000px;}
.fs2a{font-size:17.250000px;}
.fsd{font-size:21.000000px;}
.fs13{font-size:22.500000px;}
.fs16{font-size:24.750000px;}
.fs14{font-size:26.250000px;}
.fs20{font-size:27.750000px;}
.fs29{font-size:28.500000px;}
.fs12{font-size:30.000000px;}
.fs38{font-size:30.750000px;}
.fs22{font-size:31.500000px;}
.fs39{font-size:32.250000px;}
.fs3a{font-size:33.750000px;}
.fs28{font-size:34.500000px;}
.fs15{font-size:35.250000px;}
.fs23{font-size:36.000000px;}
.fsc{font-size:36.750000px;}
.fs1d{font-size:37.500000px;}
.fs1b{font-size:38.250000px;}
.fs1c{font-size:39.000000px;}
.fs2c{font-size:39.750000px;}
.fse{font-size:40.500000px;}
.fs1a{font-size:41.250000px;}
.fsa{font-size:42.000000px;}
.fs2d{font-size:42.750000px;}
.fs2b{font-size:43.500000px;}
.fs33{font-size:44.250000px;}
.fs9{font-size:45.000000px;}
.fs24{font-size:45.750000px;}
.fs37{font-size:47.250000px;}
.fs21{font-size:48.000000px;}
.fs25{font-size:48.750000px;}
.fs27{font-size:49.500000px;}
.fs19{font-size:50.250000px;}
.fs31{font-size:51.000000px;}
.fs10{font-size:51.750000px;}
.fs18{font-size:52.500000px;}
.fs2{font-size:53.250000px;}
.fs2e{font-size:54.000000px;}
.fs0{font-size:54.750000px;}
.fs17{font-size:55.500000px;}
.fs1f{font-size:56.250000px;}
.fs1e{font-size:57.000000px;}
.fs1{font-size:57.750000px;}
.fs7{font-size:58.500000px;}
.fs8{font-size:60.000000px;}
.fs32{font-size:60.750000px;}
.fs4{font-size:64.500000px;}
.fsb{font-size:66.000000px;}
.fs30{font-size:69.000000px;}
.fs3{font-size:69.750000px;}
.fs6{font-size:70.500000px;}
.fs5{font-size:71.250000px;}
.fs11{font-size:72.000000px;}
.fs2f{font-size:72.750000px;}
.fs36{font-size:79.500000px;}
.fsf{font-size:83.250000px;}
.fs35{font-size:101.250000px;}
.fs34{font-size:115.500000px;}
.y0{bottom:0.000000px;}
.y77{bottom:96.907440px;}
.y39{bottom:104.468190px;}
.y38{bottom:104.472578px;}
.yad{bottom:106.987890px;}
.y75{bottom:108.787440px;}
.y76{bottom:110.586990px;}
.yf7{bottom:114.546990px;}
.yf8{bottom:114.907890px;}
.y37{bottom:116.527890px;}
.yab{bottom:118.507140px;}
.yac{bottom:119.947440px;}
.yf6{bottom:128.229015px;}
.y36{bottom:130.027890px;}
.yf4{bottom:141.187290px;}
.yf5{bottom:141.187740px;}
.yf0{bottom:141.546990px;}
.yef{bottom:141.548190px;}
.y35{bottom:141.907890px;}
.yf2{bottom:154.143090px;}
.yf3{bottom:154.147290px;}
.yee{bottom:154.508190px;}
.y71{bottom:155.226690px;}
.y34{bottom:155.943540px;}
.ya9{bottom:163.504402px;}
.yaa{bottom:163.507590px;}
.yed{bottom:167.106690px;}
.yec{bottom:167.110440px;}
.yf1{bottom:167.467590px;}
.y33{bottom:168.545415px;}
.y70{bottom:172.864290px;}
.yea{bottom:180.067890px;}
.y32{bottom:181.147290px;}
.ya8{bottom:181.147590px;}
.yeb{bottom:181.508190px;}
.y6f{bottom:190.507478px;}
.ya7{bottom:203.827777px;}
.y6e{bottom:208.506540px;}
.ya5{bottom:221.822790px;}
.ya6{bottom:221.826840px;}
.y129{bottom:222.541215px;}
.y6d{bottom:226.505603px;}
.ye9{bottom:234.063240px;}
.y31{bottom:235.514752px;}
.ya4{bottom:239.465977px;}
.y128{bottom:244.866840px;}
.y127{bottom:244.872315px;}
.y69{bottom:248.829652px;}
.ye8{bottom:251.707740px;}
.y30{bottom:252.788378px;}
.ya3{bottom:257.109165px;}
.y126{bottom:262.866690px;}
.y6c{bottom:266.828978px;}
.y68{bottom:267.184590px;}
.ye7{bottom:269.703240px;}
.y2f{bottom:270.787440px;}
.ya2{bottom:275.108227px;}
.y125{bottom:280.506690px;}
.y6b{bottom:284.828040px;}
.y67{bottom:285.183652px;}
.ye5{bottom:287.342790px;}
.ye6{bottom:287.347740px;}
.y2d{bottom:288.423653px;}
.y2e{bottom:288.427140px;}
.ya1{bottom:293.107290px;}
.y124{bottom:298.146690px;}
.y123{bottom:298.148040px;}
.y6a{bottom:299.947890px;}
.y65{bottom:302.825003px;}
.y66{bottom:302.826840px;}
.ye4{bottom:304.987290px;}
.ye3{bottom:304.987590px;}
.y2b{bottom:306.062753px;}
.y2c{bottom:306.066840px;}
.y5d{bottom:308.227290px;}
.y9f{bottom:310.738740px;}
.ya0{bottom:310.746990px;}
.y122{bottom:315.788040px;}
.y121{bottom:315.798690px;}
.y63{bottom:320.110102px;}
.y5c{bottom:320.467252px;}
.y64{bottom:320.468190px;}
.ye2{bottom:322.983090px;}
.y2a{bottom:323.705940px;}
.y9e{bottom:328.737802px;}
.y120{bottom:333.793065px;}
.y73{bottom:338.463502px;}
.y62{bottom:338.465040px;}
.y5b{bottom:338.466315px;}
.y74{bottom:338.467140px;}
.ye1{bottom:340.627590px;}
.y29{bottom:341.705003px;}
.y9d{bottom:346.736865px;}
.y11f{bottom:351.787440px;}
.y72{bottom:356.106690px;}
.y61{bottom:356.108227px;}
.y5a{bottom:356.109502px;}
.ye0{bottom:358.259190px;}
.y28{bottom:359.348190px;}
.y27{bottom:359.354902px;}
.y9c{bottom:364.380053px;}
.y11d{bottom:369.426840px;}
.y11e{bottom:369.427140px;}
.y5f{bottom:373.748040px;}
.y5e{bottom:373.752690px;}
.y60{bottom:374.107290px;}
.ydf{bottom:375.903690px;}
.y26{bottom:376.628527px;}
.y9b{bottom:382.023240px;}
.y11c{bottom:387.066840px;}
.y11b{bottom:387.068040px;}
.y59{bottom:391.751752px;}
.yde{bottom:393.548190px;}
.ydd{bottom:393.551490px;}
.y22{bottom:394.264702px;}
.yd{bottom:394.266690px;}
.yc{bottom:394.271415px;}
.y23{bottom:394.627590px;}
.y9a{bottom:400.022303px;}
.y11a{bottom:404.708040px;}
.y119{bottom:404.719290px;}
.y58{bottom:410.106690px;}
.ydb{bottom:411.539040px;}
.ydc{bottom:411.546990px;}
.y21{bottom:411.907890px;}
.y20{bottom:411.912503px;}
.yb{bottom:412.270478px;}
.y99{bottom:417.665490px;}
.y118{bottom:422.359290px;}
.y56{bottom:427.747927px;}
.y57{bottom:427.748040px;}
.yd6{bottom:429.156540px;}
.yd3{bottom:429.170040px;}
.yd0{bottom:429.183540px;}
.yd9{bottom:429.186690px;}
.ycb{bottom:429.191790px;}
.y18{bottom:429.533903px;}
.y25{bottom:429.544402px;}
.y15{bottom:429.547590px;}
.y1f{bottom:429.555690px;}
.ya{bottom:429.913665px;}
.y98{bottom:435.664552px;}
.y117{bottom:439.999290px;}
.y54{bottom:445.746990px;}
.yd8{bottom:446.787540px;}
.yd5{bottom:446.801040px;}
.yd2{bottom:446.814540px;}
.ycf{bottom:446.828040px;}
.yda{bottom:446.831190px;}
.ycd{bottom:446.836290px;}
.y17{bottom:447.177090px;}
.y14{bottom:447.183652px;}
.y9{bottom:447.187290px;}
.y24{bottom:447.187590px;}
.y1e{bottom:447.198878px;}
.y96{bottom:453.307065px;}
.y97{bottom:453.307740px;}
.y116{bottom:457.993665px;}
.y52{bottom:463.388190px;}
.y53{bottom:463.744065px;}
.y55{bottom:463.746052px;}
.y50{bottom:463.746877px;}
.y51{bottom:463.747440px;}
.yd7{bottom:464.432040px;}
.yd4{bottom:464.445540px;}
.yd1{bottom:464.459040px;}
.yce{bottom:464.467290px;}
.y1d{bottom:464.472503px;}
.y16{bottom:464.820278px;}
.y8{bottom:464.822490px;}
.y13{bottom:464.826840px;}
.ycc{bottom:464.831790px;}
.y95{bottom:471.306128px;}
.y115{bottom:475.988040px;}
.yca{bottom:479.587590px;}
.y4f{bottom:481.745940px;}
.y1b{bottom:482.468077px;}
.y1c{bottom:482.827440px;}
.yc9{bottom:482.831190px;}
.y10{bottom:486.787440px;}
.y94{bottom:489.305190px;}
.y114{bottom:493.628040px;}
.y113{bottom:493.632915px;}
.y4e{bottom:499.389127px;}
.y1a{bottom:500.107627px;}
.yc8{bottom:500.111190px;}
.y12{bottom:500.463502px;}
.yf{bottom:500.467140px;}
.y93{bottom:507.304252px;}
.y112{bottom:511.272915px;}
.y4d{bottom:517.388190px;}
.y19{bottom:517.736152px;}
.ye{bottom:517.747440px;}
.yc7{bottom:518.088990px;}
.y11{bottom:518.106690px;}
.y91{bottom:524.943802px;}
.y92{bottom:524.947440px;}
.y111{bottom:529.267290px;}
.yc6{bottom:535.733490px;}
.y7{bottom:535.737427px;}
.y4b{bottom:540.424778px;}
.y4c{bottom:540.428190px;}
.y90{bottom:542.586990px;}
.y110{bottom:546.907290px;}
.yc5{bottom:553.377990px;}
.y6{bottom:553.380615px;}
.y4a{bottom:558.067965px;}
.y8e{bottom:560.584102px;}
.y8f{bottom:560.587590px;}
.y10f{bottom:564.547290px;}
.yc4{bottom:571.022490px;}
.y5{bottom:571.023802px;}
.y49{bottom:576.067027px;}
.y8d{bottom:578.227290px;}
.y10e{bottom:582.187290px;}
.y10d{bottom:582.193065px;}
.y4{bottom:588.666990px;}
.y48{bottom:594.066090px;}
.y8c{bottom:596.227740px;}
.y10c{bottom:600.187440px;}
.y3{bottom:606.306690px;}
.y47{bottom:612.065152px;}
.y8a{bottom:613.860315px;}
.y8b{bottom:613.867440px;}
.yc3{bottom:614.587590px;}
.yc2{bottom:614.587740px;}
.y10b{bottom:617.827440px;}
.y10a{bottom:617.828040px;}
.y46{bottom:629.708340px;}
.y89{bottom:631.503502px;}
.yc1{bottom:632.583240px;}
.y109{bottom:635.468040px;}
.y88{bottom:649.146690px;}
.y87{bottom:649.149765px;}
.yc0{bottom:650.227740px;}
.y45{bottom:652.744402px;}
.y108{bottom:653.108040px;}
.y83{bottom:653.826840px;}
.y82{bottom:667.144627px;}
.y86{bottom:667.148827px;}
.y85{bottom:667.504702px;}
.ybf{bottom:667.867440px;}
.y107{bottom:670.748040px;}
.y106{bottom:670.752615px;}
.y44{bottom:675.780465px;}
.y2{bottom:677.227740px;}
.y81{bottom:685.143690px;}
.y84{bottom:685.147890px;}
.ybe{bottom:685.867890px;}
.y105{bottom:688.746990px;}
.y104{bottom:688.748190px;}
.y43{bottom:693.423652px;}
.y80{bottom:702.786877px;}
.ybd{bottom:703.147890px;}
.y102{bottom:706.387890px;}
.y103{bottom:706.388190px;}
.y42{bottom:711.066840px;}
.y41{bottom:711.069765px;}
.y7f{bottom:720.785940px;}
.ybc{bottom:720.792390px;}
.y101{bottom:724.027890px;}
.y100{bottom:724.032465px;}
.y40{bottom:729.068827px;}
.y7e{bottom:738.785002px;}
.yfe{bottom:742.021215px;}
.yff{bottom:742.026840px;}
.ybb{bottom:744.187890px;}
.y3f{bottom:747.067890px;}
.y3e{bottom:747.073290px;}
.y7c{bottom:756.422602px;}
.y7d{bottom:756.428190px;}
.yfd{bottom:759.306840px;}
.yba{bottom:761.832390px;}
.yb2{bottom:769.026840px;}
.y3d{bottom:770.109353px;}
.y7b{bottom:774.065790px;}
.yfc{bottom:776.946840px;}
.yfb{bottom:776.953065px;}
.yb9{bottom:779.112390px;}
.yb6{bottom:779.468190px;}
.yb1{bottom:779.471340px;}
.yb5{bottom:779.476590px;}
.y3c{bottom:788.108415px;}
.y7a{bottom:791.708977px;}
.yfa{bottom:794.947440px;}
.yb7{bottom:797.107590px;}
.yb8{bottom:797.107890px;}
.yb4{bottom:797.472090px;}
.yb0{bottom:797.831340px;}
.y3b{bottom:806.107477px;}
.y79{bottom:809.708040px;}
.yb3{bottom:815.467590px;}
.yaf{bottom:815.826840px;}
.yf9{bottom:837.067290px;}
.y1{bottom:842.467590px;}
.y3a{bottom:847.868040px;}
.y78{bottom:851.828040px;}
.yae{bottom:857.587590px;}
.h31{height:14.862305px;}
.h35{height:17.047852px;}
.h10{height:20.753906px;}
.h16{height:23.466797px;}
.h1b{height:25.813477px;}
.h17{height:27.377930px;}
.h2a{height:28.942383px;}
.h3f{height:29.648438px;}
.h34{height:29.724609px;}
.h57{height:30.164429px;}
.h3e{height:30.234375px;}
.h15{height:31.289062px;}
.h2d{height:32.853516px;}
.h59{height:33.635742px;}
.h19{height:34.595947px;}
.h5a{height:35.200195px;}
.h47{height:35.332031px;}
.h33{height:35.982422px;}
.h55{height:36.068115px;}
.hf{height:36.319336px;}
.h26{height:36.764648px;}
.h2e{height:37.546875px;}
.h58{height:37.792969px;}
.h3b{height:37.801758px;}
.h20{height:38.329102px;}
.h4b{height:38.548828px;}
.h27{height:39.111328px;}
.h38{height:39.284180px;}
.h22{height:39.304688px;}
.h21{height:39.893555px;}
.h1a{height:40.025391px;}
.h5b{height:40.766602px;}
.h25{height:40.816406px;}
.h23{height:41.507812px;}
.h1f{height:41.572266px;}
.h11{height:42.240234px;}
.h5d{height:42.274406px;}
.h24{height:42.328125px;}
.h39{height:43.083984px;}
.hd{height:43.804688px;}
.h36{height:43.839844px;}
.h37{height:44.472656px;}
.h4c{height:44.595703px;}
.h2f{height:44.901123px;}
.h5c{height:45.351562px;}
.h5e{height:46.107422px;}
.hc{height:46.933594px;}
.h5f{height:47.845459px;}
.h4a{height:48.581543px;}
.h30{height:49.130859px;}
.h56{height:49.280273px;}
.h53{height:49.317627px;}
.h2c{height:50.062500px;}
.h1e{height:50.642578px;}
.h13{height:50.789795px;}
.h43{height:50.844727px;}
.h40{height:51.398438px;}
.h46{height:51.500244px;}
.h1d{height:51.525879px;}
.h32{height:51.626953px;}
.h4{height:52.261963px;}
.h2b{height:52.409180px;}
.h4d{height:52.625977px;}
.h3a{height:52.998047px;}
.h42{height:53.191406px;}
.h52{height:53.666016px;}
.h2{height:53.734131px;}
.h60{height:54.421875px;}
.h41{height:54.443115px;}
.h1c{height:54.470215px;}
.h18{height:55.157631px;}
.h29{height:55.206299px;}
.h28{height:55.942383px;}
.h54{height:56.320312px;}
.ha{height:56.678467px;}
.h9{height:57.414551px;}
.h49{height:57.445312px;}
.h3{height:58.201172px;}
.hb{height:58.886719px;}
.h48{height:58.957031px;}
.h4e{height:59.622803px;}
.h44{height:63.360352px;}
.h6{height:65.003906px;}
.h45{height:67.271484px;}
.he{height:68.835938px;}
.h5{height:70.294922px;}
.h8{height:71.050781px;}
.h7{height:71.806641px;}
.h3d{height:71.964844px;}
.h14{height:75.093750px;}
.h3c{height:75.875977px;}
.h51{height:82.916016px;}
.h12{height:86.827148px;}
.h50{height:105.600586px;}
.h4f{height:120.462891px;}
.h0{height:937.995540px;}
.h1{height:938.250000px;}
.w0{width:580.995540px;}
.w1{width:581.250000px;}
.x0{left:0.000000px;}
.x1{left:31.027290px;}
.xd{left:32.108340px;}
.xf{left:33.196777px;}
.x35{left:34.248690px;}
.x6e{left:35.348190px;}
.x6f{left:36.494340px;}
.x78{left:37.508790px;}
.x8c{left:39.315765px;}
.xe{left:47.587590px;}
.x32{left:48.668640px;}
.xc{left:51.908490px;}
.x11{left:53.348790px;}
.x79{left:54.428190px;}
.x4{left:56.588640px;}
.x10{left:57.678465px;}
.x7e{left:59.828490px;}
.x12{left:65.227290px;}
.x45{left:66.306277px;}
.x36{left:68.468790px;}
.x85{left:72.428790px;}
.xa0{left:74.246115px;}
.x2b{left:75.307740px;}
.x9a{left:76.370490px;}
.x93{left:80.348790px;}
.x66{left:81.428190px;}
.xc5{left:84.308790px;}
.x4b{left:86.095665px;}
.x42{left:87.187740px;}
.x8f{left:92.947440px;}
.x9f{left:94.028490px;}
.x2c{left:95.107890px;}
.x7c{left:96.187290px;}
.x5{left:97.988490px;}
.x4d{left:99.428790px;}
.x96{left:101.948490px;}
.x67{left:103.388790px;}
.x55{left:104.827440px;}
.x3b{left:106.628640px;}
.x88{left:108.067290px;}
.x13{left:109.507590px;}
.x14{left:110.947890px;}
.x17{left:112.388190px;}
.xa4{left:113.837302px;}
.x26{left:115.611240px;}
.xa3{left:117.431678px;}
.x1c{left:120.308340px;}
.x94{left:123.907440px;}
.x89{left:125.708640px;}
.x18{left:127.147290px;}
.x5b{left:129.668640px;}
.xb2{left:131.107290px;}
.xac{left:132.188340px;}
.x3c{left:133.628640px;}
.xc2{left:136.507590px;}
.x6d{left:137.947890px;}
.x86{left:139.388190px;}
.xba{left:140.828490px;}
.x53{left:142.268790px;}
.xad{left:143.707440px;}
.xbe{left:145.868040px;}
.x54{left:146.947440px;}
.x3d{left:149.107890px;}
.x2d{left:152.347740px;}
.x2{left:154.147290px;}
.xbf{left:161.348790px;}
.x56{left:162.787440px;}
.x2e{left:163.868490px;}
.x15{left:165.308790px;}
.x97{left:166.388190px;}
.x16{left:167.467590px;}
.x6{left:168.548640px;}
.x99{left:169.983990px;}
.x33{left:171.068340px;}
.xc4{left:172.147890px;}
.x1f{left:174.308340px;}
.x1d{left:176.468790px;}
.x41{left:179.347740px;}
.x7d{left:182.587590px;}
.xaa{left:185.107290px;}
.x37{left:186.188340px;}
.xbb{left:188.348790px;}
.x34{left:189.428190px;}
.x48{left:190.505490px;}
.x7b{left:191.947890px;}
.x38{left:195.187740px;}
.xab{left:196.987290px;}
.x9c{left:198.046740px;}
.x5f{left:201.667590px;}
.xbc{left:205.627590px;}
.x9d{left:208.147290px;}
.x46{left:210.334215px;}
.x27{left:214.628640px;}
.x9b{left:217.855740px;}
.x9e{left:220.027290px;}
.x90{left:221.467590px;}
.x1e{left:224.707440px;}
.x25{left:226.144927px;}
.x57{left:227.588190px;}
.x68{left:228.667590px;}
.x50{left:233.708640px;}
.x91{left:235.147290px;}
.x95{left:238.027890px;}
.xae{left:239.468190px;}
.xc6{left:244.148340px;}
.x7{left:246.668040px;}
.x28{left:248.108340px;}
.xc0{left:249.548640px;}
.x49{left:254.588190px;}
.x2f{left:255.667590px;}
.xc8{left:258.559328px;}
.xc1{left:261.428790px;}
.x3e{left:264.307740px;}
.x4a{left:266.107290px;}
.x8{left:273.668040px;}
.x30{left:278.348190px;}
.x31{left:279.788640px;}
.xaf{left:281.588190px;}
.x20{left:284.109840px;}
.xa5{left:285.213840px;}
.x21{left:286.985340px;}
.x69{left:288.788040px;}
.x47{left:291.307740px;}
.x8d{left:295.267740px;}
.x7f{left:300.308790px;}
.xa1{left:302.467590px;}
.x73{left:303.548640px;}
.xb3{left:305.707440px;}
.x9{left:310.748640px;}
.x8e{left:312.907440px;}
.xa2{left:314.347740px;}
.xb9{left:316.867440px;}
.x39{left:320.107290px;}
.x29{left:328.027290px;}
.x92{left:329.828490px;}
.xb4{left:331.628040px;}
.x74{left:334.868040px;}
.x75{left:338.468790px;}
.x22{left:339.907440px;}
.x19{left:341.347740px;}
.x77{left:342.418927px;}
.xa7{left:344.228340px;}
.x76{left:345.307740px;}
.x80{left:348.188340px;}
.xb7{left:351.067290px;}
.x3f{left:352.507590px;}
.x87{left:355.027290px;}
.x1a{left:357.187740px;}
.xa{left:358.987290px;}
.x40{left:361.147890px;}
.xb8{left:364.387740px;}
.xbd{left:366.548190px;}
.x6a{left:368.347740px;}
.x1b{left:379.868490px;}
.x4c{left:385.268790px;}
.xb{left:386.348190px;}
.x4e{left:389.947440px;}
.xa6{left:392.468790px;}
.x6b{left:394.268340px;}
.x70{left:395.347740px;}
.x23{left:399.668640px;}
.x2a{left:402.185865px;}
.x24{left:403.267740px;}
.x7a{left:404.348790px;}
.x8a{left:407.227740px;}
.x83{left:409.388190px;}
.x5e{left:415.147890px;}
.x84{left:417.308340px;}
.x8b{left:418.748640px;}
.xc3{left:421.988490px;}
.x6c{left:427.388790px;}
.x43{left:430.267740px;}
.x58{left:436.747440px;}
.x98{left:438.548640px;}
.x71{left:442.508790px;}
.xa8{left:451.508190px;}
.x72{left:453.307740px;}
.x59{left:454.388790px;}
.x60{left:456.547590px;}
.x4f{left:457.987890px;}
.x3{left:461.947890px;}
.xa9{left:466.268790px;}
.x63{left:467.348190px;}
.x64{left:469.508790px;}
.x61{left:472.028490px;}
.xc7{left:474.187290px;}
.x81{left:475.627590px;}
.x51{left:477.788040px;}
.x65{left:481.027890px;}
.x82{left:484.628640px;}
.x3a{left:486.787440px;}
.x52{left:489.668040px;}
.x44{left:491.467590px;}
.x5c{left:496.868040px;}
.xb0{left:505.147290px;}
.xb1{left:508.027890px;}
.x62{left:511.628640px;}
.xb5{left:514.148340px;}
.xb6{left:520.628040px;}
.x5d{left:522.068340px;}
.x5a{left:523.868040px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:1.265333pt;}
.ls2b{letter-spacing:-16.142933pt;}
.ls1b{letter-spacing:-15.114867pt;}
.ls1c{letter-spacing:-13.725600pt;}
.ls20{letter-spacing:-13.709400pt;}
.ls1a{letter-spacing:-12.009067pt;}
.ls29{letter-spacing:-11.784667pt;}
.ls1d{letter-spacing:-11.455200pt;}
.ls53{letter-spacing:-10.461800pt;}
.ls63{letter-spacing:-10.283267pt;}
.ls3e{letter-spacing:-8.910867pt;}
.ls81{letter-spacing:-8.788800pt;}
.ls1e{letter-spacing:-8.399000pt;}
.ls85{letter-spacing:-8.098400pt;}
.ls14{letter-spacing:-7.332000pt;}
.ls7e{letter-spacing:-7.232533pt;}
.ls5a{letter-spacing:-6.852267pt;}
.lsad{letter-spacing:-6.570667pt;}
.ls15{letter-spacing:-6.342600pt;}
.ls11{letter-spacing:-6.263667pt;}
.ls86{letter-spacing:-6.220800pt;}
.lsb0{letter-spacing:-5.680000pt;}
.ls8c{letter-spacing:-5.409600pt;}
.lsae{letter-spacing:-5.259333pt;}
.ls91{letter-spacing:-5.238000pt;}
.ls1f{letter-spacing:-4.798533pt;}
.lsab{letter-spacing:-4.601333pt;}
.ls9a{letter-spacing:-4.233600pt;}
.ls25{letter-spacing:-4.112333pt;}
.ls89{letter-spacing:-4.056000pt;}
.ls62{letter-spacing:-3.945600pt;}
.ls60{letter-spacing:-3.887333pt;}
.ls21{letter-spacing:-3.819600pt;}
.ls41{letter-spacing:-3.501067pt;}
.ls51{letter-spacing:-3.470400pt;}
.ls5f{letter-spacing:-3.426133pt;}
.ls84{letter-spacing:-3.379200pt;}
.lsa9{letter-spacing:-3.285333pt;}
.ls90{letter-spacing:-3.252667pt;}
.ls17{letter-spacing:-2.891200pt;}
.ls19{letter-spacing:-2.739933pt;}
.ls8b{letter-spacing:-2.702400pt;}
.lsd{letter-spacing:-2.700133pt;}
.lsaa{letter-spacing:-2.627333pt;}
.ls8f{letter-spacing:-2.617200pt;}
.ls30{letter-spacing:-2.556800pt;}
.ls98{letter-spacing:-2.358533pt;}
.ls7f{letter-spacing:-2.251800pt;}
.ls93{letter-spacing:-2.193000pt;}
.ls10{letter-spacing:-2.139000pt;}
.ls23{letter-spacing:-2.058600pt;}
.ls66{letter-spacing:-2.038400pt;}
.ls54{letter-spacing:-2.001067pt;}
.ls43{letter-spacing:-1.999200pt;}
.lsac{letter-spacing:-1.974000pt;}
.ls31{letter-spacing:-1.965333pt;}
.ls35{letter-spacing:-1.874667pt;}
.ls9d{letter-spacing:-1.800000pt;}
.ls2f{letter-spacing:-1.771200pt;}
.lse{letter-spacing:-1.732400pt;}
.ls3f{letter-spacing:-1.507333pt;}
.ls16{letter-spacing:-1.372400pt;}
.ls4b{letter-spacing:-1.356600pt;}
.ls80{letter-spacing:-1.353600pt;}
.lsa7{letter-spacing:-1.316000pt;}
.ls5c{letter-spacing:-1.315600pt;}
.ls96{letter-spacing:-1.310400pt;}
.ls2e{letter-spacing:-1.309000pt;}
.lsa6{letter-spacing:-1.297200pt;}
.ls6c{letter-spacing:-1.213800pt;}
.ls42{letter-spacing:-0.875533pt;}
.ls40{letter-spacing:-0.787600pt;}
.ls47{letter-spacing:-0.748800pt;}
.ls3a{letter-spacing:-0.705667pt;}
.ls18{letter-spacing:-0.686200pt;}
.ls83{letter-spacing:-0.676800pt;}
.ls2d{letter-spacing:-0.668267pt;}
.ls2a{letter-spacing:-0.666400pt;}
.lsa8{letter-spacing:-0.658000pt;}
.ls27{letter-spacing:-0.656333pt;}
.ls97{letter-spacing:-0.655200pt;}
.ls24{letter-spacing:-0.651933pt;}
.lsaf{letter-spacing:-0.616667pt;}
.ls4a{letter-spacing:-0.572400pt;}
.lsc{letter-spacing:0.000000pt;}
.ls9e{letter-spacing:0.618800pt;}
.ls3d{letter-spacing:0.628333pt;}
.ls56{letter-spacing:0.652800pt;}
.ls77{letter-spacing:0.655200pt;}
.ls9{letter-spacing:0.656333pt;}
.lsa0{letter-spacing:0.658000pt;}
.ls6b{letter-spacing:0.665000pt;}
.ls92{letter-spacing:0.666667pt;}
.ls57{letter-spacing:0.667400pt;}
.ls70{letter-spacing:0.676800pt;}
.ls49{letter-spacing:0.679467pt;}
.ls0{letter-spacing:0.686200pt;}
.ls6d{letter-spacing:0.705600pt;}
.ls48{letter-spacing:0.715333pt;}
.ls38{letter-spacing:0.719467pt;}
.ls12{letter-spacing:0.731600pt;}
.ls22{letter-spacing:0.759000pt;}
.ls6a{letter-spacing:0.770933pt;}
.ls46{letter-spacing:0.784400pt;}
.ls88{letter-spacing:0.801600pt;}
.ls58{letter-spacing:0.823867pt;}
.ls8{letter-spacing:1.309000pt;}
.ls78{letter-spacing:1.310400pt;}
.ls9f{letter-spacing:1.316000pt;}
.ls67{letter-spacing:1.332000pt;}
.ls71{letter-spacing:1.353600pt;}
.ls9b{letter-spacing:1.354200pt;}
.ls4e{letter-spacing:1.358933pt;}
.ls4{letter-spacing:1.372400pt;}
.ls33{letter-spacing:1.381333pt;}
.ls9c{letter-spacing:1.386000pt;}
.ls65{letter-spacing:1.387200pt;}
.ls87{letter-spacing:1.391600pt;}
.ls13{letter-spacing:1.407400pt;}
.ls3c{letter-spacing:1.430667pt;}
.ls4c{letter-spacing:1.437333pt;}
.ls8e{letter-spacing:1.488000pt;}
.ls8a{letter-spacing:1.494800pt;}
.ls94{letter-spacing:1.536533pt;}
.ls36{letter-spacing:1.560533pt;}
.ls5b{letter-spacing:1.642800pt;}
.ls44{letter-spacing:1.704000pt;}
.ls82{letter-spacing:1.740800pt;}
.ls37{letter-spacing:1.822333pt;}
.ls64{letter-spacing:1.914000pt;}
.lsa{letter-spacing:1.965333pt;}
.ls79{letter-spacing:1.965600pt;}
.lsa1{letter-spacing:1.974000pt;}
.ls6e{letter-spacing:2.030400pt;}
.ls50{letter-spacing:2.038400pt;}
.ls2{letter-spacing:2.058600pt;}
.ls68{letter-spacing:2.086400pt;}
.ls5e{letter-spacing:2.088000pt;}
.ls69{letter-spacing:2.149867pt;}
.ls61{letter-spacing:2.168400pt;}
.ls26{letter-spacing:2.309267pt;}
.ls52{letter-spacing:2.404533pt;}
.ls7a{letter-spacing:2.617200pt;}
.lsb{letter-spacing:2.618000pt;}
.lsa3{letter-spacing:2.627333pt;}
.ls6f{letter-spacing:2.702400pt;}
.ls4f{letter-spacing:2.714133pt;}
.ls5{letter-spacing:2.739933pt;}
.ls2c{letter-spacing:2.818667pt;}
.ls45{letter-spacing:2.986667pt;}
.ls99{letter-spacing:3.264000pt;}
.ls7c{letter-spacing:3.272400pt;}
.lsa2{letter-spacing:3.285333pt;}
.ls75{letter-spacing:3.379200pt;}
.ls1{letter-spacing:3.426133pt;}
.lsf{letter-spacing:3.521600pt;}
.ls7b{letter-spacing:3.927600pt;}
.ls8d{letter-spacing:3.942867pt;}
.lsa4{letter-spacing:3.943333pt;}
.ls73{letter-spacing:4.056000pt;}
.ls4d{letter-spacing:4.073067pt;}
.ls5d{letter-spacing:4.109467pt;}
.ls7{letter-spacing:4.112333pt;}
.ls59{letter-spacing:4.533333pt;}
.ls7d{letter-spacing:4.582800pt;}
.ls74{letter-spacing:4.732800pt;}
.ls6{letter-spacing:4.798533pt;}
.ls39{letter-spacing:5.000800pt;}
.ls95{letter-spacing:5.217000pt;}
.ls3b{letter-spacing:5.225600pt;}
.lsa5{letter-spacing:5.259333pt;}
.ls72{letter-spacing:5.409600pt;}
.ls3{letter-spacing:5.484733pt;}
.ls32{letter-spacing:6.548667pt;}
.ls34{letter-spacing:7.538467pt;}
.ls76{letter-spacing:10.819200pt;}
.ls28{letter-spacing:17.819667pt;}
.ls55{letter-spacing:25.621333pt;}
.ws0{word-spacing:0.000000pt;}
._23{margin-left:-1438.406600pt;}
._39{margin-left:-30.591867pt;}
._30{margin-left:-16.437333pt;}
._29{margin-left:-10.789400pt;}
._22{margin-left:-9.134733pt;}
._7{margin-left:-8.210067pt;}
._1e{margin-left:-6.574867pt;}
._20{margin-left:-5.669667pt;}
._5{margin-left:-4.720667pt;}
._6{margin-left:-3.440733pt;}
._9{margin-left:-2.170533pt;}
._d{margin-left:-1.153400pt;}
._8{width:1.289667pt;}
._4{width:3.022200pt;}
._2{width:4.039333pt;}
._1d{width:5.178133pt;}
._3{width:6.180667pt;}
._f{width:7.304867pt;}
._a{width:8.341467pt;}
._3c{width:9.245733pt;}
._b{width:10.185933pt;}
._c{width:11.942800pt;}
._1c{width:13.286000pt;}
._11{width:14.828733pt;}
._0{width:15.962667pt;}
._2e{width:16.897067pt;}
._27{width:17.909333pt;}
._1{width:18.841800pt;}
._21{width:19.817067pt;}
._2d{width:20.756333pt;}
._3e{width:22.389400pt;}
._35{width:24.012133pt;}
._3d{width:27.705333pt;}
._1f{width:28.640467pt;}
._3b{width:31.964267pt;}
._36{width:33.219867pt;}
._13{width:34.227267pt;}
._37{width:36.957467pt;}
._38{width:38.787333pt;}
._1a{width:40.568533pt;}
._40{width:41.866133pt;}
._1b{width:43.147867pt;}
._34{width:44.773333pt;}
._3a{width:50.968600pt;}
._33{width:52.613533pt;}
._12{width:77.618467pt;}
._25{width:183.468467pt;}
._3f{width:188.002733pt;}
._2c{width:193.128800pt;}
._16{width:195.416133pt;}
._19{width:196.370000pt;}
._28{width:198.428600pt;}
._17{width:202.643133pt;}
._15{width:204.244267pt;}
._24{width:210.176733pt;}
._e{width:215.204000pt;}
._26{width:219.063267pt;}
._10{width:224.148933pt;}
._2b{width:227.263600pt;}
._2a{width:253.903733pt;}
._32{width:407.194000pt;}
._31{width:418.591733pt;}
._18{width:608.503667pt;}
._14{width:615.852333pt;}
._2f{width:617.730867pt;}
.fs26{font-size:12.666667pt;}
.fs2a{font-size:15.333333pt;}
.fsd{font-size:18.666667pt;}
.fs13{font-size:20.000000pt;}
.fs16{font-size:22.000000pt;}
.fs14{font-size:23.333333pt;}
.fs20{font-size:24.666667pt;}
.fs29{font-size:25.333333pt;}
.fs12{font-size:26.666667pt;}
.fs38{font-size:27.333333pt;}
.fs22{font-size:28.000000pt;}
.fs39{font-size:28.666667pt;}
.fs3a{font-size:30.000000pt;}
.fs28{font-size:30.666667pt;}
.fs15{font-size:31.333333pt;}
.fs23{font-size:32.000000pt;}
.fsc{font-size:32.666667pt;}
.fs1d{font-size:33.333333pt;}
.fs1b{font-size:34.000000pt;}
.fs1c{font-size:34.666667pt;}
.fs2c{font-size:35.333333pt;}
.fse{font-size:36.000000pt;}
.fs1a{font-size:36.666667pt;}
.fsa{font-size:37.333333pt;}
.fs2d{font-size:38.000000pt;}
.fs2b{font-size:38.666667pt;}
.fs33{font-size:39.333333pt;}
.fs9{font-size:40.000000pt;}
.fs24{font-size:40.666667pt;}
.fs37{font-size:42.000000pt;}
.fs21{font-size:42.666667pt;}
.fs25{font-size:43.333333pt;}
.fs27{font-size:44.000000pt;}
.fs19{font-size:44.666667pt;}
.fs31{font-size:45.333333pt;}
.fs10{font-size:46.000000pt;}
.fs18{font-size:46.666667pt;}
.fs2{font-size:47.333333pt;}
.fs2e{font-size:48.000000pt;}
.fs0{font-size:48.666667pt;}
.fs17{font-size:49.333333pt;}
.fs1f{font-size:50.000000pt;}
.fs1e{font-size:50.666667pt;}
.fs1{font-size:51.333333pt;}
.fs7{font-size:52.000000pt;}
.fs8{font-size:53.333333pt;}
.fs32{font-size:54.000000pt;}
.fs4{font-size:57.333333pt;}
.fsb{font-size:58.666667pt;}
.fs30{font-size:61.333333pt;}
.fs3{font-size:62.000000pt;}
.fs6{font-size:62.666667pt;}
.fs5{font-size:63.333333pt;}
.fs11{font-size:64.000000pt;}
.fs2f{font-size:64.666667pt;}
.fs36{font-size:70.666667pt;}
.fsf{font-size:74.000000pt;}
.fs35{font-size:90.000000pt;}
.fs34{font-size:102.666667pt;}
.y0{bottom:0.000000pt;}
.y77{bottom:86.139947pt;}
.y39{bottom:92.860613pt;}
.y38{bottom:92.864513pt;}
.yad{bottom:95.100347pt;}
.y75{bottom:96.699947pt;}
.y76{bottom:98.299547pt;}
.yf7{bottom:101.819547pt;}
.yf8{bottom:102.140347pt;}
.y37{bottom:103.580347pt;}
.yab{bottom:105.339680pt;}
.yac{bottom:106.619947pt;}
.yf6{bottom:113.981347pt;}
.y36{bottom:115.580347pt;}
.yf4{bottom:125.499813pt;}
.yf5{bottom:125.500213pt;}
.yf0{bottom:125.819547pt;}
.yef{bottom:125.820613pt;}
.y35{bottom:126.140347pt;}
.yf2{bottom:137.016080pt;}
.yf3{bottom:137.019813pt;}
.yee{bottom:137.340613pt;}
.y71{bottom:137.979280pt;}
.y34{bottom:138.616480pt;}
.ya9{bottom:145.337247pt;}
.yaa{bottom:145.340080pt;}
.yed{bottom:148.539280pt;}
.yec{bottom:148.542613pt;}
.yf1{bottom:148.860080pt;}
.y33{bottom:149.818147pt;}
.y70{bottom:153.657147pt;}
.yea{bottom:160.060347pt;}
.y32{bottom:161.019813pt;}
.ya8{bottom:161.020080pt;}
.yeb{bottom:161.340613pt;}
.y6f{bottom:169.339980pt;}
.ya7{bottom:181.180247pt;}
.y6e{bottom:185.339147pt;}
.ya5{bottom:197.175813pt;}
.ya6{bottom:197.179413pt;}
.y129{bottom:197.814413pt;}
.y6d{bottom:201.338313pt;}
.ye9{bottom:208.056213pt;}
.y31{bottom:209.346447pt;}
.ya4{bottom:212.858647pt;}
.y128{bottom:217.659413pt;}
.y127{bottom:217.664280pt;}
.y69{bottom:221.181913pt;}
.ye8{bottom:223.740213pt;}
.y30{bottom:224.700780pt;}
.ya3{bottom:228.541480pt;}
.y126{bottom:233.659280pt;}
.y6c{bottom:237.181313pt;}
.y68{bottom:237.497413pt;}
.ye7{bottom:239.736213pt;}
.y2f{bottom:240.699947pt;}
.ya2{bottom:244.540647pt;}
.y125{bottom:249.339280pt;}
.y6b{bottom:253.180480pt;}
.y67{bottom:253.496580pt;}
.ye5{bottom:255.415813pt;}
.ye6{bottom:255.420213pt;}
.y2d{bottom:256.376580pt;}
.y2e{bottom:256.379680pt;}
.ya1{bottom:260.539813pt;}
.y124{bottom:265.019280pt;}
.y123{bottom:265.020480pt;}
.y6a{bottom:266.620347pt;}
.y65{bottom:269.177780pt;}
.y66{bottom:269.179413pt;}
.ye4{bottom:271.099813pt;}
.ye3{bottom:271.100080pt;}
.y2b{bottom:272.055780pt;}
.y2c{bottom:272.059413pt;}
.y5d{bottom:273.979813pt;}
.y9f{bottom:276.212213pt;}
.ya0{bottom:276.219547pt;}
.y122{bottom:280.700480pt;}
.y121{bottom:280.709947pt;}
.y63{bottom:284.542313pt;}
.y5c{bottom:284.859780pt;}
.y64{bottom:284.860613pt;}
.ye2{bottom:287.096080pt;}
.y2a{bottom:287.738613pt;}
.y9e{bottom:292.211380pt;}
.y120{bottom:296.704947pt;}
.y73{bottom:300.856447pt;}
.y62{bottom:300.857813pt;}
.y5b{bottom:300.858947pt;}
.y74{bottom:300.859680pt;}
.ye1{bottom:302.780080pt;}
.y29{bottom:303.737780pt;}
.y9d{bottom:308.210547pt;}
.y11f{bottom:312.699947pt;}
.y72{bottom:316.539280pt;}
.y61{bottom:316.540647pt;}
.y5a{bottom:316.541780pt;}
.ye0{bottom:318.452613pt;}
.y28{bottom:319.420613pt;}
.y27{bottom:319.426580pt;}
.y9c{bottom:323.893380pt;}
.y11d{bottom:328.379413pt;}
.y11e{bottom:328.379680pt;}
.y5f{bottom:332.220480pt;}
.y5e{bottom:332.224613pt;}
.y60{bottom:332.539813pt;}
.ydf{bottom:334.136613pt;}
.y26{bottom:334.780913pt;}
.y9b{bottom:339.576213pt;}
.y11c{bottom:344.059413pt;}
.y11b{bottom:344.060480pt;}
.y59{bottom:348.223780pt;}
.yde{bottom:349.820613pt;}
.ydd{bottom:349.823547pt;}
.y22{bottom:350.457513pt;}
.yd{bottom:350.459280pt;}
.yc{bottom:350.463480pt;}
.y23{bottom:350.780080pt;}
.y9a{bottom:355.575380pt;}
.y11a{bottom:359.740480pt;}
.y119{bottom:359.750480pt;}
.y58{bottom:364.539280pt;}
.ydb{bottom:365.812480pt;}
.ydc{bottom:365.819547pt;}
.y21{bottom:366.140347pt;}
.y20{bottom:366.144447pt;}
.yb{bottom:366.462647pt;}
.y99{bottom:371.258213pt;}
.y118{bottom:375.430480pt;}
.y56{bottom:380.220380pt;}
.y57{bottom:380.220480pt;}
.yd6{bottom:381.472480pt;}
.yd3{bottom:381.484480pt;}
.yd0{bottom:381.496480pt;}
.yd9{bottom:381.499280pt;}
.ycb{bottom:381.503813pt;}
.y18{bottom:381.807913pt;}
.y25{bottom:381.817247pt;}
.y15{bottom:381.820080pt;}
.y1f{bottom:381.827280pt;}
.ya{bottom:382.145480pt;}
.y98{bottom:387.257380pt;}
.y117{bottom:391.110480pt;}
.y54{bottom:396.219547pt;}
.yd8{bottom:397.144480pt;}
.yd5{bottom:397.156480pt;}
.yd2{bottom:397.168480pt;}
.ycf{bottom:397.180480pt;}
.yda{bottom:397.183280pt;}
.ycd{bottom:397.187813pt;}
.y17{bottom:397.490747pt;}
.y14{bottom:397.496580pt;}
.y9{bottom:397.499813pt;}
.y24{bottom:397.500080pt;}
.y1e{bottom:397.510113pt;}
.y96{bottom:402.939613pt;}
.y97{bottom:402.940213pt;}
.y116{bottom:407.105480pt;}
.y52{bottom:411.900613pt;}
.y53{bottom:412.216947pt;}
.y55{bottom:412.218713pt;}
.y50{bottom:412.219447pt;}
.y51{bottom:412.219947pt;}
.yd7{bottom:412.828480pt;}
.yd4{bottom:412.840480pt;}
.yd1{bottom:412.852480pt;}
.yce{bottom:412.859813pt;}
.y1d{bottom:412.864447pt;}
.y16{bottom:413.173580pt;}
.y8{bottom:413.175547pt;}
.y13{bottom:413.179413pt;}
.ycc{bottom:413.183813pt;}
.y95{bottom:418.938780pt;}
.y115{bottom:423.100480pt;}
.yca{bottom:426.300080pt;}
.y4f{bottom:428.218613pt;}
.y1b{bottom:428.860513pt;}
.y1c{bottom:429.179947pt;}
.yc9{bottom:429.183280pt;}
.y10{bottom:432.699947pt;}
.y94{bottom:434.937947pt;}
.y114{bottom:438.780480pt;}
.y113{bottom:438.784813pt;}
.y4e{bottom:443.901447pt;}
.y1a{bottom:444.540113pt;}
.yc8{bottom:444.543280pt;}
.y12{bottom:444.856447pt;}
.yf{bottom:444.859680pt;}
.y93{bottom:450.937113pt;}
.y112{bottom:454.464813pt;}
.y4d{bottom:459.900613pt;}
.y19{bottom:460.209913pt;}
.ye{bottom:460.219947pt;}
.yc7{bottom:460.523547pt;}
.y11{bottom:460.539280pt;}
.y91{bottom:466.616713pt;}
.y92{bottom:466.619947pt;}
.y111{bottom:470.459813pt;}
.yc6{bottom:476.207547pt;}
.y7{bottom:476.211047pt;}
.y4b{bottom:480.377580pt;}
.y4c{bottom:480.380613pt;}
.y90{bottom:482.299547pt;}
.y110{bottom:486.139813pt;}
.yc5{bottom:491.891547pt;}
.y6{bottom:491.893880pt;}
.y4a{bottom:496.060413pt;}
.y8e{bottom:498.296980pt;}
.y8f{bottom:498.300080pt;}
.y10f{bottom:501.819813pt;}
.yc4{bottom:507.575547pt;}
.y5{bottom:507.576713pt;}
.y49{bottom:512.059580pt;}
.y8d{bottom:513.979813pt;}
.y10e{bottom:517.499813pt;}
.y10d{bottom:517.504947pt;}
.y4{bottom:523.259547pt;}
.y48{bottom:528.058747pt;}
.y8c{bottom:529.980213pt;}
.y10c{bottom:533.499947pt;}
.y3{bottom:538.939280pt;}
.y47{bottom:544.057913pt;}
.y8a{bottom:545.653613pt;}
.y8b{bottom:545.659947pt;}
.yc3{bottom:546.300080pt;}
.yc2{bottom:546.300213pt;}
.y10b{bottom:549.179947pt;}
.y10a{bottom:549.180480pt;}
.y46{bottom:559.740747pt;}
.y89{bottom:561.336447pt;}
.yc1{bottom:562.296213pt;}
.y109{bottom:564.860480pt;}
.y88{bottom:577.019280pt;}
.y87{bottom:577.022013pt;}
.yc0{bottom:577.980213pt;}
.y45{bottom:580.217247pt;}
.y108{bottom:580.540480pt;}
.y83{bottom:581.179413pt;}
.y82{bottom:593.017447pt;}
.y86{bottom:593.021180pt;}
.y85{bottom:593.337513pt;}
.ybf{bottom:593.659947pt;}
.y107{bottom:596.220480pt;}
.y106{bottom:596.224547pt;}
.y44{bottom:600.693747pt;}
.y2{bottom:601.980213pt;}
.y81{bottom:609.016613pt;}
.y84{bottom:609.020347pt;}
.ybe{bottom:609.660347pt;}
.y105{bottom:612.219547pt;}
.y104{bottom:612.220613pt;}
.y43{bottom:616.376580pt;}
.y80{bottom:624.699447pt;}
.ybd{bottom:625.020347pt;}
.y102{bottom:627.900347pt;}
.y103{bottom:627.900613pt;}
.y42{bottom:632.059413pt;}
.y41{bottom:632.062013pt;}
.y7f{bottom:640.698613pt;}
.ybc{bottom:640.704347pt;}
.y101{bottom:643.580347pt;}
.y100{bottom:643.584413pt;}
.y40{bottom:648.061180pt;}
.y7e{bottom:656.697780pt;}
.yfe{bottom:659.574413pt;}
.yff{bottom:659.579413pt;}
.ybb{bottom:661.500347pt;}
.y3f{bottom:664.060347pt;}
.y3e{bottom:664.065147pt;}
.y7c{bottom:672.375647pt;}
.y7d{bottom:672.380613pt;}
.yfd{bottom:674.939413pt;}
.yba{bottom:677.184347pt;}
.yb2{bottom:683.579413pt;}
.y3d{bottom:684.541647pt;}
.y7b{bottom:688.058480pt;}
.yfc{bottom:690.619413pt;}
.yfb{bottom:690.624947pt;}
.yb9{bottom:692.544347pt;}
.yb6{bottom:692.860613pt;}
.yb1{bottom:692.863413pt;}
.yb5{bottom:692.868080pt;}
.y3c{bottom:700.540813pt;}
.y7a{bottom:703.741313pt;}
.yfa{bottom:706.619947pt;}
.yb7{bottom:708.540080pt;}
.yb8{bottom:708.540347pt;}
.yb4{bottom:708.864080pt;}
.yb0{bottom:709.183413pt;}
.y3b{bottom:716.539980pt;}
.y79{bottom:719.740480pt;}
.yb3{bottom:724.860080pt;}
.yaf{bottom:725.179413pt;}
.yf9{bottom:744.059813pt;}
.y1{bottom:748.860080pt;}
.y3a{bottom:753.660480pt;}
.y78{bottom:757.180480pt;}
.yae{bottom:762.300080pt;}
.h31{height:13.210937pt;}
.h35{height:15.153646pt;}
.h10{height:18.447917pt;}
.h16{height:20.859375pt;}
.h1b{height:22.945312pt;}
.h17{height:24.335938pt;}
.h2a{height:25.726562pt;}
.h3f{height:26.354167pt;}
.h34{height:26.421875pt;}
.h57{height:26.812826pt;}
.h3e{height:26.875000pt;}
.h15{height:27.812500pt;}
.h2d{height:29.203125pt;}
.h59{height:29.898438pt;}
.h19{height:30.751953pt;}
.h5a{height:31.289062pt;}
.h47{height:31.406250pt;}
.h33{height:31.984375pt;}
.h55{height:32.060547pt;}
.hf{height:32.283854pt;}
.h26{height:32.679688pt;}
.h2e{height:33.375000pt;}
.h58{height:33.593750pt;}
.h3b{height:33.601562pt;}
.h20{height:34.070312pt;}
.h4b{height:34.265625pt;}
.h27{height:34.765625pt;}
.h38{height:34.919271pt;}
.h22{height:34.937500pt;}
.h21{height:35.460938pt;}
.h1a{height:35.578125pt;}
.h5b{height:36.236979pt;}
.h25{height:36.281250pt;}
.h23{height:36.895833pt;}
.h1f{height:36.953125pt;}
.h11{height:37.546875pt;}
.h5d{height:37.577250pt;}
.h24{height:37.625000pt;}
.h39{height:38.296875pt;}
.hd{height:38.937500pt;}
.h36{height:38.968750pt;}
.h37{height:39.531250pt;}
.h4c{height:39.640625pt;}
.h2f{height:39.912109pt;}
.h5c{height:40.312500pt;}
.h5e{height:40.984375pt;}
.hc{height:41.718750pt;}
.h5f{height:42.529297pt;}
.h4a{height:43.183594pt;}
.h30{height:43.671875pt;}
.h56{height:43.804688pt;}
.h53{height:43.837891pt;}
.h2c{height:44.500000pt;}
.h1e{height:45.015625pt;}
.h13{height:45.146484pt;}
.h43{height:45.195312pt;}
.h40{height:45.687500pt;}
.h46{height:45.777995pt;}
.h1d{height:45.800781pt;}
.h32{height:45.890625pt;}
.h4{height:46.455078pt;}
.h2b{height:46.585938pt;}
.h4d{height:46.778646pt;}
.h3a{height:47.109375pt;}
.h42{height:47.281250pt;}
.h52{height:47.703125pt;}
.h2{height:47.763672pt;}
.h60{height:48.375000pt;}
.h41{height:48.393880pt;}
.h1c{height:48.417969pt;}
.h18{height:49.029005pt;}
.h29{height:49.072266pt;}
.h28{height:49.726562pt;}
.h54{height:50.062500pt;}
.ha{height:50.380859pt;}
.h9{height:51.035156pt;}
.h49{height:51.062500pt;}
.h3{height:51.734375pt;}
.hb{height:52.343750pt;}
.h48{height:52.406250pt;}
.h4e{height:52.998047pt;}
.h44{height:56.320312pt;}
.h6{height:57.781250pt;}
.h45{height:59.796875pt;}
.he{height:61.187500pt;}
.h5{height:62.484375pt;}
.h8{height:63.156250pt;}
.h7{height:63.828125pt;}
.h3d{height:63.968750pt;}
.h14{height:66.750000pt;}
.h3c{height:67.445312pt;}
.h51{height:73.703125pt;}
.h12{height:77.179688pt;}
.h50{height:93.867188pt;}
.h4f{height:107.078125pt;}
.h0{height:833.773813pt;}
.h1{height:834.000000pt;}
.w0{width:516.440480pt;}
.w1{width:516.666667pt;}
.x0{left:0.000000pt;}
.x1{left:27.579813pt;}
.xd{left:28.540747pt;}
.xf{left:29.508247pt;}
.x35{left:30.443280pt;}
.x6e{left:31.420613pt;}
.x6f{left:32.439413pt;}
.x78{left:33.341147pt;}
.x8c{left:34.947347pt;}
.xe{left:42.300080pt;}
.x32{left:43.261013pt;}
.xc{left:46.140880pt;}
.x11{left:47.421147pt;}
.x79{left:48.380613pt;}
.x4{left:50.301013pt;}
.x10{left:51.269747pt;}
.x7e{left:53.180880pt;}
.x12{left:57.979813pt;}
.x45{left:58.938913pt;}
.x36{left:60.861147pt;}
.x85{left:64.381147pt;}
.xa0{left:65.996547pt;}
.x2b{left:66.940213pt;}
.x9a{left:67.884880pt;}
.x93{left:71.421147pt;}
.x66{left:72.380613pt;}
.xc5{left:74.941147pt;}
.x4b{left:76.529480pt;}
.x42{left:77.500213pt;}
.x8f{left:82.619947pt;}
.x9f{left:83.580880pt;}
.x2c{left:84.540347pt;}
.x7c{left:85.499813pt;}
.x5{left:87.100880pt;}
.x4d{left:88.381147pt;}
.x96{left:90.620880pt;}
.x67{left:91.901147pt;}
.x55{left:93.179947pt;}
.x3b{left:94.781013pt;}
.x88{left:96.059813pt;}
.x13{left:97.340080pt;}
.x14{left:98.620347pt;}
.x17{left:99.900613pt;}
.xa4{left:101.188713pt;}
.x26{left:102.765547pt;}
.xa3{left:104.383713pt;}
.x1c{left:106.940747pt;}
.x94{left:110.139947pt;}
.x89{left:111.741013pt;}
.x18{left:113.019813pt;}
.x5b{left:115.261013pt;}
.xb2{left:116.539813pt;}
.xac{left:117.500747pt;}
.x3c{left:118.781013pt;}
.xc2{left:121.340080pt;}
.x6d{left:122.620347pt;}
.x86{left:123.900613pt;}
.xba{left:125.180880pt;}
.x53{left:126.461147pt;}
.xad{left:127.739947pt;}
.xbe{left:129.660480pt;}
.x54{left:130.619947pt;}
.x3d{left:132.540347pt;}
.x2d{left:135.420213pt;}
.x2{left:137.019813pt;}
.xbf{left:143.421147pt;}
.x56{left:144.699947pt;}
.x2e{left:145.660880pt;}
.x15{left:146.941147pt;}
.x97{left:147.900613pt;}
.x16{left:148.860080pt;}
.x6{left:149.821013pt;}
.x99{left:151.096880pt;}
.x33{left:152.060747pt;}
.xc4{left:153.020347pt;}
.x1f{left:154.940747pt;}
.x1d{left:156.861147pt;}
.x41{left:159.420213pt;}
.x7d{left:162.300080pt;}
.xaa{left:164.539813pt;}
.x37{left:165.500747pt;}
.xbb{left:167.421147pt;}
.x34{left:168.380613pt;}
.x48{left:169.338213pt;}
.x7b{left:170.620347pt;}
.x38{left:173.500213pt;}
.xab{left:175.099813pt;}
.x9c{left:176.041547pt;}
.x5f{left:179.260080pt;}
.xbc{left:182.780080pt;}
.x9d{left:185.019813pt;}
.x46{left:186.963747pt;}
.x27{left:190.781013pt;}
.x9b{left:193.649547pt;}
.x9e{left:195.579813pt;}
.x90{left:196.860080pt;}
.x1e{left:199.739947pt;}
.x25{left:201.017713pt;}
.x57{left:202.300613pt;}
.x68{left:203.260080pt;}
.x50{left:207.741013pt;}
.x91{left:209.019813pt;}
.x95{left:211.580347pt;}
.xae{left:212.860613pt;}
.xc6{left:217.020747pt;}
.x7{left:219.260480pt;}
.x28{left:220.540747pt;}
.xc0{left:221.821013pt;}
.x49{left:226.300613pt;}
.x2f{left:227.260080pt;}
.xc8{left:229.830513pt;}
.xc1{left:232.381147pt;}
.x3e{left:234.940213pt;}
.x4a{left:236.539813pt;}
.x8{left:243.260480pt;}
.x30{left:247.420613pt;}
.x31{left:248.701013pt;}
.xaf{left:250.300613pt;}
.x20{left:252.542080pt;}
.xa5{left:253.523413pt;}
.x21{left:255.098080pt;}
.x69{left:256.700480pt;}
.x47{left:258.940213pt;}
.x8d{left:262.460213pt;}
.x7f{left:266.941147pt;}
.xa1{left:268.860080pt;}
.x73{left:269.821013pt;}
.xb3{left:271.739947pt;}
.x9{left:276.221013pt;}
.x8e{left:278.139947pt;}
.xa2{left:279.420213pt;}
.xb9{left:281.659947pt;}
.x39{left:284.539813pt;}
.x29{left:291.579813pt;}
.x92{left:293.180880pt;}
.xb4{left:294.780480pt;}
.x74{left:297.660480pt;}
.x75{left:300.861147pt;}
.x22{left:302.139947pt;}
.x19{left:303.420213pt;}
.x77{left:304.372380pt;}
.xa7{left:305.980747pt;}
.x76{left:306.940213pt;}
.x80{left:309.500747pt;}
.xb7{left:312.059813pt;}
.x3f{left:313.340080pt;}
.x87{left:315.579813pt;}
.x1a{left:317.500213pt;}
.xa{left:319.099813pt;}
.x40{left:321.020347pt;}
.xb8{left:323.900213pt;}
.xbd{left:325.820613pt;}
.x6a{left:327.420213pt;}
.x1b{left:337.660880pt;}
.x4c{left:342.461147pt;}
.xb{left:343.420613pt;}
.x4e{left:346.619947pt;}
.xa6{left:348.861147pt;}
.x6b{left:350.460747pt;}
.x70{left:351.420213pt;}
.x23{left:355.261013pt;}
.x2a{left:357.498547pt;}
.x24{left:358.460213pt;}
.x7a{left:359.421147pt;}
.x8a{left:361.980213pt;}
.x83{left:363.900613pt;}
.x5e{left:369.020347pt;}
.x84{left:370.940747pt;}
.x8b{left:372.221013pt;}
.xc3{left:375.100880pt;}
.x6c{left:379.901147pt;}
.x43{left:382.460213pt;}
.x58{left:388.219947pt;}
.x98{left:389.821013pt;}
.x71{left:393.341147pt;}
.xa8{left:401.340613pt;}
.x72{left:402.940213pt;}
.x59{left:403.901147pt;}
.x60{left:405.820080pt;}
.x4f{left:407.100347pt;}
.x3{left:410.620347pt;}
.xa9{left:414.461147pt;}
.x63{left:415.420613pt;}
.x64{left:417.341147pt;}
.x61{left:419.580880pt;}
.xc7{left:421.499813pt;}
.x81{left:422.780080pt;}
.x51{left:424.700480pt;}
.x65{left:427.580347pt;}
.x82{left:430.781013pt;}
.x3a{left:432.699947pt;}
.x52{left:435.260480pt;}
.x44{left:436.860080pt;}
.x5c{left:441.660480pt;}
.xb0{left:449.019813pt;}
.xb1{left:451.580347pt;}
.x62{left:454.781013pt;}
.xb5{left:457.020747pt;}
.xb6{left:462.780480pt;}
.x5d{left:464.060747pt;}
.x5a{left:465.660480pt;}
}




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