
    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_d779bae9e65b18dbeece697a.woff')format("woff");}.ff1{font-family:ff1;line-height:0.963000;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_64bab57e71fd159bc4aa66c8.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_50c03d2d8145a889cc028743.woff')format("woff");}.ff3{font-family:ff3;line-height:1.148000;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_47ea522dfc1d1362888a2b6c.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_8f2a666868ea9b6565966ecf.woff')format("woff");}.ff5{font-family:ff5;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m60{transform:matrix(-0.115519,0.221710,-0.221710,-0.115519,0,0);-ms-transform:matrix(-0.115519,0.221710,-0.221710,-0.115519,0,0);-webkit-transform:matrix(-0.115519,0.221710,-0.221710,-0.115519,0,0);}
.m5f{transform:matrix(-0.109804,0.224595,-0.224595,-0.109804,0,0);-ms-transform:matrix(-0.109804,0.224595,-0.224595,-0.109804,0,0);-webkit-transform:matrix(-0.109804,0.224595,-0.224595,-0.109804,0,0);}
.m5e{transform:matrix(-0.104282,0.227212,-0.227212,-0.104282,0,0);-ms-transform:matrix(-0.104282,0.227212,-0.227212,-0.104282,0,0);-webkit-transform:matrix(-0.104282,0.227212,-0.227212,-0.104282,0,0);}
.m12{transform:matrix(-0.101570,-0.228437,0.228437,-0.101570,0,0);-ms-transform:matrix(-0.101570,-0.228437,0.228437,-0.101570,0,0);-webkit-transform:matrix(-0.101570,-0.228437,0.228437,-0.101570,0,0);}
.m5d{transform:matrix(-0.095737,0.230943,-0.230943,-0.095737,0,0);-ms-transform:matrix(-0.095737,0.230943,-0.230943,-0.095737,0,0);-webkit-transform:matrix(-0.095737,0.230943,-0.230943,-0.095737,0,0);}
.m13{transform:matrix(-0.092126,-0.232407,0.232407,-0.092126,0,0);-ms-transform:matrix(-0.092126,-0.232407,0.232407,-0.092126,0,0);-webkit-transform:matrix(-0.092126,-0.232407,0.232407,-0.092126,0,0);}
.m79{transform:matrix(-0.090830,0.232916,-0.232916,-0.090830,0,0);-ms-transform:matrix(-0.090830,0.232916,-0.232916,-0.090830,0,0);-webkit-transform:matrix(-0.090830,0.232916,-0.232916,-0.090830,0,0);}
.m30{transform:matrix(-0.090830,-0.232916,0.232916,-0.090830,0,0);-ms-transform:matrix(-0.090830,-0.232916,0.232916,-0.090830,0,0);-webkit-transform:matrix(-0.090830,-0.232916,0.232916,-0.090830,0,0);}
.m5c{transform:matrix(-0.087267,0.234274,-0.234274,-0.087267,0,0);-ms-transform:matrix(-0.087267,0.234274,-0.234274,-0.087267,0,0);-webkit-transform:matrix(-0.087267,0.234274,-0.234274,-0.087267,0,0);}
.m78{transform:matrix(-0.084773,0.235188,-0.235188,-0.084773,0,0);-ms-transform:matrix(-0.084773,0.235188,-0.235188,-0.084773,0,0);-webkit-transform:matrix(-0.084773,0.235188,-0.235188,-0.084773,0,0);}
.m14{transform:matrix(-0.084025,-0.235457,0.235457,-0.084025,0,0);-ms-transform:matrix(-0.084025,-0.235457,0.235457,-0.084025,0,0);-webkit-transform:matrix(-0.084025,-0.235457,0.235457,-0.084025,0,0);}
.m31{transform:matrix(-0.081203,-0.236445,0.236445,-0.081203,0,0);-ms-transform:matrix(-0.081203,-0.236445,0.236445,-0.081203,0,0);-webkit-transform:matrix(-0.081203,-0.236445,0.236445,-0.081203,0,0);}
.m5b{transform:matrix(-0.081046,0.236498,-0.236498,-0.081046,0,0);-ms-transform:matrix(-0.081046,0.236498,-0.236498,-0.081046,0,0);-webkit-transform:matrix(-0.081046,0.236498,-0.236498,-0.081046,0,0);}
.m77{transform:matrix(-0.078938,0.237210,-0.237210,-0.078938,0,0);-ms-transform:matrix(-0.078938,0.237210,-0.237210,-0.078938,0,0);-webkit-transform:matrix(-0.078938,0.237210,-0.237210,-0.078938,0,0);}
.m15{transform:matrix(-0.078365,-0.237400,0.237400,-0.078365,0,0);-ms-transform:matrix(-0.078365,-0.237400,0.237400,-0.078365,0,0);-webkit-transform:matrix(-0.078365,-0.237400,0.237400,-0.078365,0,0);}
.m5a{transform:matrix(-0.073352,0.238997,-0.238997,-0.073352,0,0);-ms-transform:matrix(-0.073352,0.238997,-0.238997,-0.073352,0,0);-webkit-transform:matrix(-0.073352,0.238997,-0.238997,-0.073352,0,0);}
.m32{transform:matrix(-0.072968,-0.239114,0.239114,-0.072968,0,0);-ms-transform:matrix(-0.072968,-0.239114,0.239114,-0.072968,0,0);-webkit-transform:matrix(-0.072968,-0.239114,0.239114,-0.072968,0,0);}
.m16{transform:matrix(-0.072528,-0.239248,0.239248,-0.072528,0,0);-ms-transform:matrix(-0.072528,-0.239248,0.239248,-0.072528,0,0);-webkit-transform:matrix(-0.072528,-0.239248,0.239248,-0.072528,0,0);}
.m76{transform:matrix(-0.069970,0.240009,-0.240009,-0.069970,0,0);-ms-transform:matrix(-0.069970,0.240009,-0.240009,-0.069970,0,0);-webkit-transform:matrix(-0.069970,0.240009,-0.240009,-0.069970,0,0);}
.m33{transform:matrix(-0.067239,-0.240788,0.240788,-0.067239,0,0);-ms-transform:matrix(-0.067239,-0.240788,0.240788,-0.067239,0,0);-webkit-transform:matrix(-0.067239,-0.240788,0.240788,-0.067239,0,0);}
.m92{transform:matrix(-0.064233,0.241607,-0.241607,-0.064233,0,0);-ms-transform:matrix(-0.064233,0.241607,-0.241607,-0.064233,0,0);-webkit-transform:matrix(-0.064233,0.241607,-0.241607,-0.064233,0,0);}
.m17{transform:matrix(-0.063483,-0.241806,0.241806,-0.063483,0,0);-ms-transform:matrix(-0.063483,-0.241806,0.241806,-0.063483,0,0);-webkit-transform:matrix(-0.063483,-0.241806,0.241806,-0.063483,0,0);}
.m1{transform:matrix(-0.061706,-0.242265,0.242265,-0.061706,0,0);-ms-transform:matrix(-0.061706,-0.242265,0.242265,-0.061706,0,0);-webkit-transform:matrix(-0.061706,-0.242265,0.242265,-0.061706,0,0);}
.m59{transform:matrix(-0.061658,0.242277,-0.242277,-0.061658,0,0);-ms-transform:matrix(-0.061658,0.242277,-0.242277,-0.061658,0,0);-webkit-transform:matrix(-0.061658,0.242277,-0.242277,-0.061658,0,0);}
.m34{transform:matrix(-0.061313,-0.242365,0.242365,-0.061313,0,0);-ms-transform:matrix(-0.061313,-0.242365,0.242365,-0.061313,0,0);-webkit-transform:matrix(-0.061313,-0.242365,0.242365,-0.061313,0,0);}
.m75{transform:matrix(-0.061171,0.242401,-0.242401,-0.061171,0,0);-ms-transform:matrix(-0.061171,0.242401,-0.242401,-0.061171,0,0);-webkit-transform:matrix(-0.061171,0.242401,-0.242401,-0.061171,0,0);}
.m91{transform:matrix(-0.057983,0.243183,-0.243183,-0.057983,0,0);-ms-transform:matrix(-0.057983,0.243183,-0.243183,-0.057983,0,0);-webkit-transform:matrix(-0.057983,0.243183,-0.243183,-0.057983,0,0);}
.m74{transform:matrix(-0.054715,0.243939,-0.243939,-0.054715,0,0);-ms-transform:matrix(-0.054715,0.243939,-0.243939,-0.054715,0,0);-webkit-transform:matrix(-0.054715,0.243939,-0.243939,-0.054715,0,0);}
.m18{transform:matrix(-0.054620,-0.243960,0.243960,-0.054620,0,0);-ms-transform:matrix(-0.054620,-0.243960,0.243960,-0.054620,0,0);-webkit-transform:matrix(-0.054620,-0.243960,0.243960,-0.054620,0,0);}
.m58{transform:matrix(-0.052951,0.244328,-0.244328,-0.052951,0,0);-ms-transform:matrix(-0.052951,0.244328,-0.244328,-0.052951,0,0);-webkit-transform:matrix(-0.052951,0.244328,-0.244328,-0.052951,0,0);}
.m35{transform:matrix(-0.052159,-0.244498,0.244498,-0.052159,0,0);-ms-transform:matrix(-0.052159,-0.244498,0.244498,-0.052159,0,0);-webkit-transform:matrix(-0.052159,-0.244498,0.244498,-0.052159,0,0);}
.m90{transform:matrix(-0.052002,0.244532,-0.244532,-0.052002,0,0);-ms-transform:matrix(-0.052002,0.244532,-0.244532,-0.052002,0,0);-webkit-transform:matrix(-0.052002,0.244532,-0.244532,-0.052002,0,0);}
.m2{transform:matrix(-0.051720,-0.244592,0.244592,-0.051720,0,0);-ms-transform:matrix(-0.051720,-0.244592,0.244592,-0.051720,0,0);-webkit-transform:matrix(-0.051720,-0.244592,0.244592,-0.051720,0,0);}
.m73{transform:matrix(-0.046807,0.245579,-0.245579,-0.046807,0,0);-ms-transform:matrix(-0.046807,0.245579,-0.245579,-0.046807,0,0);-webkit-transform:matrix(-0.046807,0.245579,-0.245579,-0.046807,0,0);}
.m19{transform:matrix(-0.045940,-0.245743,0.245743,-0.045940,0,0);-ms-transform:matrix(-0.045940,-0.245743,0.245743,-0.045940,0,0);-webkit-transform:matrix(-0.045940,-0.245743,0.245743,-0.045940,0,0);}
.m57{transform:matrix(-0.045121,0.245894,-0.245894,-0.045121,0,0);-ms-transform:matrix(-0.045121,0.245894,-0.245894,-0.045121,0,0);-webkit-transform:matrix(-0.045121,0.245894,-0.245894,-0.045121,0,0);}
.m36{transform:matrix(-0.043236,-0.246233,0.246233,-0.043236,0,0);-ms-transform:matrix(-0.043236,-0.246233,0.246233,-0.043236,0,0);-webkit-transform:matrix(-0.043236,-0.246233,0.246233,-0.043236,0,0);}
.m3{transform:matrix(-0.043221,-0.246236,0.246236,-0.043221,0,0);-ms-transform:matrix(-0.043221,-0.246236,0.246236,-0.043221,0,0);-webkit-transform:matrix(-0.043221,-0.246236,0.246236,-0.043221,0,0);}
.m8f{transform:matrix(-0.042823,0.246305,-0.246305,-0.042823,0,0);-ms-transform:matrix(-0.042823,0.246305,-0.246305,-0.042823,0,0);-webkit-transform:matrix(-0.042823,0.246305,-0.246305,-0.042823,0,0);}
.m4{transform:matrix(-0.037330,-0.247197,0.247197,-0.037330,0,0);-ms-transform:matrix(-0.037330,-0.247197,0.247197,-0.037330,0,0);-webkit-transform:matrix(-0.037330,-0.247197,0.247197,-0.037330,0,0);}
.m72{transform:matrix(-0.034835,0.247561,-0.247561,-0.034835,0,0);-ms-transform:matrix(-0.034835,0.247561,-0.247561,-0.034835,0,0);-webkit-transform:matrix(-0.034835,0.247561,-0.247561,-0.034835,0,0);}
.m37{transform:matrix(-0.034493,-0.247609,0.247609,-0.034493,0,0);-ms-transform:matrix(-0.034493,-0.247609,0.247609,-0.034493,0,0);-webkit-transform:matrix(-0.034493,-0.247609,0.247609,-0.034493,0,0);}
.m56{transform:matrix(-0.033905,0.247690,-0.247690,-0.033905,0,0);-ms-transform:matrix(-0.033905,0.247690,-0.247690,-0.033905,0,0);-webkit-transform:matrix(-0.033905,0.247690,-0.247690,-0.033905,0,0);}
.m8e{transform:matrix(-0.033805,0.247704,-0.247704,-0.033805,0,0);-ms-transform:matrix(-0.033805,0.247704,-0.247704,-0.033805,0,0);-webkit-transform:matrix(-0.033805,0.247704,-0.247704,-0.033805,0,0);}
.m1a{transform:matrix(-0.031955,-0.247949,0.247949,-0.031955,0,0);-ms-transform:matrix(-0.031955,-0.247949,0.247949,-0.031955,0,0);-webkit-transform:matrix(-0.031955,-0.247949,0.247949,-0.031955,0,0);}
.m5{transform:matrix(-0.031257,-0.248038,0.248038,-0.031257,0,0);-ms-transform:matrix(-0.031257,-0.248038,0.248038,-0.031257,0,0);-webkit-transform:matrix(-0.031257,-0.248038,0.248038,-0.031257,0,0);}
.m8d{transform:matrix(-0.027242,0.248511,-0.248511,-0.027242,0,0);-ms-transform:matrix(-0.027242,0.248511,-0.248511,-0.027242,0,0);-webkit-transform:matrix(-0.027242,0.248511,-0.248511,-0.027242,0,0);}
.m71{transform:matrix(-0.026052,0.248639,-0.248639,-0.026052,0,0);-ms-transform:matrix(-0.026052,0.248639,-0.248639,-0.026052,0,0);-webkit-transform:matrix(-0.026052,0.248639,-0.248639,-0.026052,0,0);}
.m1b{transform:matrix(-0.023571,-0.248886,0.248886,-0.023571,0,0);-ms-transform:matrix(-0.023571,-0.248886,0.248886,-0.023571,0,0);-webkit-transform:matrix(-0.023571,-0.248886,0.248886,-0.023571,0,0);}
.m55{transform:matrix(-0.022517,0.248984,-0.248984,-0.022517,0,0);-ms-transform:matrix(-0.022517,0.248984,-0.248984,-0.022517,0,0);-webkit-transform:matrix(-0.022517,0.248984,-0.248984,-0.022517,0,0);}
.m6{transform:matrix(-0.021911,-0.249038,0.249038,-0.021911,0,0);-ms-transform:matrix(-0.021911,-0.249038,0.249038,-0.021911,0,0);-webkit-transform:matrix(-0.021911,-0.249038,0.249038,-0.021911,0,0);}
.m38{transform:matrix(-0.020520,-0.249156,0.249156,-0.020520,0,0);-ms-transform:matrix(-0.020520,-0.249156,0.249156,-0.020520,0,0);-webkit-transform:matrix(-0.020520,-0.249156,0.249156,-0.020520,0,0);}
.m8c{transform:matrix(-0.019168,0.249264,-0.249264,-0.019168,0,0);-ms-transform:matrix(-0.019168,0.249264,-0.249264,-0.019168,0,0);-webkit-transform:matrix(-0.019168,0.249264,-0.249264,-0.019168,0,0);}
.m70{transform:matrix(-0.018179,0.249338,-0.249338,-0.018179,0,0);-ms-transform:matrix(-0.018179,0.249338,-0.249338,-0.018179,0,0);-webkit-transform:matrix(-0.018179,0.249338,-0.249338,-0.018179,0,0);}
.m54{transform:matrix(-0.013962,0.249610,-0.249610,-0.013962,0,0);-ms-transform:matrix(-0.013962,0.249610,-0.249610,-0.013962,0,0);-webkit-transform:matrix(-0.013962,0.249610,-0.249610,-0.013962,0,0);}
.m7{transform:matrix(-0.012842,-0.249670,0.249670,-0.012842,0,0);-ms-transform:matrix(-0.012842,-0.249670,0.249670,-0.012842,0,0);-webkit-transform:matrix(-0.012842,-0.249670,0.249670,-0.012842,0,0);}
.m39{transform:matrix(-0.012130,-0.249706,0.249706,-0.012130,0,0);-ms-transform:matrix(-0.012130,-0.249706,0.249706,-0.012130,0,0);-webkit-transform:matrix(-0.012130,-0.249706,0.249706,-0.012130,0,0);}
.m1c{transform:matrix(-0.009434,-0.249822,0.249822,-0.009434,0,0);-ms-transform:matrix(-0.009434,-0.249822,0.249822,-0.009434,0,0);-webkit-transform:matrix(-0.009434,-0.249822,0.249822,-0.009434,0,0);}
.m6f{transform:matrix(-0.007034,0.249901,-0.249901,-0.007034,0,0);-ms-transform:matrix(-0.007034,0.249901,-0.249901,-0.007034,0,0);-webkit-transform:matrix(-0.007034,0.249901,-0.249901,-0.007034,0,0);}
.m8b{transform:matrix(-0.007013,0.249902,-0.249902,-0.007013,0,0);-ms-transform:matrix(-0.007013,0.249902,-0.249902,-0.007013,0,0);-webkit-transform:matrix(-0.007013,0.249902,-0.249902,-0.007013,0,0);}
.m53{transform:matrix(-0.005317,0.249943,-0.249943,-0.005317,0,0);-ms-transform:matrix(-0.005317,0.249943,-0.249943,-0.005317,0,0);-webkit-transform:matrix(-0.005317,0.249943,-0.249943,-0.005317,0,0);}
.m8{transform:matrix(-0.003998,-0.249968,0.249968,-0.003998,0,0);-ms-transform:matrix(-0.003998,-0.249968,0.249968,-0.003998,0,0);-webkit-transform:matrix(-0.003998,-0.249968,0.249968,-0.003998,0,0);}
.m1d{transform:matrix(0.000074,-0.250000,0.250000,0.000074,0,0);-ms-transform:matrix(0.000074,-0.250000,0.250000,0.000074,0,0);-webkit-transform:matrix(0.000074,-0.250000,0.250000,0.000074,0,0);}
.m3a{transform:matrix(0.001065,-0.249998,0.249998,0.001065,0,0);-ms-transform:matrix(0.001065,-0.249998,0.249998,0.001065,0,0);-webkit-transform:matrix(0.001065,-0.249998,0.249998,0.001065,0,0);}
.m8a{transform:matrix(0.001904,0.249993,-0.249993,0.001904,0,0);-ms-transform:matrix(0.001904,0.249993,-0.249993,0.001904,0,0);-webkit-transform:matrix(0.001904,0.249993,-0.249993,0.001904,0,0);}
.m52{transform:matrix(0.003378,0.249977,-0.249977,0.003378,0,0);-ms-transform:matrix(0.003378,0.249977,-0.249977,0.003378,0,0);-webkit-transform:matrix(0.003378,0.249977,-0.249977,0.003378,0,0);}
.m6e{transform:matrix(0.004162,0.249965,-0.249965,0.004162,0,0);-ms-transform:matrix(0.004162,0.249965,-0.249965,0.004162,0,0);-webkit-transform:matrix(0.004162,0.249965,-0.249965,0.004162,0,0);}
.m1e{transform:matrix(0.008989,-0.249838,0.249838,0.008989,0,0);-ms-transform:matrix(0.008989,-0.249838,0.249838,0.008989,0,0);-webkit-transform:matrix(0.008989,-0.249838,0.249838,0.008989,0,0);}
.m3b{transform:matrix(0.009657,-0.249813,0.249813,0.009657,0,0);-ms-transform:matrix(0.009657,-0.249813,0.249813,0.009657,0,0);-webkit-transform:matrix(0.009657,-0.249813,0.249813,0.009657,0,0);}
.m89{transform:matrix(0.009897,0.249804,-0.249804,0.009897,0,0);-ms-transform:matrix(0.009897,0.249804,-0.249804,0.009897,0,0);-webkit-transform:matrix(0.009897,0.249804,-0.249804,0.009897,0,0);}
.m9{transform:matrix(0.010060,-0.249797,0.249797,0.010060,0,0);-ms-transform:matrix(0.010060,-0.249797,0.249797,0.010060,0,0);-webkit-transform:matrix(0.010060,-0.249797,0.249797,0.010060,0,0);}
.m6d{transform:matrix(0.012600,0.249682,-0.249682,0.012600,0,0);-ms-transform:matrix(0.012600,0.249682,-0.249682,0.012600,0,0);-webkit-transform:matrix(0.012600,0.249682,-0.249682,0.012600,0,0);}
.m1f{transform:matrix(0.015835,-0.249498,0.249498,0.015835,0,0);-ms-transform:matrix(0.015835,-0.249498,0.249498,0.015835,0,0);-webkit-transform:matrix(0.015835,-0.249498,0.249498,0.015835,0,0);}
.m51{transform:matrix(0.016582,0.249449,-0.249449,0.016582,0,0);-ms-transform:matrix(0.016582,0.249449,-0.249449,0.016582,0,0);-webkit-transform:matrix(0.016582,0.249449,-0.249449,0.016582,0,0);}
.m3c{transform:matrix(0.018204,-0.249336,0.249336,0.018204,0,0);-ms-transform:matrix(0.018204,-0.249336,0.249336,0.018204,0,0);-webkit-transform:matrix(0.018204,-0.249336,0.249336,0.018204,0,0);}
.ma{transform:matrix(0.018455,-0.249318,0.249318,0.018455,0,0);-ms-transform:matrix(0.018455,-0.249318,0.249318,0.018455,0,0);-webkit-transform:matrix(0.018455,-0.249318,0.249318,0.018455,0,0);}
.m6c{transform:matrix(0.021160,0.249103,-0.249103,0.021160,0,0);-ms-transform:matrix(0.021160,0.249103,-0.249103,0.021160,0,0);-webkit-transform:matrix(0.021160,0.249103,-0.249103,0.021160,0,0);}
.m88{transform:matrix(0.021188,0.249100,-0.249100,0.021188,0,0);-ms-transform:matrix(0.021188,0.249100,-0.249100,0.021188,0,0);-webkit-transform:matrix(0.021188,0.249100,-0.249100,0.021188,0,0);}
.m20{transform:matrix(0.022440,-0.248991,0.248991,0.022440,0,0);-ms-transform:matrix(0.022440,-0.248991,0.248991,0.022440,0,0);-webkit-transform:matrix(0.022440,-0.248991,0.248991,0.022440,0,0);}
.m50{transform:matrix(0.024877,0.248759,-0.248759,0.024877,0,0);-ms-transform:matrix(0.024877,0.248759,-0.248759,0.024877,0,0);-webkit-transform:matrix(0.024877,0.248759,-0.248759,0.024877,0,0);}
.m3d{transform:matrix(0.026690,-0.248571,0.248571,0.026690,0,0);-ms-transform:matrix(0.026690,-0.248571,0.248571,0.026690,0,0);-webkit-transform:matrix(0.026690,-0.248571,0.248571,0.026690,0,0);}
.m6b{transform:matrix(0.029803,0.248217,-0.248217,0.029803,0,0);-ms-transform:matrix(0.029803,0.248217,-0.248217,0.029803,0,0);-webkit-transform:matrix(0.029803,0.248217,-0.248217,0.029803,0,0);}
.m21{transform:matrix(0.030317,-0.248155,0.248155,0.030317,0,0);-ms-transform:matrix(0.030317,-0.248155,0.248155,0.030317,0,0);-webkit-transform:matrix(0.030317,-0.248155,0.248155,0.030317,0,0);}
.mb{transform:matrix(0.032005,-0.247943,0.247943,0.032005,0,0);-ms-transform:matrix(0.032005,-0.247943,0.247943,0.032005,0,0);-webkit-transform:matrix(0.032005,-0.247943,0.247943,0.032005,0,0);}
.m87{transform:matrix(0.032527,0.247875,-0.247875,0.032527,0,0);-ms-transform:matrix(0.032527,0.247875,-0.247875,0.032527,0,0);-webkit-transform:matrix(0.032527,0.247875,-0.247875,0.032527,0,0);}
.m22{transform:matrix(0.036832,-0.247272,0.247272,0.036832,0,0);-ms-transform:matrix(0.036832,-0.247272,0.247272,0.036832,0,0);-webkit-transform:matrix(0.036832,-0.247272,0.247272,0.036832,0,0);}
.m3e{transform:matrix(0.037999,-0.247095,0.247095,0.037999,0,0);-ms-transform:matrix(0.037999,-0.247095,0.247095,0.037999,0,0);-webkit-transform:matrix(0.037999,-0.247095,0.247095,0.037999,0,0);}
.m4f{transform:matrix(0.038722,0.246983,-0.246983,0.038722,0,0);-ms-transform:matrix(0.038722,0.246983,-0.246983,0.038722,0,0);-webkit-transform:matrix(0.038722,0.246983,-0.246983,0.038722,0,0);}
.mc{transform:matrix(0.039848,-0.246804,0.246804,0.039848,0,0);-ms-transform:matrix(0.039848,-0.246804,0.246804,0.039848,0,0);-webkit-transform:matrix(0.039848,-0.246804,0.246804,0.039848,0,0);}
.m86{transform:matrix(0.040955,0.246622,-0.246622,0.040955,0,0);-ms-transform:matrix(0.040955,0.246622,-0.246622,0.040955,0,0);-webkit-transform:matrix(0.040955,0.246622,-0.246622,0.040955,0,0);}
.m6a{transform:matrix(0.043091,0.246258,-0.246258,0.043091,0,0);-ms-transform:matrix(0.043091,0.246258,-0.246258,0.043091,0,0);-webkit-transform:matrix(0.043091,0.246258,-0.246258,0.043091,0,0);}
.m23{transform:matrix(0.045457,-0.245833,0.245833,0.045457,0,0);-ms-transform:matrix(0.045457,-0.245833,0.245833,0.045457,0,0);-webkit-transform:matrix(0.045457,-0.245833,0.245833,0.045457,0,0);}
.md{transform:matrix(0.046234,-0.245688,0.245688,0.046234,0,0);-ms-transform:matrix(0.046234,-0.245688,0.245688,0.046234,0,0);-webkit-transform:matrix(0.046234,-0.245688,0.245688,0.046234,0,0);}
.m4e{transform:matrix(0.047335,0.245478,-0.245478,0.047335,0,0);-ms-transform:matrix(0.047335,0.245478,-0.245478,0.047335,0,0);-webkit-transform:matrix(0.047335,0.245478,-0.245478,0.047335,0,0);}
.m3f{transform:matrix(0.049140,-0.245123,0.245123,0.049140,0,0);-ms-transform:matrix(0.049140,-0.245123,0.245123,0.049140,0,0);-webkit-transform:matrix(0.049140,-0.245123,0.245123,0.049140,0,0);}
.m85{transform:matrix(0.049375,0.245076,-0.245076,0.049375,0,0);-ms-transform:matrix(0.049375,0.245076,-0.245076,0.049375,0,0);-webkit-transform:matrix(0.049375,0.245076,-0.245076,0.049375,0,0);}
.m69{transform:matrix(0.051466,0.244645,-0.244645,0.051466,0,0);-ms-transform:matrix(0.051466,0.244645,-0.244645,0.051466,0,0);-webkit-transform:matrix(0.051466,0.244645,-0.244645,0.051466,0,0);}
.m24{transform:matrix(0.053833,-0.244135,0.244135,0.053833,0,0);-ms-transform:matrix(0.053833,-0.244135,0.244135,0.053833,0,0);-webkit-transform:matrix(0.053833,-0.244135,0.244135,0.053833,0,0);}
.me{transform:matrix(0.055090,-0.243855,0.243855,0.055090,0,0);-ms-transform:matrix(0.055090,-0.243855,0.243855,0.055090,0,0);-webkit-transform:matrix(0.055090,-0.243855,0.243855,0.055090,0,0);}
.m4d{transform:matrix(0.056207,0.243600,-0.243600,0.056207,0,0);-ms-transform:matrix(0.056207,0.243600,-0.243600,0.056207,0,0);-webkit-transform:matrix(0.056207,0.243600,-0.243600,0.056207,0,0);}
.m40{transform:matrix(0.056953,-0.243426,0.243426,0.056953,0,0);-ms-transform:matrix(0.056953,-0.243426,0.243426,0.056953,0,0);-webkit-transform:matrix(0.056953,-0.243426,0.243426,0.056953,0,0);}
.m84{transform:matrix(0.057769,0.243234,-0.243234,0.057769,0,0);-ms-transform:matrix(0.057769,0.243234,-0.243234,0.057769,0,0);-webkit-transform:matrix(0.057769,0.243234,-0.243234,0.057769,0,0);}
.m25{transform:matrix(0.060036,-0.242684,0.242684,0.060036,0,0);-ms-transform:matrix(0.060036,-0.242684,0.242684,0.060036,0,0);-webkit-transform:matrix(0.060036,-0.242684,0.242684,0.060036,0,0);}
.mf{transform:matrix(0.064117,-0.241638,0.241638,0.064117,0,0);-ms-transform:matrix(0.064117,-0.241638,0.241638,0.064117,0,0);-webkit-transform:matrix(0.064117,-0.241638,0.241638,0.064117,0,0);}
.m26{transform:matrix(0.064165,-0.241625,0.241625,0.064165,0,0);-ms-transform:matrix(0.064165,-0.241625,0.241625,0.064165,0,0);-webkit-transform:matrix(0.064165,-0.241625,0.241625,0.064165,0,0);}
.m68{transform:matrix(0.065269,0.241329,-0.241329,0.065269,0,0);-ms-transform:matrix(0.065269,0.241329,-0.241329,0.065269,0,0);-webkit-transform:matrix(0.065269,0.241329,-0.241329,0.065269,0,0);}
.m4c{transform:matrix(0.065288,0.241324,-0.241324,0.065288,0,0);-ms-transform:matrix(0.065288,0.241324,-0.241324,0.065288,0,0);-webkit-transform:matrix(0.065288,0.241324,-0.241324,0.065288,0,0);}
.m41{transform:matrix(0.065598,-0.241240,0.241240,0.065598,0,0);-ms-transform:matrix(0.065598,-0.241240,0.241240,0.065598,0,0);-webkit-transform:matrix(0.065598,-0.241240,0.241240,0.065598,0,0);}
.m10{transform:matrix(0.070040,-0.239988,0.239988,0.070040,0,0);-ms-transform:matrix(0.070040,-0.239988,0.239988,0.070040,0,0);-webkit-transform:matrix(0.070040,-0.239988,0.239988,0.070040,0,0);}
.m27{transform:matrix(0.070297,-0.239913,0.239913,0.070297,0,0);-ms-transform:matrix(0.070297,-0.239913,0.239913,0.070297,0,0);-webkit-transform:matrix(0.070297,-0.239913,0.239913,0.070297,0,0);}
.m83{transform:matrix(0.070525,0.239846,-0.239846,0.070525,0,0);-ms-transform:matrix(0.070525,0.239846,-0.239846,0.070525,0,0);-webkit-transform:matrix(0.070525,0.239846,-0.239846,0.070525,0,0);}
.m4b{transform:matrix(0.071158,0.239659,-0.239659,0.071158,0,0);-ms-transform:matrix(0.071158,0.239659,-0.239659,0.071158,0,0);-webkit-transform:matrix(0.071158,0.239659,-0.239659,0.071158,0,0);}
.m67{transform:matrix(0.073779,0.238866,-0.238866,0.073779,0,0);-ms-transform:matrix(0.073779,0.238866,-0.238866,0.073779,0,0);-webkit-transform:matrix(0.073779,0.238866,-0.238866,0.073779,0,0);}
.m11{transform:matrix(0.076190,-0.238107,0.238107,0.076190,0,0);-ms-transform:matrix(0.076190,-0.238107,0.238107,0.076190,0,0);-webkit-transform:matrix(0.076190,-0.238107,0.238107,0.076190,0,0);}
.m4a{transform:matrix(0.076856,0.237893,-0.237893,0.076856,0,0);-ms-transform:matrix(0.076856,0.237893,-0.237893,0.076856,0,0);-webkit-transform:matrix(0.076856,0.237893,-0.237893,0.076856,0,0);}
.m42{transform:matrix(0.077262,-0.237762,0.237762,0.077262,0,0);-ms-transform:matrix(0.077262,-0.237762,0.237762,0.077262,0,0);-webkit-transform:matrix(0.077262,-0.237762,0.237762,0.077262,0,0);}
.m82{transform:matrix(0.078551,0.237339,-0.237339,0.078551,0,0);-ms-transform:matrix(0.078551,0.237339,-0.237339,0.078551,0,0);-webkit-transform:matrix(0.078551,0.237339,-0.237339,0.078551,0,0);}
.m28{transform:matrix(0.080677,-0.236624,0.236624,0.080677,0,0);-ms-transform:matrix(0.080677,-0.236624,0.236624,0.080677,0,0);-webkit-transform:matrix(0.080677,-0.236624,0.236624,0.080677,0,0);}
.m66{transform:matrix(0.082456,0.236011,-0.236011,0.082456,0,0);-ms-transform:matrix(0.082456,0.236011,-0.236011,0.082456,0,0);-webkit-transform:matrix(0.082456,0.236011,-0.236011,0.082456,0,0);}
.m43{transform:matrix(0.084932,-0.235131,0.235131,0.084932,0,0);-ms-transform:matrix(0.084932,-0.235131,0.235131,0.084932,0,0);-webkit-transform:matrix(0.084932,-0.235131,0.235131,0.084932,0,0);}
.m49{transform:matrix(0.085063,0.235083,-0.235083,0.085063,0,0);-ms-transform:matrix(0.085063,0.235083,-0.235083,0.085063,0,0);-webkit-transform:matrix(0.085063,0.235083,-0.235083,0.085063,0,0);}
.m44{transform:matrix(0.091121,-0.232803,0.232803,0.091121,0,0);-ms-transform:matrix(0.091121,-0.232803,0.232803,0.091121,0,0);-webkit-transform:matrix(0.091121,-0.232803,0.232803,0.091121,0,0);}
.m65{transform:matrix(0.091255,0.232750,-0.232750,0.091255,0,0);-ms-transform:matrix(0.091255,0.232750,-0.232750,0.091255,0,0);-webkit-transform:matrix(0.091255,0.232750,-0.232750,0.091255,0,0);}
.m81{transform:matrix(0.091768,0.232548,-0.232548,0.091768,0,0);-ms-transform:matrix(0.091768,0.232548,-0.232548,0.091768,0,0);-webkit-transform:matrix(0.091768,0.232548,-0.232548,0.091768,0,0);}
.m29{transform:matrix(0.092081,-0.232424,0.232424,0.092081,0,0);-ms-transform:matrix(0.092081,-0.232424,0.232424,0.092081,0,0);-webkit-transform:matrix(0.092081,-0.232424,0.232424,0.092081,0,0);}
.m48{transform:matrix(0.094641,0.231394,-0.231394,0.094641,0,0);-ms-transform:matrix(0.094641,0.231394,-0.231394,0.094641,0,0);-webkit-transform:matrix(0.094641,0.231394,-0.231394,0.094641,0,0);}
.m64{transform:matrix(0.096918,0.230449,-0.230449,0.096918,0,0);-ms-transform:matrix(0.096918,0.230449,-0.230449,0.096918,0,0);-webkit-transform:matrix(0.096918,0.230449,-0.230449,0.096918,0,0);}
.m2a{transform:matrix(0.099557,-0.229322,0.229322,0.099557,0,0);-ms-transform:matrix(0.099557,-0.229322,0.229322,0.099557,0,0);-webkit-transform:matrix(0.099557,-0.229322,0.229322,0.099557,0,0);}
.m80{transform:matrix(0.099941,0.229154,-0.229154,0.099941,0,0);-ms-transform:matrix(0.099941,0.229154,-0.229154,0.099941,0,0);-webkit-transform:matrix(0.099941,0.229154,-0.229154,0.099941,0,0);}
.m63{transform:matrix(0.102398,0.228067,-0.228067,0.102398,0,0);-ms-transform:matrix(0.102398,0.228067,-0.228067,0.102398,0,0);-webkit-transform:matrix(0.102398,0.228067,-0.228067,0.102398,0,0);}
.m2b{transform:matrix(0.105586,-0.226609,0.226609,0.105586,0,0);-ms-transform:matrix(0.105586,-0.226609,0.226609,0.105586,0,0);-webkit-transform:matrix(0.105586,-0.226609,0.226609,0.105586,0,0);}
.m45{transform:matrix(0.108061,-0.225439,0.225439,0.108061,0,0);-ms-transform:matrix(0.108061,-0.225439,0.225439,0.108061,0,0);-webkit-transform:matrix(0.108061,-0.225439,0.225439,0.108061,0,0);}
.m7f{transform:matrix(0.108207,0.225369,-0.225369,0.108207,0,0);-ms-transform:matrix(0.108207,0.225369,-0.225369,0.108207,0,0);-webkit-transform:matrix(0.108207,0.225369,-0.225369,0.108207,0,0);}
.m62{transform:matrix(0.110201,0.224401,-0.224401,0.110201,0,0);-ms-transform:matrix(0.110201,0.224401,-0.224401,0.110201,0,0);-webkit-transform:matrix(0.110201,0.224401,-0.224401,0.110201,0,0);}
.m46{transform:matrix(0.113557,-0.222721,0.222721,0.113557,0,0);-ms-transform:matrix(0.113557,-0.222721,0.222721,0.113557,0,0);-webkit-transform:matrix(0.113557,-0.222721,0.222721,0.113557,0,0);}
.m2c{transform:matrix(0.113768,-0.222613,0.222613,0.113768,0,0);-ms-transform:matrix(0.113768,-0.222613,0.222613,0.113768,0,0);-webkit-transform:matrix(0.113768,-0.222613,0.222613,0.113768,0,0);}
.m7e{transform:matrix(0.116601,0.221143,-0.221143,0.116601,0,0);-ms-transform:matrix(0.116601,0.221143,-0.221143,0.116601,0,0);-webkit-transform:matrix(0.116601,0.221143,-0.221143,0.116601,0,0);}
.m61{transform:matrix(0.119261,0.219720,-0.219720,0.119261,0,0);-ms-transform:matrix(0.119261,0.219720,-0.219720,0.119261,0,0);-webkit-transform:matrix(0.119261,0.219720,-0.219720,0.119261,0,0);}
.m47{transform:matrix(0.119261,-0.219720,0.219720,0.119261,0,0);-ms-transform:matrix(0.119261,-0.219720,0.219720,0.119261,0,0);-webkit-transform:matrix(0.119261,-0.219720,0.219720,0.119261,0,0);}
.m7d{transform:matrix(0.121990,0.218217,-0.218217,0.121990,0,0);-ms-transform:matrix(0.121990,0.218217,-0.218217,0.121990,0,0);-webkit-transform:matrix(0.121990,0.218217,-0.218217,0.121990,0,0);}
.m2d{transform:matrix(0.121995,-0.218214,0.218214,0.121995,0,0);-ms-transform:matrix(0.121995,-0.218214,0.218214,0.121995,0,0);-webkit-transform:matrix(0.121995,-0.218214,0.218214,0.121995,0,0);}
.m7c{transform:matrix(0.127165,0.215242,-0.215242,0.127165,0,0);-ms-transform:matrix(0.127165,0.215242,-0.215242,0.127165,0,0);-webkit-transform:matrix(0.127165,0.215242,-0.215242,0.127165,0,0);}
.m2e{transform:matrix(0.127294,-0.215165,0.215165,0.127294,0,0);-ms-transform:matrix(0.127294,-0.215165,0.215165,0.127294,0,0);-webkit-transform:matrix(0.127294,-0.215165,0.215165,0.127294,0,0);}
.m2f{transform:matrix(0.132764,-0.211834,0.211834,0.132764,0,0);-ms-transform:matrix(0.132764,-0.211834,0.211834,0.132764,0,0);-webkit-transform:matrix(0.132764,-0.211834,0.211834,0.132764,0,0);}
.m7b{transform:matrix(0.134540,0.210710,-0.210710,0.134540,0,0);-ms-transform:matrix(0.134540,0.210710,-0.210710,0.134540,0,0);-webkit-transform:matrix(0.134540,0.210710,-0.210710,0.134540,0,0);}
.m7a{transform:matrix(0.143068,0.205016,-0.205016,0.143068,0,0);-ms-transform:matrix(0.143068,0.205016,-0.205016,0.143068,0,0);-webkit-transform:matrix(0.143068,0.205016,-0.205016,0.143068,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);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1{word-spacing:-46.800000px;}
.ws0{word-spacing:-31.200000px;}
.ws2{word-spacing:0.000000px;}
._9{margin-left:-26.262000px;}
._a{margin-left:-16.200000px;}
._5{margin-left:-12.268800px;}
._4{margin-left:-11.232000px;}
._8{margin-left:-8.272224px;}
._1{margin-left:-6.391944px;}
._6{margin-left:-5.280000px;}
._3{margin-left:-3.600000px;}
._2{margin-left:-2.424000px;}
._0{margin-left:-1.229280px;}
._7{width:682.092000px;}
.fc1{color:rgb(37,34,33);}
.fc0{color:rgb(19,16,15);}
.fs1b{font-size:59.999970px;}
.fsb{font-size:59.999972px;}
.fs1d{font-size:59.999975px;}
.fs28{font-size:59.999976px;}
.fs13{font-size:59.999978px;}
.fs23{font-size:59.999979px;}
.fs1a{font-size:59.999981px;}
.fs19{font-size:59.999982px;}
.fs22{font-size:59.999984px;}
.fs15{font-size:59.999985px;}
.fs21{font-size:59.999987px;}
.fs24{font-size:59.999988px;}
.fs16{font-size:59.999990px;}
.fse{font-size:59.999991px;}
.fs25{font-size:59.999992px;}
.fs8{font-size:59.999993px;}
.fs20{font-size:59.999995px;}
.fs1e{font-size:59.999997px;}
.fs9{font-size:59.999999px;}
.fs2e{font-size:60.000000px;}
.fsf{font-size:60.000002px;}
.fs2d{font-size:60.000003px;}
.fsa{font-size:60.000004px;}
.fs2a{font-size:60.000006px;}
.fs1c{font-size:60.000007px;}
.fsc{font-size:60.000008px;}
.fs7{font-size:60.000011px;}
.fs27{font-size:60.000013px;}
.fs1f{font-size:60.000014px;}
.fsd{font-size:60.000015px;}
.fs11{font-size:60.000017px;}
.fs2b{font-size:60.000018px;}
.fs18{font-size:60.000019px;}
.fs10{font-size:60.000021px;}
.fs14{font-size:60.000023px;}
.fs17{font-size:60.000025px;}
.fs12{font-size:60.000028px;}
.fs2c{font-size:60.000030px;}
.fs29{font-size:60.000031px;}
.fs26{font-size:60.000034px;}
.fs0{font-size:89.892000px;}
.fs1{font-size:120.000000px;}
.fs5{font-size:144.000000px;}
.fs2{font-size:180.000000px;}
.fs4{font-size:264.000000px;}
.fs6{font-size:288.000000px;}
.fs3{font-size:576.000000px;}
.y0{bottom:0.000000px;}
.y7{bottom:148.209450px;}
.y6{bottom:220.209000px;}
.y5{bottom:292.209000px;}
.y2{bottom:317.356500px;}
.y1{bottom:339.831000px;}
.y4{bottom:364.209000px;}
.y3{bottom:466.797000px;}
.y14{bottom:960.696000px;}
.y15{bottom:960.840000px;}
.y13{bottom:1002.096000px;}
.y12{bottom:1043.496000px;}
.y2c{bottom:1086.840000px;}
.y2b{bottom:1149.840000px;}
.y5d{bottom:1174.600368px;}
.y5e{bottom:1184.697372px;}
.y5f{bottom:1192.592556px;}
.y60{bottom:1199.758979px;}
.y61{bottom:1202.968931px;}
.y62{bottom:1211.062654px;}
.y2a{bottom:1212.840000px;}
.y63{bottom:1219.214889px;}
.y64{bottom:1227.456345px;}
.y65{bottom:1239.838940px;}
.y66{bottom:1248.155720px;}
.y67{bottom:1259.829107px;}
.y68{bottom:1268.176607px;}
.y29{bottom:1275.840000px;}
.y69{bottom:1276.503948px;}
.y6a{bottom:1283.981840px;}
.y6b{bottom:1292.294165px;}
.y6c{bottom:1304.629351px;}
.y6d{bottom:1312.816241px;}
.y6e{bottom:1321.704682px;}
.y6f{bottom:1329.745191px;}
.y70{bottom:1338.459602px;}
.y28{bottom:1338.840000px;}
.y71{bottom:1343.167157px;}
.y72{bottom:1350.939120px;}
.y73{bottom:1358.583864px;}
.y74{bottom:1366.083647px;}
.y75{bottom:1369.087920px;}
.y2d{bottom:1527.840000px;}
.y27{bottom:1590.840000px;}
.y8e{bottom:1642.193289px;}
.y8d{bottom:1645.188942px;}
.y8c{bottom:1652.752251px;}
.y26{bottom:1653.840000px;}
.y8b{bottom:1660.452264px;}
.y8a{bottom:1668.284367px;}
.y3f{bottom:1668.658853px;}
.y89{bottom:1673.022586px;}
.y40{bottom:1678.565748px;}
.y88{bottom:1681.775492px;}
.y41{bottom:1686.334058px;}
.y87{bottom:1689.839265px;}
.y42{bottom:1693.406624px;}
.y43{bottom:1696.562239px;}
.y86{bottom:1698.794513px;}
.y44{bottom:1704.546574px;}
.y85{bottom:1706.976175px;}
.y45{bottom:1712.618830px;}
.y25{bottom:1716.840000px;}
.y84{bottom:1719.356680px;}
.y46{bottom:1720.770996px;}
.y83{bottom:1727.683923px;}
.y47{bottom:1733.101745px;}
.y82{bottom:1735.168482px;}
.y48{bottom:1741.347163px;}
.y81{bottom:1743.501322px;}
.y80{bottom:1751.863128px;}
.y49{bottom:1752.994427px;}
.y4a{bottom:1762.972720px;}
.y7f{bottom:1763.484920px;}
.y4b{bottom:1771.326221px;}
.y7e{bottom:1771.789826px;}
.y4c{bottom:1779.672365px;}
.y24{bottom:1779.840000px;}
.y4d{bottom:1783.809504px;}
.y7d{bottom:1784.180834px;}
.y4e{bottom:1792.139724px;}
.y7c{bottom:1792.366936px;}
.y4f{bottom:1797.092593px;}
.y7b{bottom:1800.503501px;}
.y50{bottom:1805.352831px;}
.y7a{bottom:1808.555865px;}
.y79{bottom:1811.741887px;}
.y51{bottom:1812.729384px;}
.y78{bottom:1818.871129px;}
.y52{bottom:1820.847023px;}
.y53{bottom:1824.107056px;}
.y77{bottom:1826.737751px;}
.y54{bottom:1828.137501px;}
.y76{bottom:1836.769454px;}
.y55{bottom:1839.285825px;}
.y23{bottom:1842.840000px;}
.y56{bottom:1847.164046px;}
.y57{bottom:1855.682928px;}
.y58{bottom:1860.288394px;}
.y59{bottom:1867.846338px;}
.y5a{bottom:1875.285045px;}
.y5b{bottom:1882.537791px;}
.y5c{bottom:1885.421927px;}
.y22{bottom:1905.840000px;}
.y21{bottom:2157.840000px;}
.y20{bottom:2220.840000px;}
.y1f{bottom:2283.840000px;}
.ya7{bottom:2294.499892px;}
.ya6{bottom:2297.669078px;}
.ya5{bottom:2305.569377px;}
.y2e{bottom:2311.971543px;}
.ya4{bottom:2313.594243px;}
.ya3{bottom:2321.655386px;}
.y2f{bottom:2322.468153px;}
.ya2{bottom:2326.564373px;}
.y30{bottom:2330.622475px;}
.ya1{bottom:2335.549615px;}
.y31{bottom:2338.001837px;}
.y32{bottom:2341.303054px;}
.ya0{bottom:2343.817291px;}
.y1e{bottom:2346.840000px;}
.y33{bottom:2349.586654px;}
.y9f{bottom:2352.900517px;}
.y34{bottom:2357.894729px;}
.y9e{bottom:2361.227767px;}
.y35{bottom:2366.245973px;}
.y9d{bottom:2373.716277px;}
.y36{bottom:2378.734546px;}
.y9c{bottom:2382.072032px;}
.y37{bottom:2387.063398px;}
.y9b{bottom:2389.554800px;}
.y9a{bottom:2397.861876px;}
.y38{bottom:2398.713424px;}
.y99{bottom:2406.132949px;}
.y39{bottom:2407.797034px;}
.y1d{bottom:2409.840000px;}
.y3a{bottom:2412.724748px;}
.y98{bottom:2417.657961px;}
.y3b{bottom:2420.938407px;}
.y97{bottom:2425.831567px;}
.y3c{bottom:2429.068926px;}
.y3d{bottom:2437.128532px;}
.y96{bottom:2437.929623px;}
.y3e{bottom:2440.330946px;}
.y95{bottom:2445.898498px;}
.y94{bottom:2453.783023px;}
.y93{bottom:2461.544384px;}
.y92{bottom:2464.608801px;}
.y91{bottom:2471.456317px;}
.y1c{bottom:2472.840000px;}
.y90{bottom:2478.954854px;}
.y8f{bottom:2488.480039px;}
.y1b{bottom:2535.840000px;}
.y1a{bottom:2787.840000px;}
.yc0{bottom:2840.945674px;}
.ybf{bottom:2844.217887px;}
.y19{bottom:2850.840000px;}
.ybe{bottom:2852.353631px;}
.ybd{bottom:2860.561627px;}
.ybc{bottom:2868.833830px;}
.ybb{bottom:2873.806384px;}
.yba{bottom:2882.935612px;}
.yb9{bottom:2891.287596px;}
.yb8{bottom:2900.431339px;}
.yb7{bottom:2908.771941px;}
.y18{bottom:2913.840000px;}
.yb6{bottom:2921.226683px;}
.yb5{bottom:2929.504329px;}
.yb4{bottom:2936.889980px;}
.yb3{bottom:2945.056745px;}
.yb2{bottom:2953.178792px;}
.yb1{bottom:2964.411949px;}
.yb0{bottom:2972.340950px;}
.y17{bottom:2976.840000px;}
.yaf{bottom:2984.006934px;}
.yae{bottom:2991.665848px;}
.yad{bottom:2999.188778px;}
.yac{bottom:3006.567091px;}
.yab{bottom:3009.468984px;}
.yaa{bottom:3015.927205px;}
.ya9{bottom:3022.970918px;}
.ya8{bottom:3031.856683px;}
.y16{bottom:3039.840000px;}
.y11{bottom:3291.840000px;}
.y10{bottom:3354.840000px;}
.yf{bottom:3417.840000px;}
.ye{bottom:3480.840000px;}
.yd{bottom:3543.840000px;}
.yc{bottom:3606.840000px;}
.yb{bottom:3669.840000px;}
.ya{bottom:3795.840000px;}
.y9{bottom:4047.840000px;}
.y8{bottom:4236.840000px;}
.h1d{height:43.681619px;}
.he{height:43.681620px;}
.h1e{height:43.681622px;}
.h16{height:43.681624px;}
.h1c{height:43.681626px;}
.h1b{height:43.681628px;}
.h24{height:43.681629px;}
.h18{height:43.681630px;}
.h21{height:43.681631px;}
.h22{height:43.681632px;}
.h11{height:43.681634px;}
.hb{height:43.681636px;}
.h23{height:43.681637px;}
.h1f{height:43.681639px;}
.hc{height:43.681640px;}
.h29{height:43.681641px;}
.h12{height:43.681642px;}
.hd{height:43.681644px;}
.h20{height:43.681645px;}
.hf{height:43.681647px;}
.ha{height:43.681648px;}
.h26{height:43.681650px;}
.h10{height:43.681652px;}
.h14{height:43.681653px;}
.h1a{height:43.681655px;}
.h13{height:43.681656px;}
.h17{height:43.681657px;}
.h19{height:43.681659px;}
.h15{height:43.681661px;}
.h28{height:43.681662px;}
.h27{height:43.681663px;}
.h25{height:43.681665px;}
.h2{height:66.520080px;}
.h3{height:91.800000px;}
.h7{height:110.160000px;}
.h9{height:137.700000px;}
.h4{height:163.440000px;}
.h6{height:201.960000px;}
.h8{height:220.320000px;}
.h5{height:440.640000px;}
.h1{height:5055.750000px;}
.h0{height:5055.840000px;}
.w1{width:3576.000000px;}
.w0{width:3576.240000px;}
.x0{left:0.000000px;}
.x7{left:106.157550px;}
.xf{left:118.499400px;}
.x14{left:127.548150px;}
.x1b{left:128.884500px;}
.x1d{left:149.854500px;}
.x15{left:164.358000px;}
.x18{left:178.887000px;}
.x6{left:211.095000px;}
.x1c{left:255.559500px;}
.x19{left:278.898000px;}
.x11{left:295.530000px;}
.x1a{left:315.769500px;}
.x16{left:327.483000px;}
.x5{left:356.560500px;}
.xe{left:377.929500px;}
.x10{left:379.635000px;}
.x12{left:415.590000px;}
.x3{left:445.855500px;}
.x1e{left:519.169500px;}
.x13{left:820.060500px;}
.x17{left:846.198000px;}
.x24{left:983.748709px;}
.x23{left:984.900318px;}
.x22{left:986.465497px;}
.x21{left:987.733482px;}
.x20{left:989.450924px;}
.x2b{left:990.803811px;}
.x1f{left:992.101877px;}
.x25{left:993.358668px;}
.x2a{left:994.661086px;}
.x29{left:995.733109px;}
.x28{left:998.229021px;}
.x27{left:1001.298471px;}
.x2c{left:1003.332374px;}
.x26{left:1005.678378px;}
.x2d{left:1006.861499px;}
.x2e{left:1010.653378px;}
.x2f{left:1014.744079px;}
.x30{left:1016.414422px;}
.x2{left:1413.141000px;}
.x39{left:1557.934788px;}
.x38{left:1559.092442px;}
.x37{left:1560.696745px;}
.x36{left:1562.138062px;}
.x35{left:1563.875337px;}
.x3a{left:1565.439062px;}
.x34{left:1566.842182px;}
.x33{left:1569.001754px;}
.x3b{left:1570.512424px;}
.x32{left:1571.704535px;}
.x31{left:1575.615882px;}
.x3c{left:1578.540403px;}
.x3d{left:1582.167070px;}
.x3e{left:1583.662933px;}
.xa{left:1819.845000px;}
.x50{left:1973.538926px;}
.x51{left:1979.717734px;}
.x52{left:1984.201715px;}
.x53{left:1987.982758px;}
.x54{left:1989.634091px;}
.x55{left:1993.524295px;}
.x56{left:1997.134040px;}
.x57{left:2000.472009px;}
.x58{left:2004.950671px;}
.x59{left:2007.563617px;}
.x5a{left:2010.772382px;}
.x5b{left:2012.705592px;}
.x5c{left:2014.343820px;}
.x5d{left:2015.584877px;}
.x5e{left:2016.713563px;}
.x5f{left:2017.731586px;}
.xb{left:2084.775000px;}
.x9{left:2345.820000px;}
.x1{left:2507.340000px;}
.x4b{left:2557.815749px;}
.x4a{left:2563.437696px;}
.x49{left:2564.866652px;}
.x4c{left:2566.628269px;}
.x3f{left:2568.204844px;}
.x4d{left:2569.683031px;}
.x4e{left:2571.006900px;}
.x40{left:2572.282137px;}
.x4f{left:2574.036188px;}
.x41{left:2575.122711px;}
.x42{left:2577.389706px;}
.x48{left:2578.773589px;}
.x43{left:2580.537571px;}
.x44{left:2582.416441px;}
.x45{left:2583.997609px;}
.x46{left:2585.817057px;}
.x47{left:2587.317187px;}
.xc{left:2640.405000px;}
.xd{left:2667.405000px;}
.x4{left:3049.230000px;}
.x8{left:3214.140000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws1{word-spacing:-41.600000pt;}
.ws0{word-spacing:-27.733333pt;}
.ws2{word-spacing:0.000000pt;}
._9{margin-left:-23.344000pt;}
._a{margin-left:-14.400000pt;}
._5{margin-left:-10.905600pt;}
._4{margin-left:-9.984000pt;}
._8{margin-left:-7.353088pt;}
._1{margin-left:-5.681728pt;}
._6{margin-left:-4.693333pt;}
._3{margin-left:-3.200000pt;}
._2{margin-left:-2.154667pt;}
._0{margin-left:-1.092693pt;}
._7{width:606.304000pt;}
.fs1b{font-size:53.333306pt;}
.fsb{font-size:53.333309pt;}
.fs1d{font-size:53.333311pt;}
.fs28{font-size:53.333312pt;}
.fs13{font-size:53.333314pt;}
.fs23{font-size:53.333315pt;}
.fs1a{font-size:53.333316pt;}
.fs19{font-size:53.333318pt;}
.fs22{font-size:53.333319pt;}
.fs15{font-size:53.333320pt;}
.fs21{font-size:53.333322pt;}
.fs24{font-size:53.333323pt;}
.fs16{font-size:53.333324pt;}
.fse{font-size:53.333325pt;}
.fs25{font-size:53.333326pt;}
.fs8{font-size:53.333327pt;}
.fs20{font-size:53.333328pt;}
.fs1e{font-size:53.333331pt;}
.fs9{font-size:53.333332pt;}
.fs2e{font-size:53.333334pt;}
.fsf{font-size:53.333335pt;}
.fs2d{font-size:53.333336pt;}
.fsa{font-size:53.333337pt;}
.fs2a{font-size:53.333338pt;}
.fs1c{font-size:53.333340pt;}
.fsc{font-size:53.333341pt;}
.fs7{font-size:53.333343pt;}
.fs27{font-size:53.333345pt;}
.fs1f{font-size:53.333346pt;}
.fsd{font-size:53.333347pt;}
.fs11{font-size:53.333348pt;}
.fs2b{font-size:53.333349pt;}
.fs18{font-size:53.333350pt;}
.fs10{font-size:53.333352pt;}
.fs14{font-size:53.333353pt;}
.fs17{font-size:53.333355pt;}
.fs12{font-size:53.333358pt;}
.fs2c{font-size:53.333360pt;}
.fs29{font-size:53.333361pt;}
.fs26{font-size:53.333363pt;}
.fs0{font-size:79.904000pt;}
.fs1{font-size:106.666667pt;}
.fs5{font-size:128.000000pt;}
.fs2{font-size:160.000000pt;}
.fs4{font-size:234.666667pt;}
.fs6{font-size:256.000000pt;}
.fs3{font-size:512.000000pt;}
.y0{bottom:0.000000pt;}
.y7{bottom:131.741733pt;}
.y6{bottom:195.741333pt;}
.y5{bottom:259.741333pt;}
.y2{bottom:282.094667pt;}
.y1{bottom:302.072000pt;}
.y4{bottom:323.741333pt;}
.y3{bottom:414.930667pt;}
.y14{bottom:853.952000pt;}
.y15{bottom:854.080000pt;}
.y13{bottom:890.752000pt;}
.y12{bottom:927.552000pt;}
.y2c{bottom:966.080000pt;}
.y2b{bottom:1022.080000pt;}
.y5d{bottom:1044.089216pt;}
.y5e{bottom:1053.064331pt;}
.y5f{bottom:1060.082272pt;}
.y60{bottom:1066.452426pt;}
.y61{bottom:1069.305717pt;}
.y62{bottom:1076.500137pt;}
.y2a{bottom:1078.080000pt;}
.y63{bottom:1083.746568pt;}
.y64{bottom:1091.072306pt;}
.y65{bottom:1102.079058pt;}
.y66{bottom:1109.471751pt;}
.y67{bottom:1119.848095pt;}
.y68{bottom:1127.268095pt;}
.y29{bottom:1134.080000pt;}
.y69{bottom:1134.670176pt;}
.y6a{bottom:1141.317191pt;}
.y6b{bottom:1148.705924pt;}
.y6c{bottom:1159.670535pt;}
.y6d{bottom:1166.947770pt;}
.y6e{bottom:1174.848606pt;}
.y6f{bottom:1181.995726pt;}
.y70{bottom:1189.741868pt;}
.y28{bottom:1190.080000pt;}
.y71{bottom:1193.926361pt;}
.y72{bottom:1200.834773pt;}
.y73{bottom:1207.630102pt;}
.y74{bottom:1214.296576pt;}
.y75{bottom:1216.967040pt;}
.y2d{bottom:1358.080000pt;}
.y27{bottom:1414.080000pt;}
.y8e{bottom:1459.727368pt;}
.y8d{bottom:1462.390170pt;}
.y8c{bottom:1469.113112pt;}
.y26{bottom:1470.080000pt;}
.y8b{bottom:1475.957568pt;}
.y8a{bottom:1482.919437pt;}
.y3f{bottom:1483.252314pt;}
.y89{bottom:1487.131188pt;}
.y40{bottom:1492.058442pt;}
.y88{bottom:1494.911548pt;}
.y41{bottom:1498.963607pt;}
.y87{bottom:1502.079346pt;}
.y42{bottom:1505.250332pt;}
.y43{bottom:1508.055324pt;}
.y86{bottom:1510.039567pt;}
.y44{bottom:1515.152510pt;}
.y85{bottom:1517.312155pt;}
.y45{bottom:1522.327849pt;}
.y25{bottom:1526.080000pt;}
.y84{bottom:1528.317049pt;}
.y46{bottom:1529.574219pt;}
.y83{bottom:1535.719043pt;}
.y47{bottom:1540.534884pt;}
.y82{bottom:1542.371984pt;}
.y48{bottom:1547.864145pt;}
.y81{bottom:1549.778953pt;}
.y80{bottom:1557.211669pt;}
.y49{bottom:1558.217269pt;}
.y4a{bottom:1567.086863pt;}
.y7f{bottom:1567.542151pt;}
.y4b{bottom:1574.512196pt;}
.y7e{bottom:1574.924290pt;}
.y4c{bottom:1581.930991pt;}
.y24{bottom:1582.080000pt;}
.y4d{bottom:1585.608448pt;}
.y7d{bottom:1585.938519pt;}
.y4e{bottom:1593.013088pt;}
.y7c{bottom:1593.215054pt;}
.y4f{bottom:1597.415639pt;}
.y7b{bottom:1600.447556pt;}
.y50{bottom:1604.758072pt;}
.y7a{bottom:1607.605213pt;}
.y79{bottom:1610.437233pt;}
.y51{bottom:1611.315008pt;}
.y78{bottom:1616.774337pt;}
.y52{bottom:1618.530687pt;}
.y53{bottom:1621.428494pt;}
.y77{bottom:1623.766889pt;}
.y54{bottom:1625.011112pt;}
.y76{bottom:1632.683959pt;}
.y55{bottom:1634.920734pt;}
.y23{bottom:1638.080000pt;}
.y56{bottom:1641.923597pt;}
.y57{bottom:1649.495936pt;}
.y58{bottom:1653.589683pt;}
.y59{bottom:1660.307856pt;}
.y5a{bottom:1666.920040pt;}
.y5b{bottom:1673.366925pt;}
.y5c{bottom:1675.930602pt;}
.y22{bottom:1694.080000pt;}
.y21{bottom:1918.080000pt;}
.y20{bottom:1974.080000pt;}
.y1f{bottom:2030.080000pt;}
.ya7{bottom:2039.555459pt;}
.ya6{bottom:2042.372514pt;}
.ya5{bottom:2049.395002pt;}
.y2e{bottom:2055.085816pt;}
.ya4{bottom:2056.528216pt;}
.ya3{bottom:2063.693676pt;}
.y2f{bottom:2064.416136pt;}
.ya2{bottom:2068.057220pt;}
.y30{bottom:2071.664422pt;}
.ya1{bottom:2076.044102pt;}
.y31{bottom:2078.223855pt;}
.y32{bottom:2081.158271pt;}
.ya0{bottom:2083.393147pt;}
.y1e{bottom:2086.080000pt;}
.y33{bottom:2088.521470pt;}
.y9f{bottom:2091.467127pt;}
.y34{bottom:2095.906426pt;}
.y9e{bottom:2098.869126pt;}
.y35{bottom:2103.329754pt;}
.y9d{bottom:2109.970024pt;}
.y36{bottom:2114.430708pt;}
.y9c{bottom:2117.397362pt;}
.y37{bottom:2121.834131pt;}
.y9b{bottom:2124.048712pt;}
.y9a{bottom:2131.432778pt;}
.y38{bottom:2132.189710pt;}
.y99{bottom:2138.784844pt;}
.y39{bottom:2140.264030pt;}
.y1d{bottom:2142.080000pt;}
.y3a{bottom:2144.644220pt;}
.y98{bottom:2149.029298pt;}
.y3b{bottom:2151.945250pt;}
.y97{bottom:2156.294726pt;}
.y3c{bottom:2159.172379pt;}
.y3d{bottom:2166.336473pt;}
.y96{bottom:2167.048554pt;}
.y3e{bottom:2169.183063pt;}
.y95{bottom:2174.131998pt;}
.y94{bottom:2181.140465pt;}
.y93{bottom:2188.039452pt;}
.y92{bottom:2190.763378pt;}
.y91{bottom:2196.850060pt;}
.y1c{bottom:2198.080000pt;}
.y90{bottom:2203.515426pt;}
.y8f{bottom:2211.982257pt;}
.y1b{bottom:2254.080000pt;}
.y1a{bottom:2478.080000pt;}
.yc0{bottom:2525.285044pt;}
.ybf{bottom:2528.193677pt;}
.y19{bottom:2534.080000pt;}
.ybe{bottom:2535.425450pt;}
.ybd{bottom:2542.721447pt;}
.ybc{bottom:2550.074515pt;}
.ybb{bottom:2554.494563pt;}
.yba{bottom:2562.609433pt;}
.yb9{bottom:2570.033419pt;}
.yb8{bottom:2578.161190pt;}
.yb7{bottom:2585.575059pt;}
.y18{bottom:2590.080000pt;}
.yb6{bottom:2596.645940pt;}
.yb5{bottom:2604.003848pt;}
.yb4{bottom:2610.568871pt;}
.yb3{bottom:2617.828217pt;}
.yb2{bottom:2625.047815pt;}
.yb1{bottom:2635.032844pt;}
.yb0{bottom:2642.080844pt;}
.y17{bottom:2646.080000pt;}
.yaf{bottom:2652.450608pt;}
.yae{bottom:2659.258531pt;}
.yad{bottom:2665.945581pt;}
.yac{bottom:2672.504081pt;}
.yab{bottom:2675.083541pt;}
.yaa{bottom:2680.824182pt;}
.ya9{bottom:2687.085261pt;}
.ya8{bottom:2694.983718pt;}
.y16{bottom:2702.080000pt;}
.y11{bottom:2926.080000pt;}
.y10{bottom:2982.080000pt;}
.yf{bottom:3038.080000pt;}
.ye{bottom:3094.080000pt;}
.yd{bottom:3150.080000pt;}
.yc{bottom:3206.080000pt;}
.yb{bottom:3262.080000pt;}
.ya{bottom:3374.080000pt;}
.y9{bottom:3598.080000pt;}
.y8{bottom:3766.080000pt;}
.h1d{height:38.828105pt;}
.he{height:38.828107pt;}
.h1e{height:38.828109pt;}
.h16{height:38.828111pt;}
.h1c{height:38.828112pt;}
.h1b{height:38.828114pt;}
.h24{height:38.828115pt;}
.h18{height:38.828116pt;}
.h21{height:38.828116pt;}
.h22{height:38.828117pt;}
.h11{height:38.828119pt;}
.hb{height:38.828121pt;}
.h23{height:38.828122pt;}
.h1f{height:38.828123pt;}
.hc{height:38.828124pt;}
.h29{height:38.828125pt;}
.h12{height:38.828126pt;}
.hd{height:38.828128pt;}
.h20{height:38.828129pt;}
.hf{height:38.828130pt;}
.ha{height:38.828132pt;}
.h26{height:38.828133pt;}
.h10{height:38.828135pt;}
.h14{height:38.828136pt;}
.h1a{height:38.828137pt;}
.h13{height:38.828138pt;}
.h17{height:38.828140pt;}
.h19{height:38.828141pt;}
.h15{height:38.828143pt;}
.h28{height:38.828144pt;}
.h27{height:38.828145pt;}
.h25{height:38.828147pt;}
.h2{height:59.128960pt;}
.h3{height:81.600000pt;}
.h7{height:97.920000pt;}
.h9{height:122.400000pt;}
.h4{height:145.280000pt;}
.h6{height:179.520000pt;}
.h8{height:195.840000pt;}
.h5{height:391.680000pt;}
.h1{height:4494.000000pt;}
.h0{height:4494.080000pt;}
.w1{width:3178.666667pt;}
.w0{width:3178.880000pt;}
.x0{left:0.000000pt;}
.x7{left:94.362267pt;}
.xf{left:105.332800pt;}
.x14{left:113.376133pt;}
.x1b{left:114.564000pt;}
.x1d{left:133.204000pt;}
.x15{left:146.096000pt;}
.x18{left:159.010667pt;}
.x6{left:187.640000pt;}
.x1c{left:227.164000pt;}
.x19{left:247.909333pt;}
.x11{left:262.693333pt;}
.x1a{left:280.684000pt;}
.x16{left:291.096000pt;}
.x5{left:316.942667pt;}
.xe{left:335.937333pt;}
.x10{left:337.453333pt;}
.x12{left:369.413333pt;}
.x3{left:396.316000pt;}
.x1e{left:461.484000pt;}
.x13{left:728.942667pt;}
.x17{left:752.176000pt;}
.x24{left:874.443297pt;}
.x23{left:875.466949pt;}
.x22{left:876.858220pt;}
.x21{left:877.985318pt;}
.x20{left:879.511933pt;}
.x2b{left:880.714499pt;}
.x1f{left:881.868335pt;}
.x25{left:882.985482pt;}
.x2a{left:884.143187pt;}
.x29{left:885.096097pt;}
.x28{left:887.314685pt;}
.x27{left:890.043085pt;}
.x2c{left:891.850999pt;}
.x26{left:893.936336pt;}
.x2d{left:894.987999pt;}
.x2e{left:898.358558pt;}
.x2f{left:901.994737pt;}
.x30{left:903.479486pt;}
.x2{left:1256.125333pt;}
.x39{left:1384.830922pt;}
.x38{left:1385.859948pt;}
.x37{left:1387.285995pt;}
.x36{left:1388.567166pt;}
.x35{left:1390.111411pt;}
.x3a{left:1391.501388pt;}
.x34{left:1392.748606pt;}
.x33{left:1394.668226pt;}
.x3b{left:1396.011044pt;}
.x32{left:1397.070697pt;}
.x31{left:1400.547451pt;}
.x3c{left:1403.147025pt;}
.x3d{left:1406.370729pt;}
.x3e{left:1407.700385pt;}
.xa{left:1617.640000pt;}
.x50{left:1754.256823pt;}
.x51{left:1759.749097pt;}
.x52{left:1763.734858pt;}
.x53{left:1767.095785pt;}
.x54{left:1768.563636pt;}
.x55{left:1772.021596pt;}
.x56{left:1775.230258pt;}
.x57{left:1778.197342pt;}
.x58{left:1782.178374pt;}
.x59{left:1784.500992pt;}
.x5a{left:1787.353229pt;}
.x5b{left:1789.071637pt;}
.x5c{left:1790.527840pt;}
.x5d{left:1791.631002pt;}
.x5e{left:1792.634278pt;}
.x5f{left:1793.539188pt;}
.xb{left:1853.133333pt;}
.x9{left:2085.173333pt;}
.x1{left:2228.746667pt;}
.x4b{left:2273.613999pt;}
.x4a{left:2278.611285pt;}
.x49{left:2279.881468pt;}
.x4c{left:2281.447350pt;}
.x3f{left:2282.848750pt;}
.x4d{left:2284.162694pt;}
.x4e{left:2285.339466pt;}
.x40{left:2286.473011pt;}
.x4f{left:2288.032167pt;}
.x41{left:2288.997965pt;}
.x42{left:2291.013072pt;}
.x48{left:2292.243190pt;}
.x43{left:2293.811174pt;}
.x44{left:2295.481281pt;}
.x45{left:2296.886764pt;}
.x46{left:2298.504050pt;}
.x47{left:2299.837499pt;}
.xc{left:2347.026667pt;}
.xd{left:2371.026667pt;}
.x4{left:2710.426667pt;}
.x8{left:2857.013333pt;}
}




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