
    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_d72ea0a7ef725de67a5f85f2.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.964000;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_ca856793e116e81f635a0c22.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.712000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_b952a9b04487bffeabc7b0f1.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.058000;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_4680f4e6dd06165e249b5d57.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.964000;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_3bf1db74356f47627460c231.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.189000;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_2004063697ef50eb06cafce5.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.131000;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_c35500be0bc48f923572cab6.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.038000;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_e4bf6e010f8d90877241930c.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.964000;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_0a6c7036e980564cb8204bb5.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.005000;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_84a98155596bf113bd78a6fd.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.956000;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_b14a993f0591fe1ef00ad4d9.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.679000;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_9db60ea6f1c21980f6480f38.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.038000;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_b17dd0fbfbb21fd8f4e585cc.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.964000;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_c5b406847d975d2918b505f3.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.005000;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_f2120ea8567b1f85a1b8494e.woff2')format("woff");}.fff{font-family:fff;line-height:0.676270;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_413aa0c016dbfafe66a4cd04.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.814453;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_77f625b5f88504a2da75dc7f.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.706543;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_daa28c1940ef5a913aca8789.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m23{transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);}
.mb2{transform:matrix(0.236514,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236514,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236514,0.000000,0.000000,0.250000,0,0);}
.m84{transform:matrix(0.242498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242498,0.000000,0.000000,0.250000,0,0);}
.m83{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.242803,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242803,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242803,0.000000,0.000000,0.250000,0,0);}
.ma6{transform:matrix(0.243125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243125,0.000000,0.000000,0.250000,0,0);}
.ma7{transform:matrix(0.243127,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243127,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243127,0.000000,0.000000,0.250000,0,0);}
.m60{transform:matrix(0.243516,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243516,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243516,0.000000,0.000000,0.250000,0,0);}
.m43{transform:matrix(0.243593,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243593,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243593,0.000000,0.000000,0.250000,0,0);}
.m5f{transform:matrix(0.243661,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243661,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243661,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.243664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243664,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.244068,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244068,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244068,0.000000,0.000000,0.250000,0,0);}
.m3d{transform:matrix(0.244102,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244102,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244102,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.244202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244202,0.000000,0.000000,0.250000,0,0);}
.mb4{transform:matrix(0.244291,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244291,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244291,0.000000,0.000000,0.250000,0,0);}
.ma8{transform:matrix(0.244523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244523,0.000000,0.000000,0.250000,0,0);}
.md4{transform:matrix(0.244615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244615,0.000000,0.000000,0.250000,0,0);}
.m5e{transform:matrix(0.244630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244630,0.000000,0.000000,0.250000,0,0);}
.mc1{transform:matrix(0.244732,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244732,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244732,0.000000,0.000000,0.250000,0,0);}
.m4b{transform:matrix(0.244748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244748,0.000000,0.000000,0.250000,0,0);}
.ma9{transform:matrix(0.244898,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244898,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244898,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.245002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245002,0.000000,0.000000,0.250000,0,0);}
.m79{transform:matrix(0.245014,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245014,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245014,0.000000,0.000000,0.250000,0,0);}
.m69{transform:matrix(0.245016,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245016,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245016,0.000000,0.000000,0.250000,0,0);}
.m6a{transform:matrix(0.245018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245018,0.000000,0.000000,0.250000,0,0);}
.m97{transform:matrix(0.245036,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245036,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245036,0.000000,0.000000,0.250000,0,0);}
.ma5{transform:matrix(0.245061,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245061,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245061,0.000000,0.000000,0.250000,0,0);}
.md2{transform:matrix(0.245063,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245063,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245063,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.245140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245140,0.000000,0.000000,0.250000,0,0);}
.m52{transform:matrix(0.245266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245266,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.245307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245307,0.000000,0.000000,0.250000,0,0);}
.mc0{transform:matrix(0.245318,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245318,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245318,0.000000,0.000000,0.250000,0,0);}
.m4d{transform:matrix(0.245348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245348,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.245465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245465,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.245677,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245677,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245677,0.000000,0.000000,0.250000,0,0);}
.mcb{transform:matrix(0.245864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245864,0.000000,0.000000,0.250000,0,0);}
.mb1{transform:matrix(0.245875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245875,0.000000,0.000000,0.250000,0,0);}
.m49{transform:matrix(0.245909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245909,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.245964,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245964,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245964,0.000000,0.000000,0.250000,0,0);}
.m7f{transform:matrix(0.246075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246075,0.000000,0.000000,0.250000,0,0);}
.m3b{transform:matrix(0.246111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246111,0.000000,0.000000,0.250000,0,0);}
.m3c{transform:matrix(0.246113,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246113,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246113,0.000000,0.000000,0.250000,0,0);}
.m73{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);}
.m72{transform:matrix(0.246270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246270,0.000000,0.000000,0.250000,0,0);}
.m98{transform:matrix(0.246430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246430,0.000000,0.000000,0.250000,0,0);}
.m37{transform:matrix(0.246689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246689,0.000000,0.000000,0.250000,0,0);}
.mdc{transform:matrix(0.246885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246885,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.246952,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246952,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246952,0.000000,0.000000,0.250000,0,0);}
.m9f{transform:matrix(0.246973,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246973,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246973,0.000000,0.000000,0.250000,0,0);}
.m68{transform:matrix(0.246975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246975,0.000000,0.000000,0.250000,0,0);}
.m55{transform:matrix(0.247028,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247028,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247028,0.000000,0.000000,0.250000,0,0);}
.m59{transform:matrix(0.247200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247200,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.247205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247205,0.000000,0.000000,0.250000,0,0);}
.m54{transform:matrix(0.247239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247239,0.000000,0.000000,0.250000,0,0);}
.mc4{transform:matrix(0.247305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247305,0.000000,0.000000,0.250000,0,0);}
.mc5{transform:matrix(0.247364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247364,0.000000,0.000000,0.250000,0,0);}
.m94{transform:matrix(0.247427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247427,0.000000,0.000000,0.250000,0,0);}
.m74{transform:matrix(0.247439,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247439,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247439,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.247468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247468,0.000000,0.000000,0.250000,0,0);}
.ma0{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.md0{transform:matrix(0.247530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247530,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.247532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247532,0.000000,0.000000,0.250000,0,0);}
.mc7{transform:matrix(0.247618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247618,0.000000,0.000000,0.250000,0,0);}
.md6{transform:matrix(0.247622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247622,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.247672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247672,0.000000,0.000000,0.250000,0,0);}
.m32{transform:matrix(0.247673,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247673,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247673,0.000000,0.000000,0.250000,0,0);}
.md9{transform:matrix(0.247688,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247688,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247688,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.247709,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247709,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247709,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.247712,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247712,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247712,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.247745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247745,0.000000,0.000000,0.250000,0,0);}
.m4c{transform:matrix(0.247866,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247866,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247866,0.000000,0.000000,0.250000,0,0);}
.m63{transform:matrix(0.248002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248002,0.000000,0.000000,0.250000,0,0);}
.mab{transform:matrix(0.248016,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248016,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248016,0.000000,0.000000,0.250000,0,0);}
.m67{transform:matrix(0.248041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248041,0.000000,0.000000,0.250000,0,0);}
.mba{transform:matrix(0.248082,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248082,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248082,0.000000,0.000000,0.250000,0,0);}
.mdb{transform:matrix(0.248303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248303,0.000000,0.000000,0.250000,0,0);}
.m7a{transform:matrix(0.248325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248325,0.000000,0.000000,0.250000,0,0);}
.mb9{transform:matrix(0.248491,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248491,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248491,0.000000,0.000000,0.250000,0,0);}
.m95{transform:matrix(0.248498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248498,0.000000,0.000000,0.250000,0,0);}
.m96{transform:matrix(0.248564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248564,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.248582,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248582,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248582,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.248589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248589,0.000000,0.000000,0.250000,0,0);}
.ma4{transform:matrix(0.248623,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248623,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248623,0.000000,0.000000,0.250000,0,0);}
.m50{transform:matrix(0.248634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248634,0.000000,0.000000,0.250000,0,0);}
.m78{transform:matrix(0.248636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248636,0.000000,0.000000,0.250000,0,0);}
.m85{transform:matrix(0.248664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248664,0.000000,0.000000,0.250000,0,0);}
.mca{transform:matrix(0.248700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248700,0.000000,0.000000,0.250000,0,0);}
.m75{transform:matrix(0.248720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248720,0.000000,0.000000,0.250000,0,0);}
.mb7{transform:matrix(0.248766,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248766,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248766,0.000000,0.000000,0.250000,0,0);}
.m5d{transform:matrix(0.248768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248768,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.248775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248775,0.000000,0.000000,0.250000,0,0);}
.mb0{transform:matrix(0.248845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248845,0.000000,0.000000,0.250000,0,0);}
.m7c{transform:matrix(0.248875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248875,0.000000,0.000000,0.250000,0,0);}
.m36{transform:matrix(0.248893,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248893,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248893,0.000000,0.000000,0.250000,0,0);}
.mb8{transform:matrix(0.248895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248895,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.248898,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248898,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248898,0.000000,0.000000,0.250000,0,0);}
.m6c{transform:matrix(0.248909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248909,0.000000,0.000000,0.250000,0,0);}
.m46{transform:matrix(0.248945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248945,0.000000,0.000000,0.250000,0,0);}
.m47{transform:matrix(0.249043,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249043,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249043,0.000000,0.000000,0.250000,0,0);}
.mae{transform:matrix(0.249075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249075,0.000000,0.000000,0.250000,0,0);}
.mbb{transform:matrix(0.249109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249109,0.000000,0.000000,0.250000,0,0);}
.mbc{transform:matrix(0.249111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249111,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.249119,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249119,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249119,0.000000,0.000000,0.250000,0,0);}
.m9c{transform:matrix(0.249125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249125,0.000000,0.000000,0.250000,0,0);}
.mb5{transform:matrix(0.249218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249218,0.000000,0.000000,0.250000,0,0);}
.m41{transform:matrix(0.249261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249261,0.000000,0.000000,0.250000,0,0);}
.mc8{transform:matrix(0.249320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249320,0.000000,0.000000,0.250000,0,0);}
.m4f{transform:matrix(0.249341,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249341,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249341,0.000000,0.000000,0.250000,0,0);}
.m4e{transform:matrix(0.249391,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249391,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249391,0.000000,0.000000,0.250000,0,0);}
.mc6{transform:matrix(0.249484,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249484,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249484,0.000000,0.000000,0.250000,0,0);}
.m82{transform:matrix(0.249520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249520,0.000000,0.000000,0.250000,0,0);}
.m38{transform:matrix(0.249582,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249582,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249582,0.000000,0.000000,0.250000,0,0);}
.mad{transform:matrix(0.249641,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249641,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249641,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.249650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249650,0.000000,0.000000,0.250000,0,0);}
.maf{transform:matrix(0.249664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249664,0.000000,0.000000,0.250000,0,0);}
.m48{transform:matrix(0.249673,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249673,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249673,0.000000,0.000000,0.250000,0,0);}
.m40{transform:matrix(0.249686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249686,0.000000,0.000000,0.250000,0,0);}
.m35{transform:matrix(0.249689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249689,0.000000,0.000000,0.250000,0,0);}
.m61{transform:matrix(0.249768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249768,0.000000,0.000000,0.250000,0,0);}
.m30{transform:matrix(0.249811,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249811,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249811,0.000000,0.000000,0.250000,0,0);}
.m64{transform:matrix(0.249814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249814,0.000000,0.000000,0.250000,0,0);}
.m58{transform:matrix(0.249891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249891,0.000000,0.000000,0.250000,0,0);}
.m65{transform:matrix(0.249909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249909,0.000000,0.000000,0.250000,0,0);}
.maa{transform:matrix(0.249936,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249936,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249936,0.000000,0.000000,0.250000,0,0);}
.m81{transform:matrix(0.249939,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249939,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249939,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.249998,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249998,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249998,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m7d{transform:matrix(0.250020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250020,0.000000,0.000000,0.250000,0,0);}
.me0{transform:matrix(0.250022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250022,0.000000,0.000000,0.250000,0,0);}
.mb6{transform:matrix(0.250050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250050,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.250059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250059,0.000000,0.000000,0.250000,0,0);}
.m5c{transform:matrix(0.250111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250111,0.000000,0.000000,0.250000,0,0);}
.mda{transform:matrix(0.250150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250150,0.000000,0.000000,0.250000,0,0);}
.md3{transform:matrix(0.250172,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250172,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250172,0.000000,0.000000,0.250000,0,0);}
.ma3{transform:matrix(0.250194,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250194,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250194,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.250210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250210,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.250241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250241,0.000000,0.000000,0.250000,0,0);}
.mc9{transform:matrix(0.250257,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250257,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250257,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.250260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250260,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.250320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250320,0.000000,0.000000,0.250000,0,0);}
.mdd{transform:matrix(0.250327,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250327,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250327,0.000000,0.000000,0.250000,0,0);}
.mc3{transform:matrix(0.250332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250332,0.000000,0.000000,0.250000,0,0);}
.m92{transform:matrix(0.250367,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250367,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250367,0.000000,0.000000,0.250000,0,0);}
.m8f{transform:matrix(0.250425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250425,0.000000,0.000000,0.250000,0,0);}
.m6b{transform:matrix(0.250441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250441,0.000000,0.000000,0.250000,0,0);}
.m6e{transform:matrix(0.250502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250502,0.000000,0.000000,0.250000,0,0);}
.mbf{transform:matrix(0.250545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250545,0.000000,0.000000,0.250000,0,0);}
.m42{transform:matrix(0.250625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250625,0.000000,0.000000,0.250000,0,0);}
.m33{transform:matrix(0.250759,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250759,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250759,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.250793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250793,0.000000,0.000000,0.250000,0,0);}
.m8c{transform:matrix(0.250809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250809,0.000000,0.000000,0.250000,0,0);}
.m45{transform:matrix(0.250850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250850,0.000000,0.000000,0.250000,0,0);}
.mcd{transform:matrix(0.250923,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250923,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250923,0.000000,0.000000,0.250000,0,0);}
.mcc{transform:matrix(0.250925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250925,0.000000,0.000000,0.250000,0,0);}
.m93{transform:matrix(0.250927,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250927,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250927,0.000000,0.000000,0.250000,0,0);}
.m5b{transform:matrix(0.250945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250945,0.000000,0.000000,0.250000,0,0);}
.m3f{transform:matrix(0.250947,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250947,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250947,0.000000,0.000000,0.250000,0,0);}
.m39{transform:matrix(0.250957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250957,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.250978,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250978,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250978,0.000000,0.000000,0.250000,0,0);}
.mac{transform:matrix(0.251002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251002,0.000000,0.000000,0.250000,0,0);}
.mbd{transform:matrix(0.251027,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251027,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251027,0.000000,0.000000,0.250000,0,0);}
.mbe{transform:matrix(0.251029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251029,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.251057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251057,0.000000,0.000000,0.250000,0,0);}
.m91{transform:matrix(0.251097,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251097,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251097,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.251150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251150,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.251172,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251172,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251172,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.251200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251200,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.251213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251213,0.000000,0.000000,0.250000,0,0);}
.m71{transform:matrix(0.251220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251220,0.000000,0.000000,0.250000,0,0);}
.m4a{transform:matrix(0.251286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251286,0.000000,0.000000,0.250000,0,0);}
.md7{transform:matrix(0.251300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251300,0.000000,0.000000,0.250000,0,0);}
.md5{transform:matrix(0.251403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251403,0.000000,0.000000,0.250000,0,0);}
.m8a{transform:matrix(0.251445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251445,0.000000,0.000000,0.250000,0,0);}
.m9a{transform:matrix(0.251450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251450,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.251455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251455,0.000000,0.000000,0.250000,0,0);}
.m86{transform:matrix(0.251520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251520,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.251578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251578,0.000000,0.000000,0.250000,0,0);}
.m66{transform:matrix(0.251618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251618,0.000000,0.000000,0.250000,0,0);}
.m99{transform:matrix(0.251716,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251716,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251716,0.000000,0.000000,0.250000,0,0);}
.m8b{transform:matrix(0.251725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251725,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.251761,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251761,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251761,0.000000,0.000000,0.250000,0,0);}
.m6f{transform:matrix(0.251820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251820,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.251891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251891,0.000000,0.000000,0.250000,0,0);}
.m9b{transform:matrix(0.251918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251918,0.000000,0.000000,0.250000,0,0);}
.m57{transform:matrix(0.251973,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251973,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251973,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.252023,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252023,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252023,0.000000,0.000000,0.250000,0,0);}
.m44{transform:matrix(0.252105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252105,0.000000,0.000000,0.250000,0,0);}
.m62{transform:matrix(0.252111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252111,0.000000,0.000000,0.250000,0,0);}
.m9d{transform:matrix(0.252320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252320,0.000000,0.000000,0.250000,0,0);}
.m3e{transform:matrix(0.252347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252347,0.000000,0.000000,0.250000,0,0);}
.mc2{transform:matrix(0.252644,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252644,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252644,0.000000,0.000000,0.250000,0,0);}
.m3a{transform:matrix(0.252789,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252789,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252789,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.252805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252805,0.000000,0.000000,0.250000,0,0);}
.me1{transform:matrix(0.252815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252815,0.000000,0.000000,0.250000,0,0);}
.ma1{transform:matrix(0.252923,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252923,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252923,0.000000,0.000000,0.250000,0,0);}
.m80{transform:matrix(0.252958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252958,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.253005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253005,0.000000,0.000000,0.250000,0,0);}
.md8{transform:matrix(0.253510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253510,0.000000,0.000000,0.250000,0,0);}
.m7e{transform:matrix(0.253625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253625,0.000000,0.000000,0.250000,0,0);}
.m87{transform:matrix(0.253845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253845,0.000000,0.000000,0.250000,0,0);}
.m88{transform:matrix(0.253848,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253848,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253848,0.000000,0.000000,0.250000,0,0);}
.m9e{transform:matrix(0.253955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253955,0.000000,0.000000,0.250000,0,0);}
.m53{transform:matrix(0.254091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254091,0.000000,0.000000,0.250000,0,0);}
.mde{transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);}
.m8e{transform:matrix(0.254269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254269,0.000000,0.000000,0.250000,0,0);}
.m8d{transform:matrix(0.254270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254270,0.000000,0.000000,0.250000,0,0);}
.m70{transform:matrix(0.254380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254380,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.254407,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254407,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254407,0.000000,0.000000,0.250000,0,0);}
.md1{transform:matrix(0.254480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254480,0.000000,0.000000,0.250000,0,0);}
.mdf{transform:matrix(0.254502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254502,0.000000,0.000000,0.250000,0,0);}
.m76{transform:matrix(0.254564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254564,0.000000,0.000000,0.250000,0,0);}
.m77{transform:matrix(0.254565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254565,0.000000,0.000000,0.250000,0,0);}
.m31{transform:matrix(0.254736,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254736,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254736,0.000000,0.000000,0.250000,0,0);}
.m6d{transform:matrix(0.254882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254882,0.000000,0.000000,0.250000,0,0);}
.m89{transform:matrix(0.254920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254920,0.000000,0.000000,0.250000,0,0);}
.m34{transform:matrix(0.255014,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255014,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255014,0.000000,0.000000,0.250000,0,0);}
.mce{transform:matrix(0.255268,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255268,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255268,0.000000,0.000000,0.250000,0,0);}
.m90{transform:matrix(0.255294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255294,0.000000,0.000000,0.250000,0,0);}
.m5a{transform:matrix(0.255730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255730,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.255830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255830,0.000000,0.000000,0.250000,0,0);}
.mb3{transform:matrix(0.255880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255880,0.000000,0.000000,0.250000,0,0);}
.ma2{transform:matrix(0.255961,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255961,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255961,0.000000,0.000000,0.250000,0,0);}
.m56{transform:matrix(0.256745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256745,0.000000,0.000000,0.250000,0,0);}
.m51{transform:matrix(0.257152,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257152,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257152,0.000000,0.000000,0.250000,0,0);}
.m7b{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.mcf{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:18.981000px;}
.v2{vertical-align:21.978000px;}
.v1{vertical-align:183.000000px;}
.ls6a{letter-spacing:-4.752000px;}
.ls6b{letter-spacing:-4.092000px;}
.ls3a{letter-spacing:-3.168000px;}
.ls1{letter-spacing:-3.120000px;}
.ls2c{letter-spacing:-3.102000px;}
.ls65{letter-spacing:-2.970000px;}
.ls5e{letter-spacing:-2.904000px;}
.ls59{letter-spacing:-2.640000px;}
.ls66{letter-spacing:-2.574000px;}
.ls33{letter-spacing:-2.565000px;}
.ls5f{letter-spacing:-2.376000px;}
.ls67{letter-spacing:-2.310000px;}
.ls72{letter-spacing:-2.160000px;}
.ls41{letter-spacing:-2.052000px;}
.ls55{letter-spacing:-1.848000px;}
.lse{letter-spacing:-1.650000px;}
.ls5c{letter-spacing:-1.584000px;}
.ls3c{letter-spacing:-1.518000px;}
.ls2d{letter-spacing:-1.452000px;}
.ls3b{letter-spacing:-1.386000px;}
.ls57{letter-spacing:-1.320000px;}
.ls42{letter-spacing:-1.311000px;}
.ls1b{letter-spacing:-1.254000px;}
.ls40{letter-spacing:-1.197000px;}
.ls51{letter-spacing:-1.188000px;}
.ls5a{letter-spacing:-1.056000px;}
.ls36{letter-spacing:-0.990000px;}
.ls27{letter-spacing:-0.924000px;}
.ls1d{letter-spacing:-0.858000px;}
.ls1e{letter-spacing:-0.792000px;}
.ls61{letter-spacing:-0.756000px;}
.ls4d{letter-spacing:-0.741000px;}
.ls17{letter-spacing:-0.726000px;}
.ls5{letter-spacing:-0.720000px;}
.ls62{letter-spacing:-0.702000px;}
.ls25{letter-spacing:-0.684000px;}
.ls19{letter-spacing:-0.660000px;}
.ls2b{letter-spacing:-0.594000px;}
.ls4e{letter-spacing:-0.570000px;}
.ls1a{letter-spacing:-0.528000px;}
.ls53{letter-spacing:-0.461736px;}
.ls60{letter-spacing:-0.432000px;}
.ls18{letter-spacing:-0.423258px;}
.ls5d{letter-spacing:-0.396000px;}
.ls1c{letter-spacing:-0.384780px;}
.ls56{letter-spacing:-0.346302px;}
.ls4f{letter-spacing:-0.332310px;}
.ls34{letter-spacing:-0.285000px;}
.ls2a{letter-spacing:-0.264000px;}
.ls2f{letter-spacing:-0.228000px;}
.ls13{letter-spacing:-0.216000px;}
.ls10{letter-spacing:-0.198000px;}
.ls4{letter-spacing:-0.180000px;}
.ls2e{letter-spacing:-0.171000px;}
.ls35{letter-spacing:-0.166155px;}
.ls14{letter-spacing:-0.162000px;}
.ls5b{letter-spacing:-0.153912px;}
.ls1f{letter-spacing:-0.132000px;}
.ls7{letter-spacing:-0.120000px;}
.ls11{letter-spacing:-0.115434px;}
.ls49{letter-spacing:-0.114000px;}
.ls37{letter-spacing:-0.108000px;}
.ls26{letter-spacing:-0.076956px;}
.lsf{letter-spacing:-0.066000px;}
.ls6{letter-spacing:-0.060000px;}
.ls31{letter-spacing:-0.057000px;}
.ls12{letter-spacing:-0.054000px;}
.ls3d{letter-spacing:-0.038478px;}
.ls32{letter-spacing:-0.033231px;}
.ls0{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.000360px;}
.ls47{letter-spacing:0.001094px;}
.ls23{letter-spacing:0.027000px;}
.ls28{letter-spacing:0.033000px;}
.ls68{letter-spacing:0.038478px;}
.ls22{letter-spacing:0.054000px;}
.ls54{letter-spacing:0.057000px;}
.ls2{letter-spacing:0.060000px;}
.ls16{letter-spacing:0.066000px;}
.ls50{letter-spacing:0.076956px;}
.ls64{letter-spacing:0.081000px;}
.ls71{letter-spacing:0.090000px;}
.ls48{letter-spacing:0.108000px;}
.ls45{letter-spacing:0.114000px;}
.ls24{letter-spacing:0.115434px;}
.ls6d{letter-spacing:0.120000px;}
.lsd{letter-spacing:0.132000px;}
.ls6f{letter-spacing:0.157200px;}
.ls4b{letter-spacing:0.162000px;}
.ls15{letter-spacing:0.165000px;}
.ls3f{letter-spacing:0.171000px;}
.ls3{letter-spacing:0.180000px;}
.ls20{letter-spacing:0.198000px;}
.ls38{letter-spacing:0.228000px;}
.ls30{letter-spacing:0.264000px;}
.ls3e{letter-spacing:0.285000px;}
.ls69{letter-spacing:0.330000px;}
.ls29{letter-spacing:0.342000px;}
.lsb{letter-spacing:0.384960px;}
.ls44{letter-spacing:0.399000px;}
.ls43{letter-spacing:0.402000px;}
.ls39{letter-spacing:0.456000px;}
.ls9{letter-spacing:0.660000px;}
.ls4c{letter-spacing:0.684000px;}
.lsa{letter-spacing:0.726000px;}
.ls58{letter-spacing:1.900487px;}
.ls52{letter-spacing:2.396708px;}
.ls46{letter-spacing:2.403600px;}
.ls21{letter-spacing:2.416281px;}
.ls63{letter-spacing:2.423274px;}
.ls4a{letter-spacing:2.992639px;}
.ls8{letter-spacing:3.679980px;}
.ls6e{letter-spacing:103.391424px;}
.ls70{letter-spacing:104.055000px;}
.ls6c{letter-spacing:104.055600px;}
.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;}
}
.ws57{word-spacing:-60.000000px;}
.ws6e{word-spacing:-54.000000px;}
.ws58{word-spacing:-14.652000px;}
.ws70{word-spacing:-14.586000px;}
.ws13{word-spacing:-14.454000px;}
.ws35{word-spacing:-14.322000px;}
.ws12{word-spacing:-13.926000px;}
.ws77{word-spacing:-13.860000px;}
.ws2c{word-spacing:-13.365000px;}
.ws4d{word-spacing:-13.266000px;}
.ws6{word-spacing:-13.200000px;}
.wsa{word-spacing:-13.140000px;}
.ws2f{word-spacing:-13.134000px;}
.ws30{word-spacing:-13.068000px;}
.ws45{word-spacing:-13.002000px;}
.ws6a{word-spacing:-12.825000px;}
.ws7f{word-spacing:-12.804000px;}
.ws6b{word-spacing:-12.654000px;}
.ws21{word-spacing:-12.540000px;}
.ws33{word-spacing:-12.483000px;}
.ws24{word-spacing:-12.474000px;}
.ws7e{word-spacing:-12.408000px;}
.ws80{word-spacing:-12.012000px;}
.ws8{word-spacing:-12.000000px;}
.ws8a{word-spacing:-11.934000px;}
.ws6d{word-spacing:-11.913000px;}
.ws36{word-spacing:-11.880000px;}
.ws5e{word-spacing:-11.799000px;}
.ws79{word-spacing:-11.748000px;}
.ws46{word-spacing:-11.718000px;}
.ws89{word-spacing:-11.682000px;}
.ws59{word-spacing:-11.664000px;}
.ws5f{word-spacing:-11.514000px;}
.ws32{word-spacing:-11.400000px;}
.ws81{word-spacing:-11.394000px;}
.ws3a{word-spacing:-11.352000px;}
.ws67{word-spacing:-11.343000px;}
.ws99{word-spacing:-11.280000px;}
.ws71{word-spacing:-10.854000px;}
.ws37{word-spacing:-10.800000px;}
.ws6c{word-spacing:-10.716000px;}
.ws68{word-spacing:-10.659000px;}
.ws41{word-spacing:-10.512000px;}
.ws82{word-spacing:-10.098000px;}
.ws3{word-spacing:-9.600000px;}
.ws2e{word-spacing:-8.542116px;}
.ws25{word-spacing:-8.426682px;}
.ws53{word-spacing:-8.388204px;}
.ws15{word-spacing:-8.311248px;}
.ws78{word-spacing:-8.080380px;}
.ws23{word-spacing:-8.041902px;}
.ws20{word-spacing:-8.003424px;}
.ws76{word-spacing:-7.964946px;}
.ws1f{word-spacing:-7.800000px;}
.ws34{word-spacing:-7.277589px;}
.ws43{word-spacing:-7.244358px;}
.ws96{word-spacing:-6.798000px;}
.ws17{word-spacing:-0.726000px;}
.ws72{word-spacing:-0.684000px;}
.ws16{word-spacing:-0.660000px;}
.ws4f{word-spacing:-0.456000px;}
.ws62{word-spacing:-0.399000px;}
.ws40{word-spacing:-0.342000px;}
.ws60{word-spacing:-0.330000px;}
.ws5b{word-spacing:-0.285000px;}
.ws2d{word-spacing:-0.264000px;}
.wsb{word-spacing:-0.240000px;}
.ws4e{word-spacing:-0.228000px;}
.ws11{word-spacing:-0.198000px;}
.ws10{word-spacing:-0.180000px;}
.ws5c{word-spacing:-0.171000px;}
.ws61{word-spacing:-0.162000px;}
.ws2b{word-spacing:-0.132000px;}
.ws98{word-spacing:-0.120000px;}
.ws5d{word-spacing:-0.115434px;}
.ws63{word-spacing:-0.114000px;}
.ws66{word-spacing:-0.108000px;}
.ws0{word-spacing:-0.078000px;}
.ws75{word-spacing:-0.076956px;}
.ws1{word-spacing:-0.066000px;}
.ws9{word-spacing:-0.060000px;}
.ws4c{word-spacing:-0.057000px;}
.ws39{word-spacing:-0.054000px;}
.ws2{word-spacing:-0.048000px;}
.ws1e{word-spacing:-0.039000px;}
.ws14{word-spacing:-0.038478px;}
.ws4{word-spacing:0.000000px;}
.ws1b{word-spacing:0.054000px;}
.ws47{word-spacing:0.057000px;}
.wsd{word-spacing:0.060000px;}
.ws19{word-spacing:0.066000px;}
.ws38{word-spacing:0.076956px;}
.ws4b{word-spacing:0.108000px;}
.ws65{word-spacing:0.114000px;}
.ws54{word-spacing:0.115434px;}
.wsf{word-spacing:0.120000px;}
.ws2a{word-spacing:0.132000px;}
.ws83{word-spacing:0.153912px;}
.ws1d{word-spacing:0.162000px;}
.ws4a{word-spacing:0.166155px;}
.ws3e{word-spacing:0.171000px;}
.wsc{word-spacing:0.180000px;}
.ws1a{word-spacing:0.198000px;}
.ws1c{word-spacing:0.216000px;}
.ws3f{word-spacing:0.228000px;}
.ws3c{word-spacing:0.264000px;}
.ws49{word-spacing:0.285000px;}
.ws74{word-spacing:0.332310px;}
.ws64{word-spacing:0.342000px;}
.ws86{word-spacing:0.432000px;}
.ws42{word-spacing:0.462000px;}
.ws27{word-spacing:0.528000px;}
.ws73{word-spacing:0.570000px;}
.ws3d{word-spacing:0.594000px;}
.ws97{word-spacing:0.600000px;}
.ws31{word-spacing:0.627000px;}
.ws7{word-spacing:0.660000px;}
.ws69{word-spacing:0.684000px;}
.ws26{word-spacing:0.726000px;}
.ws87{word-spacing:0.756000px;}
.ws29{word-spacing:0.792000px;}
.ws28{word-spacing:0.858000px;}
.ws44{word-spacing:0.924000px;}
.ws7c{word-spacing:0.990000px;}
.ws6f{word-spacing:1.122000px;}
.ws55{word-spacing:1.140000px;}
.ws22{word-spacing:1.188000px;}
.ws56{word-spacing:1.254000px;}
.ws51{word-spacing:1.320000px;}
.ws3b{word-spacing:1.386000px;}
.ws52{word-spacing:1.452000px;}
.ws7d{word-spacing:1.518000px;}
.ws7b{word-spacing:1.584000px;}
.ws18{word-spacing:1.650000px;}
.ws7a{word-spacing:1.848000px;}
.ws5a{word-spacing:2.052000px;}
.ws9a{word-spacing:2.160000px;}
.ws8c{word-spacing:2.310000px;}
.ws85{word-spacing:2.376000px;}
.ws88{word-spacing:2.508000px;}
.ws48{word-spacing:2.565000px;}
.wse{word-spacing:2.640000px;}
.ws84{word-spacing:2.904000px;}
.ws8b{word-spacing:2.970000px;}
.ws5{word-spacing:3.120000px;}
.ws50{word-spacing:3.168000px;}
.ws92{word-spacing:17.094000px;}
.ws8d{word-spacing:62.106000px;}
.ws8e{word-spacing:64.020000px;}
.ws95{word-spacing:149.358000px;}
.ws91{word-spacing:197.604000px;}
.ws90{word-spacing:234.300000px;}
.ws94{word-spacing:234.564000px;}
.ws93{word-spacing:235.026000px;}
.ws8f{word-spacing:237.798000px;}
._e{margin-left:-237.978600px;}
._12{margin-left:-235.032600px;}
._f{margin-left:-230.890080px;}
._13{margin-left:-226.194454px;}
._10{margin-left:-188.899053px;}
._11{margin-left:-16.491587px;}
._d{margin-left:-14.698200px;}
._15{margin-left:-13.224000px;}
._5{margin-left:-6.624000px;}
._6{margin-left:-5.361013px;}
._2{margin-left:-3.696000px;}
._0{margin-left:-2.496000px;}
._3{margin-left:-1.056000px;}
._7{width:1.004400px;}
._4{width:2.034000px;}
._1{width:3.120000px;}
._8{width:4.233600px;}
._9{width:5.258100px;}
._c{width:6.498600px;}
._b{width:7.870500px;}
._a{width:9.810462px;}
._14{width:252.186000px;}
.fc1{color:rgb(167,165,166);}
.fc0{color:rgb(35,31,32);}
.fs9{font-size:33.231000px;}
.fs6{font-size:38.478000px;}
.fs7{font-size:39.000000px;}
.fs2{font-size:48.000000px;}
.fs4{font-size:54.000000px;}
.fs8{font-size:57.000000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:66.000000px;}
.fsa{font-size:72.000000px;}
.fs0{font-size:78.000000px;}
.fs5{font-size:367.980000px;}
.y0{bottom:0.000000px;}
.y14e{bottom:4.117950px;}
.y8a{bottom:106.299150px;}
.y50{bottom:106.299300px;}
.y101{bottom:106.299450px;}
.y1c0{bottom:120.138750px;}
.y89{bottom:125.799150px;}
.y7f{bottom:125.799300px;}
.y4f{bottom:125.799450px;}
.y118{bottom:125.799600px;}
.y1a9{bottom:126.671850px;}
.y1bf{bottom:139.638750px;}
.y88{bottom:145.299150px;}
.ya9{bottom:145.299300px;}
.y7e{bottom:145.299450px;}
.y6b{bottom:145.299600px;}
.y4e{bottom:145.299750px;}
.y1a8{bottom:147.044550px;}
.y1be{bottom:159.138750px;}
.ye4{bottom:164.799150px;}
.ya8{bottom:164.799300px;}
.y7d{bottom:164.799450px;}
.y136{bottom:164.799600px;}
.y4d{bottom:164.799750px;}
.y117{bottom:164.799900px;}
.yc5{bottom:167.019900px;}
.y1a7{bottom:167.417100px;}
.y185{bottom:168.079350px;}
.y1bd{bottom:178.638750px;}
.ye3{bottom:184.299150px;}
.ya7{bottom:184.299300px;}
.y135{bottom:184.299600px;}
.y7c{bottom:184.299750px;}
.y4c{bottom:184.299900px;}
.y1a6{bottom:187.789800px;}
.yc4{bottom:189.894900px;}
.y17f{bottom:190.579350px;}
.y1bc{bottom:198.138750px;}
.y87{bottom:200.075400px;}
.ye2{bottom:203.799150px;}
.ya6{bottom:203.799300px;}
.y134{bottom:203.799600px;}
.y7b{bottom:203.799750px;}
.y4b{bottom:203.800050px;}
.y1a5{bottom:208.162500px;}
.yc3{bottom:212.769900px;}
.y17e{bottom:213.079350px;}
.y1bb{bottom:217.638750px;}
.y86{bottom:220.325400px;}
.ye1{bottom:223.299150px;}
.ya5{bottom:223.299300px;}
.y7a{bottom:223.299750px;}
.y100{bottom:223.299900px;}
.y116{bottom:223.300050px;}
.y4a{bottom:223.300350px;}
.y174{bottom:225.679350px;}
.y1a4{bottom:228.535050px;}
.y17d{bottom:235.579350px;}
.yc2{bottom:235.644900px;}
.y1ba{bottom:237.138750px;}
.y85{bottom:240.575400px;}
.ye0{bottom:242.799150px;}
.y79{bottom:242.799750px;}
.yff{bottom:242.799900px;}
.y115{bottom:242.800050px;}
.y49{bottom:242.800350px;}
.y2c{bottom:243.882750px;}
.y173{bottom:247.729350px;}
.y14a{bottom:248.709600px;}
.y1a3{bottom:248.907750px;}
.y1b9{bottom:256.638750px;}
.y17c{bottom:258.079350px;}
.yc1{bottom:258.519900px;}
.y78{bottom:262.299750px;}
.y133{bottom:262.299900px;}
.yfe{bottom:262.300050px;}
.y48{bottom:262.300350px;}
.y2b{bottom:263.382750px;}
.y1a2{bottom:269.280450px;}
.y84{bottom:269.329350px;}
.y172{bottom:269.779350px;}
.y149{bottom:271.209600px;}
.y1b8{bottom:276.138750px;}
.ya4{bottom:276.398850px;}
.y17b{bottom:280.579350px;}
.yc0{bottom:281.394900px;}
.y114{bottom:281.800050px;}
.yfd{bottom:281.800200px;}
.y47{bottom:281.800650px;}
.y165{bottom:282.067500px;}
.y2a{bottom:282.882750px;}
.y83{bottom:289.579350px;}
.y1a1{bottom:289.653000px;}
.ydf{bottom:291.829350px;}
.y148{bottom:293.709600px;}
.y1b7{bottom:295.638750px;}
.ya3{bottom:298.898850px;}
.y46{bottom:301.300650px;}
.y29{bottom:302.382750px;}
.y17a{bottom:303.079350px;}
.ybf{bottom:304.269900px;}
.y164{bottom:304.567500px;}
.y77{bottom:307.204350px;}
.y82{bottom:309.829350px;}
.y1a0{bottom:310.025700px;}
.yde{bottom:313.879350px;}
.y1b6{bottom:315.138750px;}
.y147{bottom:316.209600px;}
.y6a{bottom:320.087250px;}
.y45{bottom:320.800650px;}
.ya2{bottom:321.398850px;}
.y28{bottom:321.882750px;}
.yfc{bottom:321.952800px;}
.y132{bottom:322.579350px;}
.y178{bottom:325.579350px;}
.ybe{bottom:327.144900px;}
.y76{bottom:329.704350px;}
.y19f{bottom:330.398400px;}
.y179{bottom:331.073850px;}
.y1b5{bottom:334.638750px;}
.y163{bottom:335.571450px;}
.ydd{bottom:335.929350px;}
.y81{bottom:338.583300px;}
.y146{bottom:338.709600px;}
.y44{bottom:340.300650px;}
.y27{bottom:341.382750px;}
.y69{bottom:342.587250px;}
.ya1{bottom:343.898850px;}
.yfa{bottom:344.002650px;}
.y130{bottom:345.079350px;}
.y177{bottom:348.079350px;}
.yfb{bottom:349.497150px;}
.ybd{bottom:350.019900px;}
.y131{bottom:350.573850px;}
.y19e{bottom:350.770950px;}
.y74{bottom:352.204350px;}
.y1b4{bottom:354.138750px;}
.y162{bottom:355.371450px;}
.y75{bottom:357.698850px;}
.ydc{bottom:357.979350px;}
.y80{bottom:358.833300px;}
.y113{bottom:359.152800px;}
.y43{bottom:359.800800px;}
.y26{bottom:360.882750px;}
.y145{bottom:361.209600px;}
.y68{bottom:365.087250px;}
.yf9{bottom:366.052800px;}
.ya0{bottom:366.398850px;}
.y12f{bottom:367.579350px;}
.y176{bottom:370.579350px;}
.y19d{bottom:371.143650px;}
.ybc{bottom:372.894900px;}
.y1b3{bottom:373.638750px;}
.y73{bottom:374.704350px;}
.y161{bottom:375.171450px;}
.y112{bottom:379.402800px;}
.ydb{bottom:380.029350px;}
.y25{bottom:380.382750px;}
.y144{bottom:383.709600px;}
.y67{bottom:387.587250px;}
.yf8{bottom:388.102650px;}
.y9f{bottom:388.898850px;}
.y12e{bottom:390.079350px;}
.y19c{bottom:391.516350px;}
.y184{bottom:393.079350px;}
.y1b2{bottom:393.138750px;}
.ybb{bottom:395.769900px;}
.y72{bottom:397.204350px;}
.y111{bottom:399.652800px;}
.y24{bottom:399.882750px;}
.yda{bottom:402.079350px;}
.y42{bottom:402.587250px;}
.y160{bottom:403.475400px;}
.yc{bottom:409.846350px;}
.y66{bottom:410.087250px;}
.yf7{bottom:410.152800px;}
.y9e{bottom:411.398850px;}
.y19b{bottom:411.888900px;}
.y12d{bottom:412.579350px;}
.y1b1{bottom:412.638750px;}
.y143{bottom:414.713550px;}
.y183{bottom:415.579350px;}
.yba{bottom:418.644900px;}
.y23{bottom:419.382750px;}
.y71{bottom:419.704350px;}
.y110{bottom:419.902800px;}
.yd9{bottom:424.129350px;}
.y41{bottom:425.462250px;}
.y15f{bottom:425.975400px;}
.y9{bottom:428.876250px;}
.y1b0{bottom:432.138750px;}
.yf6{bottom:432.202800px;}
.y19a{bottom:432.261600px;}
.y65{bottom:432.587250px;}
.y142{bottom:434.663550px;}
.y12c{bottom:435.079350px;}
.y182{bottom:438.079350px;}
.y22{bottom:438.882750px;}
.y10f{bottom:440.152800px;}
.yb9{bottom:441.519900px;}
.y70{bottom:442.204350px;}
.y9d{bottom:442.402800px;}
.yd8{bottom:446.179350px;}
.y8{bottom:446.876250px;}
.y40{bottom:448.337250px;}
.y1af{bottom:451.638750px;}
.y199{bottom:452.634300px;}
.yf5{bottom:454.252650px;}
.y64{bottom:455.087250px;}
.y15e{bottom:456.979350px;}
.y12b{bottom:457.579350px;}
.y21{bottom:458.382750px;}
.y10e{bottom:460.402800px;}
.y181{bottom:460.579350px;}
.y9c{bottom:462.652800px;}
.y141{bottom:463.117500px;}
.yb8{bottom:464.394900px;}
.yd7{bottom:468.229350px;}
.y1ae{bottom:471.138750px;}
.y3f{bottom:471.212250px;}
.y198{bottom:473.006850px;}
.y6f{bottom:473.208300px;}
.y15d{bottom:476.479350px;}
.y63{bottom:477.587250px;}
.y20{bottom:477.882750px;}
.y12a{bottom:480.079350px;}
.y10d{bottom:480.652800px;}
.y140{bottom:483.067500px;}
.y180{bottom:483.079350px;}
.y175{bottom:483.081750px;}
.yf4{bottom:484.806600px;}
.yb7{bottom:487.269900px;}
.yd6{bottom:490.279350px;}
.y1ad{bottom:490.638750px;}
.y9b{bottom:491.406600px;}
.y197{bottom:493.379550px;}
.y6e{bottom:493.458300px;}
.y3e{bottom:494.087250px;}
.y1f{bottom:497.382750px;}
.yb{bottom:497.995350px;}
.y62{bottom:500.087250px;}
.y10c{bottom:500.902800px;}
.y128{bottom:502.579500px;}
.y15c{bottom:504.483300px;}
.yf3{bottom:505.056600px;}
.y129{bottom:508.074000px;}
.y1ac{bottom:510.138750px;}
.yb6{bottom:510.144900px;}
.y13f{bottom:511.521450px;}
.yd5{bottom:512.329350px;}
.y6d{bottom:513.708300px;}
.y196{bottom:513.752250px;}
.y9a{bottom:513.906600px;}
.y1e{bottom:516.882750px;}
.y3d{bottom:516.962250px;}
.y10b{bottom:521.152800px;}
.y61{bottom:522.587250px;}
.y15b{bottom:523.983300px;}
.y127{bottom:525.079500px;}
.yf2{bottom:525.306600px;}
.y7{bottom:527.655150px;}
.y1ab{bottom:529.638750px;}
.y13e{bottom:531.471450px;}
.yb5{bottom:533.019900px;}
.y6c{bottom:533.958300px;}
.y195{bottom:534.124800px;}
.yd3{bottom:534.379350px;}
.y1d{bottom:536.382750px;}
.y99{bottom:536.406600px;}
.y3c{bottom:539.837250px;}
.yd4{bottom:539.873850px;}
.y10a{bottom:541.402800px;}
.y15a{bottom:543.483300px;}
.y60{bottom:545.087250px;}
.yf1{bottom:545.556600px;}
.y6{bottom:545.655150px;}
.y126{bottom:547.579500px;}
.y1aa{bottom:549.138750px;}
.y171{bottom:551.387250px;}
.y194{bottom:554.497500px;}
.yd2{bottom:556.429350px;}
.y98{bottom:558.906600px;}
.y13d{bottom:559.925400px;}
.y109{bottom:561.652800px;}
.y3a{bottom:562.712250px;}
.yb4{bottom:564.398850px;}
.yf0{bottom:565.806600px;}
.y5f{bottom:567.587250px;}
.y5{bottom:568.151250px;}
.y3b{bottom:568.206750px;}
.y1c{bottom:568.638750px;}
.y125{bottom:570.079500px;}
.y159{bottom:571.487250px;}
.y170{bottom:573.437250px;}
.y193{bottom:574.870200px;}
.yd1{bottom:578.479350px;}
.y13c{bottom:579.875400px;}
.y97{bottom:581.406600px;}
.yb3{bottom:584.648850px;}
.y39{bottom:585.587250px;}
.y1b{bottom:588.138750px;}
.y5e{bottom:590.087250px;}
.y108{bottom:590.406600px;}
.y124{bottom:592.579500px;}
.y158{bottom:593.687250px;}
.yef{bottom:594.560550px;}
.y192{bottom:595.242750px;}
.y16f{bottom:595.487250px;}
.yd0{bottom:600.529350px;}
.y96{bottom:603.906600px;}
.yb2{bottom:604.898850px;}
.y1a{bottom:607.638750px;}
.y13b{bottom:608.329350px;}
.y38{bottom:608.462250px;}
.y5d{bottom:612.587250px;}
.y107{bottom:612.906600px;}
.y191{bottom:615.615450px;}
.y157{bottom:615.887250px;}
.yed{bottom:616.760550px;}
.y16e{bottom:617.537250px;}
.yee{bottom:622.255050px;}
.ycf{bottom:622.579350px;}
.y122{bottom:623.583300px;}
.y95{bottom:626.406600px;}
.y19{bottom:627.138750px;}
.y13a{bottom:628.279350px;}
.y123{bottom:628.328550px;}
.y37{bottom:631.337250px;}
.yb1{bottom:633.652800px;}
.y5c{bottom:635.087250px;}
.y106{bottom:635.406600px;}
.y190{bottom:635.988150px;}
.y156{bottom:638.087250px;}
.yec{bottom:638.960700px;}
.y16d{bottom:639.587250px;}
.y121{bottom:644.133300px;}
.yce{bottom:644.629350px;}
.y18{bottom:646.638750px;}
.y139{bottom:648.229350px;}
.y94{bottom:648.906600px;}
.yb0{bottom:653.902800px;}
.y36{bottom:654.212250px;}
.y18f{bottom:656.360700px;}
.y5b{bottom:657.587250px;}
.y105{bottom:657.906600px;}
.y155{bottom:660.287250px;}
.yeb{bottom:661.160550px;}
.y16c{bottom:661.637250px;}
.y120{bottom:664.683450px;}
.y17{bottom:666.138750px;}
.ycd{bottom:666.679350px;}
.y93{bottom:671.406600px;}
.y138{bottom:676.683300px;}
.y18e{bottom:676.733400px;}
.y35{bottom:677.087250px;}
.y5a{bottom:680.087250px;}
.y104{bottom:680.406600px;}
.y154{bottom:682.487250px;}
.yaf{bottom:682.656600px;}
.yea{bottom:683.360550px;}
.y16b{bottom:683.687250px;}
.y11f{bottom:685.233450px;}
.y16{bottom:685.638750px;}
.ycc{bottom:688.729350px;}
.y92{bottom:693.906600px;}
.y137{bottom:696.633300px;}
.y18d{bottom:697.106100px;}
.y34{bottom:699.962250px;}
.y59{bottom:702.587250px;}
.yae{bottom:702.906600px;}
.y153{bottom:704.687250px;}
.y15{bottom:705.138750px;}
.ye9{bottom:705.560550px;}
.y16a{bottom:705.737250px;}
.y11e{bottom:705.783300px;}
.ycb{bottom:710.779350px;}
.y103{bottom:711.410550px;}
.y91{bottom:716.406600px;}
.y18c{bottom:717.478650px;}
.y33{bottom:722.837250px;}
.yad{bottom:723.156600px;}
.y14{bottom:724.638750px;}
.y58{bottom:725.087250px;}
.y11d{bottom:726.333450px;}
.y152{bottom:726.887250px;}
.ye8{bottom:727.760550px;}
.y169{bottom:727.787250px;}
.y102{bottom:731.660550px;}
.yca{bottom:732.829350px;}
.y18b{bottom:737.851350px;}
.y90{bottom:738.906600px;}
.y13{bottom:744.138750px;}
.y32{bottom:745.712250px;}
.y11c{bottom:746.883300px;}
.y57{bottom:747.587250px;}
.y151{bottom:749.087250px;}
.y168{bottom:749.837250px;}
.ye7{bottom:749.960550px;}
.yac{bottom:751.910550px;}
.yc9{bottom:754.879350px;}
.y18a{bottom:758.224050px;}
.y8f{bottom:761.406600px;}
.y12{bottom:763.638750px;}
.y4{bottom:766.622250px;}
.y11b{bottom:767.433450px;}
.y31{bottom:768.587250px;}
.y56{bottom:770.087250px;}
.y150{bottom:771.287250px;}
.y166{bottom:771.887250px;}
.yab{bottom:772.160550px;}
.y167{bottom:777.381750px;}
.y189{bottom:778.596600px;}
.ye6{bottom:780.664500px;}
.y11{bottom:783.138750px;}
.y11a{bottom:787.983450px;}
.y3{bottom:789.122250px;}
.y30{bottom:791.462250px;}
.y8e{bottom:792.410550px;}
.y55{bottom:792.587250px;}
.y14f{bottom:793.487250px;}
.yc8{bottom:793.937250px;}
.y188{bottom:798.969300px;}
.ye5{bottom:800.914500px;}
.y10{bottom:802.638750px;}
.y119{bottom:808.533300px;}
.y8d{bottom:812.660550px;}
.y2e{bottom:814.337250px;}
.y14d{bottom:814.623000px;}
.y54{bottom:815.087250px;}
.y14c{bottom:815.687250px;}
.yc7{bottom:815.987250px;}
.y187{bottom:819.342000px;}
.yaa{bottom:821.164500px;}
.yf{bottom:822.138750px;}
.y2{bottom:832.484250px;}
.y2f{bottom:837.212250px;}
.y53{bottom:837.587250px;}
.y14b{bottom:837.887250px;}
.yc6{bottom:838.037250px;}
.y186{bottom:839.714550px;}
.y8c{bottom:841.414500px;}
.ye{bottom:841.638750px;}
.y1{bottom:857.984250px;}
.y52{bottom:860.087250px;}
.yd{bottom:861.138750px;}
.y8b{bottom:861.664500px;}
.y51{bottom:871.653600px;}
.y2d{bottom:930.708000px;}
.ya{bottom:946.311000px;}
.h1a{height:14.365500px;}
.he{height:25.626348px;}
.h19{height:25.754025px;}
.hf{height:29.820450px;}
.h11{height:30.225000px;}
.h7{height:34.080000px;}
.h6{height:37.200000px;}
.h1b{height:38.039062px;}
.h10{height:41.850000px;}
.h16{height:42.180000px;}
.h5{height:42.768000px;}
.h13{height:44.175000px;}
.h14{height:44.735025px;}
.h18{height:44.735625px;}
.h17{height:45.315000px;}
.h3{height:46.266000px;}
.h9{height:46.500000px;}
.h8{height:47.700000px;}
.ha{height:50.760000px;}
.hc{height:51.150000px;}
.h15{height:51.797850px;}
.hd{height:51.798450px;}
.h12{height:52.470000px;}
.h2{height:62.010000px;}
.h4{height:62.040000px;}
.hb{height:285.184500px;}
.h1{height:999.000000px;}
.h0{height:999.213000px;}
.w2{width:19.603500px;}
.w1{width:701.250000px;}
.w0{width:701.575500px;}
.x0{left:0.000000px;}
.x3{left:42.059550px;}
.x4{left:103.815300px;}
.x1{left:106.299150px;}
.x2{left:136.569750px;}
.x1b{left:150.771000px;}
.x1a{left:154.322250px;}
.x5{left:164.440050px;}
.x15{left:166.456800px;}
.x1c{left:170.208900px;}
.xe{left:174.445200px;}
.x16{left:175.911450px;}
.xf{left:183.492600px;}
.x22{left:191.338500px;}
.x1e{left:221.644650px;}
.x1f{left:230.836500px;}
.x6{left:261.539700px;}
.x7{left:266.101950px;}
.x11{left:308.743950px;}
.x12{left:317.738700px;}
.x20{left:328.423650px;}
.x21{left:337.707900px;}
.x8{left:377.535750px;}
.x9{left:382.097850px;}
.x13{left:486.399750px;}
.x14{left:495.454800px;}
.xa{left:547.371900px;}
.x18{left:549.643350px;}
.xb{left:551.934000px;}
.x19{left:559.063350px;}
.x17{left:586.433400px;}
.x1d{left:595.275600px;}
.xc{left:637.524150px;}
.x10{left:639.319650px;}
.xd{left:645.842550px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:16.872000pt;}
.v2{vertical-align:19.536000pt;}
.v1{vertical-align:162.666667pt;}
.ls6a{letter-spacing:-4.224000pt;}
.ls6b{letter-spacing:-3.637333pt;}
.ls3a{letter-spacing:-2.816000pt;}
.ls1{letter-spacing:-2.773333pt;}
.ls2c{letter-spacing:-2.757333pt;}
.ls65{letter-spacing:-2.640000pt;}
.ls5e{letter-spacing:-2.581333pt;}
.ls59{letter-spacing:-2.346667pt;}
.ls66{letter-spacing:-2.288000pt;}
.ls33{letter-spacing:-2.280000pt;}
.ls5f{letter-spacing:-2.112000pt;}
.ls67{letter-spacing:-2.053333pt;}
.ls72{letter-spacing:-1.920000pt;}
.ls41{letter-spacing:-1.824000pt;}
.ls55{letter-spacing:-1.642667pt;}
.lse{letter-spacing:-1.466667pt;}
.ls5c{letter-spacing:-1.408000pt;}
.ls3c{letter-spacing:-1.349333pt;}
.ls2d{letter-spacing:-1.290667pt;}
.ls3b{letter-spacing:-1.232000pt;}
.ls57{letter-spacing:-1.173333pt;}
.ls42{letter-spacing:-1.165333pt;}
.ls1b{letter-spacing:-1.114667pt;}
.ls40{letter-spacing:-1.064000pt;}
.ls51{letter-spacing:-1.056000pt;}
.ls5a{letter-spacing:-0.938667pt;}
.ls36{letter-spacing:-0.880000pt;}
.ls27{letter-spacing:-0.821333pt;}
.ls1d{letter-spacing:-0.762667pt;}
.ls1e{letter-spacing:-0.704000pt;}
.ls61{letter-spacing:-0.672000pt;}
.ls4d{letter-spacing:-0.658667pt;}
.ls17{letter-spacing:-0.645333pt;}
.ls5{letter-spacing:-0.640000pt;}
.ls62{letter-spacing:-0.624000pt;}
.ls25{letter-spacing:-0.608000pt;}
.ls19{letter-spacing:-0.586667pt;}
.ls2b{letter-spacing:-0.528000pt;}
.ls4e{letter-spacing:-0.506667pt;}
.ls1a{letter-spacing:-0.469333pt;}
.ls53{letter-spacing:-0.410432pt;}
.ls60{letter-spacing:-0.384000pt;}
.ls18{letter-spacing:-0.376229pt;}
.ls5d{letter-spacing:-0.352000pt;}
.ls1c{letter-spacing:-0.342027pt;}
.ls56{letter-spacing:-0.307824pt;}
.ls4f{letter-spacing:-0.295387pt;}
.ls34{letter-spacing:-0.253333pt;}
.ls2a{letter-spacing:-0.234667pt;}
.ls2f{letter-spacing:-0.202667pt;}
.ls13{letter-spacing:-0.192000pt;}
.ls10{letter-spacing:-0.176000pt;}
.ls4{letter-spacing:-0.160000pt;}
.ls2e{letter-spacing:-0.152000pt;}
.ls35{letter-spacing:-0.147693pt;}
.ls14{letter-spacing:-0.144000pt;}
.ls5b{letter-spacing:-0.136811pt;}
.ls1f{letter-spacing:-0.117333pt;}
.ls7{letter-spacing:-0.106667pt;}
.ls11{letter-spacing:-0.102608pt;}
.ls49{letter-spacing:-0.101333pt;}
.ls37{letter-spacing:-0.096000pt;}
.ls26{letter-spacing:-0.068405pt;}
.lsf{letter-spacing:-0.058667pt;}
.ls6{letter-spacing:-0.053333pt;}
.ls31{letter-spacing:-0.050667pt;}
.ls12{letter-spacing:-0.048000pt;}
.ls3d{letter-spacing:-0.034203pt;}
.ls32{letter-spacing:-0.029539pt;}
.ls0{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.000320pt;}
.ls47{letter-spacing:0.000972pt;}
.ls23{letter-spacing:0.024000pt;}
.ls28{letter-spacing:0.029333pt;}
.ls68{letter-spacing:0.034203pt;}
.ls22{letter-spacing:0.048000pt;}
.ls54{letter-spacing:0.050667pt;}
.ls2{letter-spacing:0.053333pt;}
.ls16{letter-spacing:0.058667pt;}
.ls50{letter-spacing:0.068405pt;}
.ls64{letter-spacing:0.072000pt;}
.ls71{letter-spacing:0.080000pt;}
.ls48{letter-spacing:0.096000pt;}
.ls45{letter-spacing:0.101333pt;}
.ls24{letter-spacing:0.102608pt;}
.ls6d{letter-spacing:0.106667pt;}
.lsd{letter-spacing:0.117333pt;}
.ls6f{letter-spacing:0.139733pt;}
.ls4b{letter-spacing:0.144000pt;}
.ls15{letter-spacing:0.146667pt;}
.ls3f{letter-spacing:0.152000pt;}
.ls3{letter-spacing:0.160000pt;}
.ls20{letter-spacing:0.176000pt;}
.ls38{letter-spacing:0.202667pt;}
.ls30{letter-spacing:0.234667pt;}
.ls3e{letter-spacing:0.253333pt;}
.ls69{letter-spacing:0.293333pt;}
.ls29{letter-spacing:0.304000pt;}
.lsb{letter-spacing:0.342187pt;}
.ls44{letter-spacing:0.354667pt;}
.ls43{letter-spacing:0.357333pt;}
.ls39{letter-spacing:0.405333pt;}
.ls9{letter-spacing:0.586667pt;}
.ls4c{letter-spacing:0.608000pt;}
.lsa{letter-spacing:0.645333pt;}
.ls58{letter-spacing:1.689322pt;}
.ls52{letter-spacing:2.130407pt;}
.ls46{letter-spacing:2.136533pt;}
.ls21{letter-spacing:2.147805pt;}
.ls63{letter-spacing:2.154022pt;}
.ls4a{letter-spacing:2.660124pt;}
.ls8{letter-spacing:3.271093pt;}
.ls6e{letter-spacing:91.903488pt;}
.ls70{letter-spacing:92.493333pt;}
.ls6c{letter-spacing:92.493867pt;}
.ws57{word-spacing:-53.333333pt;}
.ws6e{word-spacing:-48.000000pt;}
.ws58{word-spacing:-13.024000pt;}
.ws70{word-spacing:-12.965333pt;}
.ws13{word-spacing:-12.848000pt;}
.ws35{word-spacing:-12.730667pt;}
.ws12{word-spacing:-12.378667pt;}
.ws77{word-spacing:-12.320000pt;}
.ws2c{word-spacing:-11.880000pt;}
.ws4d{word-spacing:-11.792000pt;}
.ws6{word-spacing:-11.733333pt;}
.wsa{word-spacing:-11.680000pt;}
.ws2f{word-spacing:-11.674667pt;}
.ws30{word-spacing:-11.616000pt;}
.ws45{word-spacing:-11.557333pt;}
.ws6a{word-spacing:-11.400000pt;}
.ws7f{word-spacing:-11.381333pt;}
.ws6b{word-spacing:-11.248000pt;}
.ws21{word-spacing:-11.146667pt;}
.ws33{word-spacing:-11.096000pt;}
.ws24{word-spacing:-11.088000pt;}
.ws7e{word-spacing:-11.029333pt;}
.ws80{word-spacing:-10.677333pt;}
.ws8{word-spacing:-10.666667pt;}
.ws8a{word-spacing:-10.608000pt;}
.ws6d{word-spacing:-10.589333pt;}
.ws36{word-spacing:-10.560000pt;}
.ws5e{word-spacing:-10.488000pt;}
.ws79{word-spacing:-10.442667pt;}
.ws46{word-spacing:-10.416000pt;}
.ws89{word-spacing:-10.384000pt;}
.ws59{word-spacing:-10.368000pt;}
.ws5f{word-spacing:-10.234667pt;}
.ws32{word-spacing:-10.133333pt;}
.ws81{word-spacing:-10.128000pt;}
.ws3a{word-spacing:-10.090667pt;}
.ws67{word-spacing:-10.082667pt;}
.ws99{word-spacing:-10.026667pt;}
.ws71{word-spacing:-9.648000pt;}
.ws37{word-spacing:-9.600000pt;}
.ws6c{word-spacing:-9.525333pt;}
.ws68{word-spacing:-9.474667pt;}
.ws41{word-spacing:-9.344000pt;}
.ws82{word-spacing:-8.976000pt;}
.ws3{word-spacing:-8.533333pt;}
.ws2e{word-spacing:-7.592992pt;}
.ws25{word-spacing:-7.490384pt;}
.ws53{word-spacing:-7.456181pt;}
.ws15{word-spacing:-7.387776pt;}
.ws78{word-spacing:-7.182560pt;}
.ws23{word-spacing:-7.148357pt;}
.ws20{word-spacing:-7.114155pt;}
.ws76{word-spacing:-7.079952pt;}
.ws1f{word-spacing:-6.933333pt;}
.ws34{word-spacing:-6.468968pt;}
.ws43{word-spacing:-6.439429pt;}
.ws96{word-spacing:-6.042667pt;}
.ws17{word-spacing:-0.645333pt;}
.ws72{word-spacing:-0.608000pt;}
.ws16{word-spacing:-0.586667pt;}
.ws4f{word-spacing:-0.405333pt;}
.ws62{word-spacing:-0.354667pt;}
.ws40{word-spacing:-0.304000pt;}
.ws60{word-spacing:-0.293333pt;}
.ws5b{word-spacing:-0.253333pt;}
.ws2d{word-spacing:-0.234667pt;}
.wsb{word-spacing:-0.213333pt;}
.ws4e{word-spacing:-0.202667pt;}
.ws11{word-spacing:-0.176000pt;}
.ws10{word-spacing:-0.160000pt;}
.ws5c{word-spacing:-0.152000pt;}
.ws61{word-spacing:-0.144000pt;}
.ws2b{word-spacing:-0.117333pt;}
.ws98{word-spacing:-0.106667pt;}
.ws5d{word-spacing:-0.102608pt;}
.ws63{word-spacing:-0.101333pt;}
.ws66{word-spacing:-0.096000pt;}
.ws0{word-spacing:-0.069333pt;}
.ws75{word-spacing:-0.068405pt;}
.ws1{word-spacing:-0.058667pt;}
.ws9{word-spacing:-0.053333pt;}
.ws4c{word-spacing:-0.050667pt;}
.ws39{word-spacing:-0.048000pt;}
.ws2{word-spacing:-0.042667pt;}
.ws1e{word-spacing:-0.034667pt;}
.ws14{word-spacing:-0.034203pt;}
.ws4{word-spacing:0.000000pt;}
.ws1b{word-spacing:0.048000pt;}
.ws47{word-spacing:0.050667pt;}
.wsd{word-spacing:0.053333pt;}
.ws19{word-spacing:0.058667pt;}
.ws38{word-spacing:0.068405pt;}
.ws4b{word-spacing:0.096000pt;}
.ws65{word-spacing:0.101333pt;}
.ws54{word-spacing:0.102608pt;}
.wsf{word-spacing:0.106667pt;}
.ws2a{word-spacing:0.117333pt;}
.ws83{word-spacing:0.136811pt;}
.ws1d{word-spacing:0.144000pt;}
.ws4a{word-spacing:0.147693pt;}
.ws3e{word-spacing:0.152000pt;}
.wsc{word-spacing:0.160000pt;}
.ws1a{word-spacing:0.176000pt;}
.ws1c{word-spacing:0.192000pt;}
.ws3f{word-spacing:0.202667pt;}
.ws3c{word-spacing:0.234667pt;}
.ws49{word-spacing:0.253333pt;}
.ws74{word-spacing:0.295387pt;}
.ws64{word-spacing:0.304000pt;}
.ws86{word-spacing:0.384000pt;}
.ws42{word-spacing:0.410667pt;}
.ws27{word-spacing:0.469333pt;}
.ws73{word-spacing:0.506667pt;}
.ws3d{word-spacing:0.528000pt;}
.ws97{word-spacing:0.533333pt;}
.ws31{word-spacing:0.557333pt;}
.ws7{word-spacing:0.586667pt;}
.ws69{word-spacing:0.608000pt;}
.ws26{word-spacing:0.645333pt;}
.ws87{word-spacing:0.672000pt;}
.ws29{word-spacing:0.704000pt;}
.ws28{word-spacing:0.762667pt;}
.ws44{word-spacing:0.821333pt;}
.ws7c{word-spacing:0.880000pt;}
.ws6f{word-spacing:0.997333pt;}
.ws55{word-spacing:1.013333pt;}
.ws22{word-spacing:1.056000pt;}
.ws56{word-spacing:1.114667pt;}
.ws51{word-spacing:1.173333pt;}
.ws3b{word-spacing:1.232000pt;}
.ws52{word-spacing:1.290667pt;}
.ws7d{word-spacing:1.349333pt;}
.ws7b{word-spacing:1.408000pt;}
.ws18{word-spacing:1.466667pt;}
.ws7a{word-spacing:1.642667pt;}
.ws5a{word-spacing:1.824000pt;}
.ws9a{word-spacing:1.920000pt;}
.ws8c{word-spacing:2.053333pt;}
.ws85{word-spacing:2.112000pt;}
.ws88{word-spacing:2.229333pt;}
.ws48{word-spacing:2.280000pt;}
.wse{word-spacing:2.346667pt;}
.ws84{word-spacing:2.581333pt;}
.ws8b{word-spacing:2.640000pt;}
.ws5{word-spacing:2.773333pt;}
.ws50{word-spacing:2.816000pt;}
.ws92{word-spacing:15.194667pt;}
.ws8d{word-spacing:55.205333pt;}
.ws8e{word-spacing:56.906667pt;}
.ws95{word-spacing:132.762667pt;}
.ws91{word-spacing:175.648000pt;}
.ws90{word-spacing:208.266667pt;}
.ws94{word-spacing:208.501333pt;}
.ws93{word-spacing:208.912000pt;}
.ws8f{word-spacing:211.376000pt;}
._e{margin-left:-211.536533pt;}
._12{margin-left:-208.917867pt;}
._f{margin-left:-205.235627pt;}
._13{margin-left:-201.061737pt;}
._10{margin-left:-167.910269pt;}
._11{margin-left:-14.659188pt;}
._d{margin-left:-13.065067pt;}
._15{margin-left:-11.754667pt;}
._5{margin-left:-5.888000pt;}
._6{margin-left:-4.765345pt;}
._2{margin-left:-3.285333pt;}
._0{margin-left:-2.218667pt;}
._3{margin-left:-0.938667pt;}
._7{width:0.892800pt;}
._4{width:1.808000pt;}
._1{width:2.773333pt;}
._8{width:3.763200pt;}
._9{width:4.673867pt;}
._c{width:5.776533pt;}
._b{width:6.996000pt;}
._a{width:8.720411pt;}
._14{width:224.165333pt;}
.fs9{font-size:29.538667pt;}
.fs6{font-size:34.202667pt;}
.fs7{font-size:34.666667pt;}
.fs2{font-size:42.666667pt;}
.fs4{font-size:48.000000pt;}
.fs8{font-size:50.666667pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:58.666667pt;}
.fsa{font-size:64.000000pt;}
.fs0{font-size:69.333333pt;}
.fs5{font-size:327.093333pt;}
.y0{bottom:0.000000pt;}
.y14e{bottom:3.660400pt;}
.y8a{bottom:94.488133pt;}
.y50{bottom:94.488267pt;}
.y101{bottom:94.488400pt;}
.y1c0{bottom:106.790000pt;}
.y89{bottom:111.821467pt;}
.y7f{bottom:111.821600pt;}
.y4f{bottom:111.821733pt;}
.y118{bottom:111.821867pt;}
.y1a9{bottom:112.597200pt;}
.y1bf{bottom:124.123333pt;}
.y88{bottom:129.154800pt;}
.ya9{bottom:129.154933pt;}
.y7e{bottom:129.155067pt;}
.y6b{bottom:129.155200pt;}
.y4e{bottom:129.155333pt;}
.y1a8{bottom:130.706267pt;}
.y1be{bottom:141.456667pt;}
.ye4{bottom:146.488133pt;}
.ya8{bottom:146.488267pt;}
.y7d{bottom:146.488400pt;}
.y136{bottom:146.488533pt;}
.y4d{bottom:146.488667pt;}
.y117{bottom:146.488800pt;}
.yc5{bottom:148.462133pt;}
.y1a7{bottom:148.815200pt;}
.y185{bottom:149.403867pt;}
.y1bd{bottom:158.790000pt;}
.ye3{bottom:163.821467pt;}
.ya7{bottom:163.821600pt;}
.y135{bottom:163.821867pt;}
.y7c{bottom:163.822000pt;}
.y4c{bottom:163.822133pt;}
.y1a6{bottom:166.924267pt;}
.yc4{bottom:168.795467pt;}
.y17f{bottom:169.403867pt;}
.y1bc{bottom:176.123333pt;}
.y87{bottom:177.844800pt;}
.ye2{bottom:181.154800pt;}
.ya6{bottom:181.154933pt;}
.y134{bottom:181.155200pt;}
.y7b{bottom:181.155333pt;}
.y4b{bottom:181.155600pt;}
.y1a5{bottom:185.033333pt;}
.yc3{bottom:189.128800pt;}
.y17e{bottom:189.403867pt;}
.y1bb{bottom:193.456667pt;}
.y86{bottom:195.844800pt;}
.ye1{bottom:198.488133pt;}
.ya5{bottom:198.488267pt;}
.y7a{bottom:198.488667pt;}
.y100{bottom:198.488800pt;}
.y116{bottom:198.488933pt;}
.y4a{bottom:198.489200pt;}
.y174{bottom:200.603867pt;}
.y1a4{bottom:203.142267pt;}
.y17d{bottom:209.403867pt;}
.yc2{bottom:209.462133pt;}
.y1ba{bottom:210.790000pt;}
.y85{bottom:213.844800pt;}
.ye0{bottom:215.821467pt;}
.y79{bottom:215.822000pt;}
.yff{bottom:215.822133pt;}
.y115{bottom:215.822267pt;}
.y49{bottom:215.822533pt;}
.y2c{bottom:216.784667pt;}
.y173{bottom:220.203867pt;}
.y14a{bottom:221.075200pt;}
.y1a3{bottom:221.251333pt;}
.y1b9{bottom:228.123333pt;}
.y17c{bottom:229.403867pt;}
.yc1{bottom:229.795467pt;}
.y78{bottom:233.155333pt;}
.y133{bottom:233.155467pt;}
.yfe{bottom:233.155600pt;}
.y48{bottom:233.155867pt;}
.y2b{bottom:234.118000pt;}
.y1a2{bottom:239.360400pt;}
.y84{bottom:239.403867pt;}
.y172{bottom:239.803867pt;}
.y149{bottom:241.075200pt;}
.y1b8{bottom:245.456667pt;}
.ya4{bottom:245.687867pt;}
.y17b{bottom:249.403867pt;}
.yc0{bottom:250.128800pt;}
.y114{bottom:250.488933pt;}
.yfd{bottom:250.489067pt;}
.y47{bottom:250.489467pt;}
.y165{bottom:250.726667pt;}
.y2a{bottom:251.451333pt;}
.y83{bottom:257.403867pt;}
.y1a1{bottom:257.469333pt;}
.ydf{bottom:259.403867pt;}
.y148{bottom:261.075200pt;}
.y1b7{bottom:262.790000pt;}
.ya3{bottom:265.687867pt;}
.y46{bottom:267.822800pt;}
.y29{bottom:268.784667pt;}
.y17a{bottom:269.403867pt;}
.ybf{bottom:270.462133pt;}
.y164{bottom:270.726667pt;}
.y77{bottom:273.070533pt;}
.y82{bottom:275.403867pt;}
.y1a0{bottom:275.578400pt;}
.yde{bottom:279.003867pt;}
.y1b6{bottom:280.123333pt;}
.y147{bottom:281.075200pt;}
.y6a{bottom:284.522000pt;}
.y45{bottom:285.156133pt;}
.ya2{bottom:285.687867pt;}
.y28{bottom:286.118000pt;}
.yfc{bottom:286.180267pt;}
.y132{bottom:286.737200pt;}
.y178{bottom:289.403867pt;}
.ybe{bottom:290.795467pt;}
.y76{bottom:293.070533pt;}
.y19f{bottom:293.687467pt;}
.y179{bottom:294.287867pt;}
.y1b5{bottom:297.456667pt;}
.y163{bottom:298.285733pt;}
.ydd{bottom:298.603867pt;}
.y81{bottom:300.962933pt;}
.y146{bottom:301.075200pt;}
.y44{bottom:302.489467pt;}
.y27{bottom:303.451333pt;}
.y69{bottom:304.522000pt;}
.ya1{bottom:305.687867pt;}
.yfa{bottom:305.780133pt;}
.y130{bottom:306.737200pt;}
.y177{bottom:309.403867pt;}
.yfb{bottom:310.664133pt;}
.ybd{bottom:311.128800pt;}
.y131{bottom:311.621200pt;}
.y19e{bottom:311.796400pt;}
.y74{bottom:313.070533pt;}
.y1b4{bottom:314.790000pt;}
.y162{bottom:315.885733pt;}
.y75{bottom:317.954533pt;}
.ydc{bottom:318.203867pt;}
.y80{bottom:318.962933pt;}
.y113{bottom:319.246933pt;}
.y43{bottom:319.822933pt;}
.y26{bottom:320.784667pt;}
.y145{bottom:321.075200pt;}
.y68{bottom:324.522000pt;}
.yf9{bottom:325.380267pt;}
.ya0{bottom:325.687867pt;}
.y12f{bottom:326.737200pt;}
.y176{bottom:329.403867pt;}
.y19d{bottom:329.905467pt;}
.ybc{bottom:331.462133pt;}
.y1b3{bottom:332.123333pt;}
.y73{bottom:333.070533pt;}
.y161{bottom:333.485733pt;}
.y112{bottom:337.246933pt;}
.ydb{bottom:337.803867pt;}
.y25{bottom:338.118000pt;}
.y144{bottom:341.075200pt;}
.y67{bottom:344.522000pt;}
.yf8{bottom:344.980133pt;}
.y9f{bottom:345.687867pt;}
.y12e{bottom:346.737200pt;}
.y19c{bottom:348.014533pt;}
.y184{bottom:349.403867pt;}
.y1b2{bottom:349.456667pt;}
.ybb{bottom:351.795467pt;}
.y72{bottom:353.070533pt;}
.y111{bottom:355.246933pt;}
.y24{bottom:355.451333pt;}
.yda{bottom:357.403867pt;}
.y42{bottom:357.855333pt;}
.y160{bottom:358.644800pt;}
.yc{bottom:364.307867pt;}
.y66{bottom:364.522000pt;}
.yf7{bottom:364.580267pt;}
.y9e{bottom:365.687867pt;}
.y19b{bottom:366.123467pt;}
.y12d{bottom:366.737200pt;}
.y1b1{bottom:366.790000pt;}
.y143{bottom:368.634267pt;}
.y183{bottom:369.403867pt;}
.yba{bottom:372.128800pt;}
.y23{bottom:372.784667pt;}
.y71{bottom:373.070533pt;}
.y110{bottom:373.246933pt;}
.yd9{bottom:377.003867pt;}
.y41{bottom:378.188667pt;}
.y15f{bottom:378.644800pt;}
.y9{bottom:381.223333pt;}
.y1b0{bottom:384.123333pt;}
.yf6{bottom:384.180267pt;}
.y19a{bottom:384.232533pt;}
.y65{bottom:384.522000pt;}
.y142{bottom:386.367600pt;}
.y12c{bottom:386.737200pt;}
.y182{bottom:389.403867pt;}
.y22{bottom:390.118000pt;}
.y10f{bottom:391.246933pt;}
.yb9{bottom:392.462133pt;}
.y70{bottom:393.070533pt;}
.y9d{bottom:393.246933pt;}
.yd8{bottom:396.603867pt;}
.y8{bottom:397.223333pt;}
.y40{bottom:398.522000pt;}
.y1af{bottom:401.456667pt;}
.y199{bottom:402.341600pt;}
.yf5{bottom:403.780133pt;}
.y64{bottom:404.522000pt;}
.y15e{bottom:406.203867pt;}
.y12b{bottom:406.737200pt;}
.y21{bottom:407.451333pt;}
.y10e{bottom:409.246933pt;}
.y181{bottom:409.403867pt;}
.y9c{bottom:411.246933pt;}
.y141{bottom:411.660000pt;}
.yb8{bottom:412.795467pt;}
.yd7{bottom:416.203867pt;}
.y1ae{bottom:418.790000pt;}
.y3f{bottom:418.855333pt;}
.y198{bottom:420.450533pt;}
.y6f{bottom:420.629600pt;}
.y15d{bottom:423.537200pt;}
.y63{bottom:424.522000pt;}
.y20{bottom:424.784667pt;}
.y12a{bottom:426.737200pt;}
.y10d{bottom:427.246933pt;}
.y140{bottom:429.393333pt;}
.y180{bottom:429.403867pt;}
.y175{bottom:429.406000pt;}
.yf4{bottom:430.939200pt;}
.yb7{bottom:433.128800pt;}
.yd6{bottom:435.803867pt;}
.y1ad{bottom:436.123333pt;}
.y9b{bottom:436.805867pt;}
.y197{bottom:438.559600pt;}
.y6e{bottom:438.629600pt;}
.y3e{bottom:439.188667pt;}
.y1f{bottom:442.118000pt;}
.yb{bottom:442.662533pt;}
.y62{bottom:444.522000pt;}
.y10c{bottom:445.246933pt;}
.y128{bottom:446.737333pt;}
.y15c{bottom:448.429600pt;}
.yf3{bottom:448.939200pt;}
.y129{bottom:451.621333pt;}
.y1ac{bottom:453.456667pt;}
.yb6{bottom:453.462133pt;}
.y13f{bottom:454.685733pt;}
.yd5{bottom:455.403867pt;}
.y6d{bottom:456.629600pt;}
.y196{bottom:456.668667pt;}
.y9a{bottom:456.805867pt;}
.y1e{bottom:459.451333pt;}
.y3d{bottom:459.522000pt;}
.y10b{bottom:463.246933pt;}
.y61{bottom:464.522000pt;}
.y15b{bottom:465.762933pt;}
.y127{bottom:466.737333pt;}
.yf2{bottom:466.939200pt;}
.y7{bottom:469.026800pt;}
.y1ab{bottom:470.790000pt;}
.y13e{bottom:472.419067pt;}
.yb5{bottom:473.795467pt;}
.y6c{bottom:474.629600pt;}
.y195{bottom:474.777600pt;}
.yd3{bottom:475.003867pt;}
.y1d{bottom:476.784667pt;}
.y99{bottom:476.805867pt;}
.y3c{bottom:479.855333pt;}
.yd4{bottom:479.887867pt;}
.y10a{bottom:481.246933pt;}
.y15a{bottom:483.096267pt;}
.y60{bottom:484.522000pt;}
.yf1{bottom:484.939200pt;}
.y6{bottom:485.026800pt;}
.y126{bottom:486.737333pt;}
.y1aa{bottom:488.123333pt;}
.y171{bottom:490.122000pt;}
.y194{bottom:492.886667pt;}
.yd2{bottom:494.603867pt;}
.y98{bottom:496.805867pt;}
.y13d{bottom:497.711467pt;}
.y109{bottom:499.246933pt;}
.y3a{bottom:500.188667pt;}
.yb4{bottom:501.687867pt;}
.yf0{bottom:502.939200pt;}
.y5f{bottom:504.522000pt;}
.y5{bottom:505.023333pt;}
.y3b{bottom:505.072667pt;}
.y1c{bottom:505.456667pt;}
.y125{bottom:506.737333pt;}
.y159{bottom:507.988667pt;}
.y170{bottom:509.722000pt;}
.y193{bottom:510.995733pt;}
.yd1{bottom:514.203867pt;}
.y13c{bottom:515.444800pt;}
.y97{bottom:516.805867pt;}
.yb3{bottom:519.687867pt;}
.y39{bottom:520.522000pt;}
.y1b{bottom:522.790000pt;}
.y5e{bottom:524.522000pt;}
.y108{bottom:524.805867pt;}
.y124{bottom:526.737333pt;}
.y158{bottom:527.722000pt;}
.yef{bottom:528.498267pt;}
.y192{bottom:529.104667pt;}
.y16f{bottom:529.322000pt;}
.yd0{bottom:533.803867pt;}
.y96{bottom:536.805867pt;}
.yb2{bottom:537.687867pt;}
.y1a{bottom:540.123333pt;}
.y13b{bottom:540.737200pt;}
.y38{bottom:540.855333pt;}
.y5d{bottom:544.522000pt;}
.y107{bottom:544.805867pt;}
.y191{bottom:547.213733pt;}
.y157{bottom:547.455333pt;}
.yed{bottom:548.231600pt;}
.y16e{bottom:548.922000pt;}
.yee{bottom:553.115600pt;}
.ycf{bottom:553.403867pt;}
.y122{bottom:554.296267pt;}
.y95{bottom:556.805867pt;}
.y19{bottom:557.456667pt;}
.y13a{bottom:558.470533pt;}
.y123{bottom:558.514267pt;}
.y37{bottom:561.188667pt;}
.yb1{bottom:563.246933pt;}
.y5c{bottom:564.522000pt;}
.y106{bottom:564.805867pt;}
.y190{bottom:565.322800pt;}
.y156{bottom:567.188667pt;}
.yec{bottom:567.965067pt;}
.y16d{bottom:568.522000pt;}
.y121{bottom:572.562933pt;}
.yce{bottom:573.003867pt;}
.y18{bottom:574.790000pt;}
.y139{bottom:576.203867pt;}
.y94{bottom:576.805867pt;}
.yb0{bottom:581.246933pt;}
.y36{bottom:581.522000pt;}
.y18f{bottom:583.431733pt;}
.y5b{bottom:584.522000pt;}
.y105{bottom:584.805867pt;}
.y155{bottom:586.922000pt;}
.yeb{bottom:587.698267pt;}
.y16c{bottom:588.122000pt;}
.y120{bottom:590.829733pt;}
.y17{bottom:592.123333pt;}
.ycd{bottom:592.603867pt;}
.y93{bottom:596.805867pt;}
.y138{bottom:601.496267pt;}
.y18e{bottom:601.540800pt;}
.y35{bottom:601.855333pt;}
.y5a{bottom:604.522000pt;}
.y104{bottom:604.805867pt;}
.y154{bottom:606.655333pt;}
.yaf{bottom:606.805867pt;}
.yea{bottom:607.431600pt;}
.y16b{bottom:607.722000pt;}
.y11f{bottom:609.096400pt;}
.y16{bottom:609.456667pt;}
.ycc{bottom:612.203867pt;}
.y92{bottom:616.805867pt;}
.y137{bottom:619.229600pt;}
.y18d{bottom:619.649867pt;}
.y34{bottom:622.188667pt;}
.y59{bottom:624.522000pt;}
.yae{bottom:624.805867pt;}
.y153{bottom:626.388667pt;}
.y15{bottom:626.790000pt;}
.ye9{bottom:627.164933pt;}
.y16a{bottom:627.322000pt;}
.y11e{bottom:627.362933pt;}
.ycb{bottom:631.803867pt;}
.y103{bottom:632.364933pt;}
.y91{bottom:636.805867pt;}
.y18c{bottom:637.758800pt;}
.y33{bottom:642.522000pt;}
.yad{bottom:642.805867pt;}
.y14{bottom:644.123333pt;}
.y58{bottom:644.522000pt;}
.y11d{bottom:645.629733pt;}
.y152{bottom:646.122000pt;}
.ye8{bottom:646.898267pt;}
.y169{bottom:646.922000pt;}
.y102{bottom:650.364933pt;}
.yca{bottom:651.403867pt;}
.y18b{bottom:655.867867pt;}
.y90{bottom:656.805867pt;}
.y13{bottom:661.456667pt;}
.y32{bottom:662.855333pt;}
.y11c{bottom:663.896267pt;}
.y57{bottom:664.522000pt;}
.y151{bottom:665.855333pt;}
.y168{bottom:666.522000pt;}
.ye7{bottom:666.631600pt;}
.yac{bottom:668.364933pt;}
.yc9{bottom:671.003867pt;}
.y18a{bottom:673.976933pt;}
.y8f{bottom:676.805867pt;}
.y12{bottom:678.790000pt;}
.y4{bottom:681.442000pt;}
.y11b{bottom:682.163067pt;}
.y31{bottom:683.188667pt;}
.y56{bottom:684.522000pt;}
.y150{bottom:685.588667pt;}
.y166{bottom:686.122000pt;}
.yab{bottom:686.364933pt;}
.y167{bottom:691.006000pt;}
.y189{bottom:692.085867pt;}
.ye6{bottom:693.924000pt;}
.y11{bottom:696.123333pt;}
.y11a{bottom:700.429733pt;}
.y3{bottom:701.442000pt;}
.y30{bottom:703.522000pt;}
.y8e{bottom:704.364933pt;}
.y55{bottom:704.522000pt;}
.y14f{bottom:705.322000pt;}
.yc8{bottom:705.722000pt;}
.y188{bottom:710.194933pt;}
.ye5{bottom:711.924000pt;}
.y10{bottom:713.456667pt;}
.y119{bottom:718.696267pt;}
.y8d{bottom:722.364933pt;}
.y2e{bottom:723.855333pt;}
.y14d{bottom:724.109333pt;}
.y54{bottom:724.522000pt;}
.y14c{bottom:725.055333pt;}
.yc7{bottom:725.322000pt;}
.y187{bottom:728.304000pt;}
.yaa{bottom:729.924000pt;}
.yf{bottom:730.790000pt;}
.y2{bottom:739.986000pt;}
.y2f{bottom:744.188667pt;}
.y53{bottom:744.522000pt;}
.y14b{bottom:744.788667pt;}
.yc6{bottom:744.922000pt;}
.y186{bottom:746.412933pt;}
.y8c{bottom:747.924000pt;}
.ye{bottom:748.123333pt;}
.y1{bottom:762.652667pt;}
.y52{bottom:764.522000pt;}
.yd{bottom:765.456667pt;}
.y8b{bottom:765.924000pt;}
.y51{bottom:774.803200pt;}
.y2d{bottom:827.296000pt;}
.ya{bottom:841.165333pt;}
.h1a{height:12.769333pt;}
.he{height:22.778976pt;}
.h19{height:22.892467pt;}
.hf{height:26.507067pt;}
.h11{height:26.866667pt;}
.h7{height:30.293333pt;}
.h6{height:33.066667pt;}
.h1b{height:33.812500pt;}
.h10{height:37.200000pt;}
.h16{height:37.493333pt;}
.h5{height:38.016000pt;}
.h13{height:39.266667pt;}
.h14{height:39.764467pt;}
.h18{height:39.765000pt;}
.h17{height:40.280000pt;}
.h3{height:41.125333pt;}
.h9{height:41.333333pt;}
.h8{height:42.400000pt;}
.ha{height:45.120000pt;}
.hc{height:45.466667pt;}
.h15{height:46.042533pt;}
.hd{height:46.043067pt;}
.h12{height:46.640000pt;}
.h2{height:55.120000pt;}
.h4{height:55.146667pt;}
.hb{height:253.497333pt;}
.h1{height:888.000000pt;}
.h0{height:888.189333pt;}
.w2{width:17.425333pt;}
.w1{width:623.333333pt;}
.w0{width:623.622667pt;}
.x0{left:0.000000pt;}
.x3{left:37.386267pt;}
.x4{left:92.280267pt;}
.x1{left:94.488133pt;}
.x2{left:121.395333pt;}
.x1b{left:134.018667pt;}
.x1a{left:137.175333pt;}
.x5{left:146.168933pt;}
.x15{left:147.961600pt;}
.x1c{left:151.296800pt;}
.xe{left:155.062400pt;}
.x16{left:156.365733pt;}
.xf{left:163.104533pt;}
.x22{left:170.078667pt;}
.x1e{left:197.017467pt;}
.x1f{left:205.188000pt;}
.x6{left:232.479733pt;}
.x7{left:236.535067pt;}
.x11{left:274.439067pt;}
.x12{left:282.434400pt;}
.x20{left:291.932133pt;}
.x21{left:300.184800pt;}
.x8{left:335.587333pt;}
.x9{left:339.642533pt;}
.x13{left:432.355333pt;}
.x14{left:440.404267pt;}
.xa{left:486.552800pt;}
.x18{left:488.571867pt;}
.xb{left:490.608000pt;}
.x19{left:496.945200pt;}
.x17{left:521.274133pt;}
.x1d{left:529.133867pt;}
.xc{left:566.688133pt;}
.x10{left:568.284133pt;}
.xd{left:574.082267pt;}
}




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