
    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_834760aaca1e286bd42ef446.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.126000;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_30bdeb0b03f513f7cf7680f5.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.124378;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_411bb06bdb1120046dd042f5.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.981000;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_2585557b4e99dc6cd314d250.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.019000;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_387c68b9fef01a02e8554ccc.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.957000;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_94fbe5c1a3f7c5b23d9e1b05.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.126000;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_834760aaca1e286bd42ef446.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.126000;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_834760aaca1e286bd42ef446.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.126000;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_eedfc9700eb9586af5b5f4b2.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.532000;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_6491a3f0d65ba1caf67ff94a.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.751000;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;}
.m2f{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);}
.m2{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m52{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m64{transform:matrix(0.232858,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232858,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232858,0.000000,0.000000,0.250000,0,0);}
.m6a{transform:matrix(0.232960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232960,0.000000,0.000000,0.250000,0,0);}
.m54{transform:matrix(0.233006,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233006,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233006,0.000000,0.000000,0.250000,0,0);}
.m80{transform:matrix(0.233548,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233548,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233548,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.234335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234335,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.234625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234625,0.000000,0.000000,0.250000,0,0);}
.m44{transform:matrix(0.234841,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234841,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234841,0.000000,0.000000,0.250000,0,0);}
.m82{transform:matrix(0.235091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235091,0.000000,0.000000,0.250000,0,0);}
.m49{transform:matrix(0.235210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235210,0.000000,0.000000,0.250000,0,0);}
.m62{transform:matrix(0.235398,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235398,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235398,0.000000,0.000000,0.250000,0,0);}
.m32{transform:matrix(0.235423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235423,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.235866,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235866,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235866,0.000000,0.000000,0.250000,0,0);}
.m77{transform:matrix(0.236599,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236599,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236599,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.236858,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236858,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236858,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m6f{transform:matrix(0.237582,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237582,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237582,0.000000,0.000000,0.250000,0,0);}
.m3c{transform:matrix(0.238003,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238003,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238003,0.000000,0.000000,0.250000,0,0);}
.m4f{transform:matrix(0.238412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238412,0.000000,0.000000,0.250000,0,0);}
.m7b{transform:matrix(0.238642,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238642,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238642,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.238903,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238903,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238903,0.000000,0.000000,0.250000,0,0);}
.m6b{transform:matrix(0.238906,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238906,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238906,0.000000,0.000000,0.250000,0,0);}
.m3e{transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.239045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239045,0.000000,0.000000,0.250000,0,0);}
.m39{transform:matrix(0.239063,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239063,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239063,0.000000,0.000000,0.250000,0,0);}
.m8a{transform:matrix(0.239165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239165,0.000000,0.000000,0.250000,0,0);}
.m70{transform:matrix(0.239253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239253,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.239261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239261,0.000000,0.000000,0.250000,0,0);}
.m78{transform:matrix(0.239585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239585,0.000000,0.000000,0.250000,0,0);}
.m6e{transform:matrix(0.239986,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239986,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239986,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.240111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240111,0.000000,0.000000,0.250000,0,0);}
.m7f{transform:matrix(0.240241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240241,0.000000,0.000000,0.250000,0,0);}
.m42{transform:matrix(0.240318,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240318,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240318,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.240361,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240361,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240361,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.240395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240395,0.000000,0.000000,0.250000,0,0);}
.m84{transform:matrix(0.240548,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240548,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240548,0.000000,0.000000,0.250000,0,0);}
.m4c{transform:matrix(0.240687,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240687,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240687,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.240705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240705,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.240761,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240761,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240761,0.000000,0.000000,0.250000,0,0);}
.m3d{transform:matrix(0.240989,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240989,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240989,0.000000,0.000000,0.250000,0,0);}
.m8c{transform:matrix(0.241040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241040,0.000000,0.000000,0.250000,0,0);}
.m8b{transform:matrix(0.241043,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241043,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241043,0.000000,0.000000,0.250000,0,0);}
.m71{transform:matrix(0.241048,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241048,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241048,0.000000,0.000000,0.250000,0,0);}
.m4a{transform:matrix(0.241105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241105,0.000000,0.000000,0.250000,0,0);}
.m40{transform:matrix(0.241182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241182,0.000000,0.000000,0.250000,0,0);}
.m5f{transform:matrix(0.241264,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241264,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241264,0.000000,0.000000,0.250000,0,0);}
.m73{transform:matrix(0.241378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241378,0.000000,0.000000,0.250000,0,0);}
.m5a{transform:matrix(0.241531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241531,0.000000,0.000000,0.250000,0,0);}
.m81{transform:matrix(0.241537,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241537,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241537,0.000000,0.000000,0.250000,0,0);}
.m7a{transform:matrix(0.241577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241577,0.000000,0.000000,0.250000,0,0);}
.m6d{transform:matrix(0.241625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241625,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.241741,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241741,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241741,0.000000,0.000000,0.250000,0,0);}
.m69{transform:matrix(0.241764,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241764,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241764,0.000000,0.000000,0.250000,0,0);}
.m3a{transform:matrix(0.242239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242239,0.000000,0.000000,0.250000,0,0);}
.m8d{transform:matrix(0.242452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242452,0.000000,0.000000,0.250000,0,0);}
.m61{transform:matrix(0.242696,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242696,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242696,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.242875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242875,0.000000,0.000000,0.250000,0,0);}
.m66{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);}
.m6{transform:matrix(0.243156,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243156,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243156,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.243165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243165,0.000000,0.000000,0.250000,0,0);}
.m65{transform:matrix(0.243560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243560,0.000000,0.000000,0.250000,0,0);}
.m55{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m67{transform:matrix(0.243784,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243784,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243784,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.243923,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243923,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243923,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.243926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243926,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.243949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243949,0.000000,0.000000,0.250000,0,0);}
.m60{transform:matrix(0.243989,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243989,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243989,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.244065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244065,0.000000,0.000000,0.250000,0,0);}
.m48{transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);}
.m33{transform:matrix(0.244432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244432,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.244560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244560,0.000000,0.000000,0.250000,0,0);}
.m74{transform:matrix(0.244602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244602,0.000000,0.000000,0.250000,0,0);}
.m38{transform:matrix(0.244628,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244628,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244628,0.000000,0.000000,0.250000,0,0);}
.m68{transform:matrix(0.244705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244705,0.000000,0.000000,0.250000,0,0);}
.m34{transform:matrix(0.244889,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244889,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244889,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m4d{transform:matrix(0.245338,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245338,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245338,0.000000,0.000000,0.250000,0,0);}
.m4b{transform:matrix(0.245449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245449,0.000000,0.000000,0.250000,0,0);}
.m6c{transform:matrix(0.245452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245452,0.000000,0.000000,0.250000,0,0);}
.m58{transform:matrix(0.245477,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245477,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245477,0.000000,0.000000,0.250000,0,0);}
.m36{transform:matrix(0.245517,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245517,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245517,0.000000,0.000000,0.250000,0,0);}
.m79{transform:matrix(0.245639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245639,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.245861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245861,0.000000,0.000000,0.250000,0,0);}
.m3f{transform:matrix(0.246176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246176,0.000000,0.000000,0.250000,0,0);}
.m5d{transform:matrix(0.246236,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246236,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246236,0.000000,0.000000,0.250000,0,0);}
.m7e{transform:matrix(0.246386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246386,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.246457,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246457,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246457,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.246653,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246653,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246653,0.000000,0.000000,0.250000,0,0);}
.m5c{transform:matrix(0.246747,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246747,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246747,0.000000,0.000000,0.250000,0,0);}
.m30{transform:matrix(0.246787,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246787,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246787,0.000000,0.000000,0.250000,0,0);}
.m31{transform:matrix(0.246790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246790,0.000000,0.000000,0.250000,0,0);}
.m83{transform:matrix(0.246991,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246991,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246991,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.247287,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247287,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247287,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.247483,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247483,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247483,0.000000,0.000000,0.250000,0,0);}
.m46{transform:matrix(0.247662,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247662,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247662,0.000000,0.000000,0.250000,0,0);}
.m50{transform:matrix(0.247759,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247759,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247759,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.247770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247770,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.248011,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248011,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248011,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.248162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248162,0.000000,0.000000,0.250000,0,0);}
.m88{transform:matrix(0.248233,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248233,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248233,0.000000,0.000000,0.250000,0,0);}
.m59{transform:matrix(0.248585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248585,0.000000,0.000000,0.250000,0,0);}
.m2c{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);}
.m35{transform:matrix(0.248810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248810,0.000000,0.000000,0.250000,0,0);}
.m45{transform:matrix(0.248872,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248872,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248872,0.000000,0.000000,0.250000,0,0);}
.m47{transform:matrix(0.248878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248878,0.000000,0.000000,0.250000,0,0);}
.m56{transform:matrix(0.249062,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249062,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249062,0.000000,0.000000,0.250000,0,0);}
.m41{transform:matrix(0.249287,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249287,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249287,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.249301,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249301,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249301,0.000000,0.000000,0.250000,0,0);}
.m4e{transform:matrix(0.249330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249330,0.000000,0.000000,0.250000,0,0);}
.m87{transform:matrix(0.249509,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249509,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249509,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.249997,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249997,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249997,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);}
.m37{transform:matrix(0.250219,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250219,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250219,0.000000,0.000000,0.250000,0,0);}
.m72{transform:matrix(0.250358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250358,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.250401,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250401,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250401,0.000000,0.000000,0.250000,0,0);}
.m51{transform:matrix(0.250540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250540,0.000000,0.000000,0.250000,0,0);}
.m86{transform:matrix(0.250795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250795,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.250972,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250972,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250972,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.251020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251020,0.000000,0.000000,0.250000,0,0);}
.m57{transform:matrix(0.251236,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251236,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251236,0.000000,0.000000,0.250000,0,0);}
.m7c{transform:matrix(0.251287,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251287,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251287,0.000000,0.000000,0.250000,0,0);}
.m43{transform:matrix(0.251361,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251361,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251361,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.251372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251372,0.000000,0.000000,0.250000,0,0);}
.m5b{transform:matrix(0.252753,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252753,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252753,0.000000,0.000000,0.250000,0,0);}
.m85{transform:matrix(0.253534,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253534,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253534,0.000000,0.000000,0.250000,0,0);}
.m89{transform:matrix(0.253841,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253841,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253841,0.000000,0.000000,0.250000,0,0);}
.m3b{transform:matrix(0.254165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254165,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.254386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254386,0.000000,0.000000,0.250000,0,0);}
.m63{transform:matrix(0.254673,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254673,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254673,0.000000,0.000000,0.250000,0,0);}
.m75{transform:matrix(0.254702,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254702,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254702,0.000000,0.000000,0.250000,0,0);}
.m5e{transform:matrix(0.254847,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254847,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254847,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.254991,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254991,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254991,0.000000,0.000000,0.250000,0,0);}
.m7d{transform:matrix(0.255193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255193,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.255295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255295,0.000000,0.000000,0.250000,0,0);}
.m76{transform:matrix(0.255338,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255338,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255338,0.000000,0.000000,0.250000,0,0);}
.m53{transform:matrix(0.255599,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255599,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255599,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.256230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256230,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.256520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256520,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.256614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256614,0.000000,0.000000,0.250000,0,0);}
.mf{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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:3.009000px;}
.lsa{letter-spacing:-2.550000px;}
.ls7{letter-spacing:-2.052000px;}
.lsf{letter-spacing:-1.566000px;}
.ls6{letter-spacing:-1.056000px;}
.ls8{letter-spacing:0.000000px;}
.lse{letter-spacing:0.240000px;}
.ls4{letter-spacing:0.264000px;}
.lsc{letter-spacing:0.528000px;}
.ls5{letter-spacing:0.552000px;}
.lsd{letter-spacing:0.792000px;}
.ls2{letter-spacing:0.810000px;}
.ls9{letter-spacing:0.864000px;}
.lsb{letter-spacing:0.990000px;}
.ls3{letter-spacing:1.620000px;}
.ls0{letter-spacing:21.930000px;}
.ls1{letter-spacing:22.197551px;}
.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;}
}
.ws26{word-spacing:-16.947000px;}
.ws3{word-spacing:-13.446000px;}
.ws27{word-spacing:-11.472000px;}
.ws2f{word-spacing:-10.824000px;}
.ws2{word-spacing:-10.200000px;}
.ws25{word-spacing:-9.234000px;}
.ws1{word-spacing:-8.748000px;}
.ws4{word-spacing:-7.650000px;}
.ws32{word-spacing:-2.692800px;}
.ws35{word-spacing:-1.689600px;}
.ws47{word-spacing:-1.656000px;}
.wsc{word-spacing:-1.636800px;}
.wsb{word-spacing:-1.584000px;}
.ws30{word-spacing:-1.478400px;}
.ws49{word-spacing:-1.440000px;}
.ws42{word-spacing:-1.425600px;}
.ws40{word-spacing:-1.372800px;}
.ws34{word-spacing:-1.320000px;}
.ws2b{word-spacing:-1.267200px;}
.ws21{word-spacing:-1.214400px;}
.ws37{word-spacing:-0.950400px;}
.ws22{word-spacing:-0.792000px;}
.ws13{word-spacing:-0.739200px;}
.ws3b{word-spacing:-0.633600px;}
.ws41{word-spacing:-0.369600px;}
.ws3a{word-spacing:-0.316800px;}
.ws28{word-spacing:-0.288000px;}
.ws2c{word-spacing:-0.264000px;}
.ws4a{word-spacing:-0.240000px;}
.ws1d{word-spacing:-0.211200px;}
.ws44{word-spacing:-0.105600px;}
.ws5{word-spacing:0.000000px;}
.ws2e{word-spacing:0.158400px;}
.ws1e{word-spacing:0.264000px;}
.ws7{word-spacing:0.316800px;}
.ws12{word-spacing:0.369600px;}
.ws6{word-spacing:0.422400px;}
.ws17{word-spacing:0.633600px;}
.ws3c{word-spacing:0.686400px;}
.ws3d{word-spacing:0.739200px;}
.ws1a{word-spacing:0.792000px;}
.ws0{word-spacing:0.990000px;}
.ws45{word-spacing:1.214400px;}
.ws39{word-spacing:1.320000px;}
.wsf{word-spacing:1.425600px;}
.ws1f{word-spacing:1.478400px;}
.ws31{word-spacing:1.531200px;}
.ws24{word-spacing:1.689600px;}
.ws1b{word-spacing:1.900800px;}
.ws18{word-spacing:1.953600px;}
.ws46{word-spacing:2.323200px;}
.ws1c{word-spacing:2.428800px;}
.ws3e{word-spacing:2.481600px;}
.wsa{word-spacing:2.534400px;}
.ws9{word-spacing:2.587200px;}
.ws8{word-spacing:2.640000px;}
.ws10{word-spacing:2.904000px;}
.ws38{word-spacing:3.115200px;}
.ws19{word-spacing:3.220800px;}
.ws2a{word-spacing:3.960000px;}
.ws3f{word-spacing:4.171200px;}
.ws20{word-spacing:4.224000px;}
.ws36{word-spacing:4.329600px;}
.ws43{word-spacing:4.646400px;}
.ws2d{word-spacing:5.121600px;}
.wsd{word-spacing:5.966400px;}
.ws48{word-spacing:6.283200px;}
.ws33{word-spacing:6.494400px;}
.ws23{word-spacing:6.600000px;}
.ws29{word-spacing:6.864000px;}
.ws11{word-spacing:8.553600px;}
.wse{word-spacing:9.873600px;}
.ws15{word-spacing:9.979200px;}
.ws16{word-spacing:13.041600px;}
.ws14{word-spacing:14.520000px;}
._a{margin-left:-24.241800px;}
._5{margin-left:-20.448000px;}
._6{margin-left:-16.732800px;}
._8{margin-left:-13.276800px;}
._7{margin-left:-9.216000px;}
._d{margin-left:-6.218520px;}
._c{margin-left:-5.003724px;}
._2{margin-left:-3.984147px;}
._9{margin-left:-2.700376px;}
._0{margin-left:-1.630200px;}
._3{width:1.051696px;}
._1{width:2.067673px;}
._4{width:4.004235px;}
._b{width:13.458720px;}
.fc3{color:rgb(181,44,31);}
.fc1{color:rgb(149,148,144);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:33.000000px;}
.fs9{font-size:45.000000px;}
.fsc{font-size:48.000000px;}
.fs2{font-size:51.000000px;}
.fs6{font-size:52.800000px;}
.fs1{font-size:54.000000px;}
.fs7{font-size:55.200000px;}
.fsb{font-size:63.000000px;}
.fs0{font-size:66.000000px;}
.fs8{font-size:69.000000px;}
.fs4{font-size:81.000000px;}
.fs5{font-size:269.926200px;}
.fs3{font-size:288.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:29.763750px;}
.y25{bottom:63.779550px;}
.y35{bottom:68.067450px;}
.y24{bottom:81.323550px;}
.y2e{bottom:81.329550px;}
.y98{bottom:81.330000px;}
.y34{bottom:90.561450px;}
.y23{bottom:98.879550px;}
.y97{bottom:105.630000px;}
.y33{bottom:113.055450px;}
.y6b{bottom:116.429400px;}
.y22{bottom:116.429550px;}
.y96{bottom:121.830000px;}
.y6a{bottom:133.979400px;}
.y21{bottom:133.979550px;}
.y32{bottom:135.549450px;}
.y95{bottom:138.030000px;}
.y2d{bottom:138.773550px;}
.y20{bottom:151.529550px;}
.y94{bottom:154.230000px;}
.y31{bottom:158.043450px;}
.y1f{bottom:169.079550px;}
.y93{bottom:170.430000px;}
.y30{bottom:180.537450px;}
.y1e{bottom:186.629550px;}
.y92{bottom:186.630000px;}
.y91{bottom:202.830000px;}
.y2f{bottom:203.031450px;}
.y1d{bottom:204.173550px;}
.y69{bottom:204.179400px;}
.y2c{bottom:204.179550px;}
.y90{bottom:219.030000px;}
.y68{bottom:221.729400px;}
.y1c{bottom:221.729550px;}
.y8f{bottom:235.230000px;}
.y1b{bottom:239.279550px;}
.y8e{bottom:251.430000px;}
.y1a{bottom:256.823550px;}
.y28{bottom:256.829550px;}
.y85{bottom:256.829700px;}
.y8d{bottom:267.630000px;}
.y67{bottom:274.379400px;}
.y19{bottom:274.379550px;}
.y84{bottom:274.379700px;}
.y8c{bottom:283.830000px;}
.y18{bottom:291.929550px;}
.y83{bottom:291.929700px;}
.y8b{bottom:308.533950px;}
.y66{bottom:309.479400px;}
.y17{bottom:309.479550px;}
.y82{bottom:309.479700px;}
.y2b{bottom:327.011550px;}
.y16{bottom:327.029550px;}
.y81{bottom:327.029700px;}
.y2a{bottom:344.567550px;}
.y15{bottom:344.579550px;}
.y80{bottom:344.579700px;}
.y29{bottom:362.123550px;}
.y65{bottom:362.129400px;}
.y14{bottom:362.129550px;}
.y7f{bottom:362.129700px;}
.y13{bottom:379.679550px;}
.y7e{bottom:379.679700px;}
.y64{bottom:397.229400px;}
.y12{bottom:397.229550px;}
.y7d{bottom:402.023700px;}
.y63{bottom:414.773550px;}
.y11{bottom:414.779550px;}
.y10{bottom:432.329550px;}
.y7c{bottom:432.329700px;}
.y62{bottom:449.879400px;}
.yf{bottom:449.879550px;}
.y7b{bottom:449.879700px;}
.y61{bottom:467.423400px;}
.ye{bottom:467.429550px;}
.y7a{bottom:467.429700px;}
.y37{bottom:470.175750px;}
.y60{bottom:484.979400px;}
.yb{bottom:484.979550px;}
.y79{bottom:484.979700px;}
.y36{bottom:485.172000px;}
.yd{bottom:502.523550px;}
.y27{bottom:502.529550px;}
.y78{bottom:502.529700px;}
.y38{bottom:506.917650px;}
.yc{bottom:520.079550px;}
.y77{bottom:520.079700px;}
.y5d{bottom:537.629400px;}
.y26{bottom:537.629550px;}
.y76{bottom:537.629700px;}
.ya{bottom:555.179550px;}
.y75{bottom:555.179700px;}
.y5c{bottom:572.729400px;}
.y4f{bottom:572.729550px;}
.y74{bottom:572.729700px;}
.y4e{bottom:590.279550px;}
.y73{bottom:590.279700px;}
.y4d{bottom:607.829550px;}
.y72{bottom:607.829700px;}
.y5b{bottom:625.379400px;}
.y4c{bottom:625.379550px;}
.y4b{bottom:642.929550px;}
.y8a{bottom:642.953550px;}
.y9{bottom:646.444200px;}
.y5a{bottom:660.479400px;}
.y4a{bottom:660.479550px;}
.y89{bottom:665.447550px;}
.y8{bottom:670.744200px;}
.y49{bottom:678.029550px;}
.y88{bottom:687.941550px;}
.y7{bottom:695.044200px;}
.y48{bottom:695.579550px;}
.y87{bottom:710.435550px;}
.y59{bottom:713.129400px;}
.y47{bottom:713.129550px;}
.y6{bottom:719.344200px;}
.y46{bottom:730.679550px;}
.y86{bottom:732.929550px;}
.y58{bottom:748.229400px;}
.y45{bottom:748.229550px;}
.y44{bottom:765.773550px;}
.y57{bottom:765.779550px;}
.y71{bottom:765.779700px;}
.y5{bottom:777.659850px;}
.y43{bottom:783.329550px;}
.y70{bottom:783.329700px;}
.y42{bottom:800.879550px;}
.y6f{bottom:800.879700px;}
.y56{bottom:818.429400px;}
.y41{bottom:818.429550px;}
.y6e{bottom:818.429700px;}
.y55{bottom:835.979400px;}
.y40{bottom:835.979550px;}
.y4{bottom:849.659850px;}
.y3f{bottom:853.529550px;}
.y3e{bottom:871.079550px;}
.y3d{bottom:888.629550px;}
.y54{bottom:906.179400px;}
.y3c{bottom:906.179550px;}
.y3{bottom:921.659850px;}
.y53{bottom:923.729400px;}
.y3b{bottom:923.729550px;}
.y5f{bottom:928.523550px;}
.y3a{bottom:941.279550px;}
.y39{bottom:958.829550px;}
.y52{bottom:976.373400px;}
.y5e{bottom:976.379550px;}
.y51{bottom:993.929400px;}
.y6d{bottom:993.929550px;}
.y50{bottom:1011.479400px;}
.y6c{bottom:1011.479550px;}
.y1{bottom:1154.409450px;}
.hc{height:24.882000px;}
.h10{height:35.520000px;}
.hf{height:36.192000px;}
.h6{height:40.716000px;}
.hb{height:41.670000px;}
.h8{height:45.691978px;}
.hd{height:45.716578px;}
.h3{height:47.143297px;}
.ha{height:50.508000px;}
.h9{height:51.115200px;}
.he{height:58.338000px;}
.h2{height:61.116000px;}
.h5{height:62.370000px;}
.h7{height:233.588297px;}
.h4{height:249.228973px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:68.031450px;}
.x19{left:76.535400px;}
.x11{left:80.680050px;}
.x3{left:85.042290px;}
.x2{left:132.591000px;}
.x12{left:159.820988px;}
.x4{left:326.551200px;}
.x5{left:343.558950px;}
.xe{left:358.888200px;}
.xa{left:363.925200px;}
.x9{left:368.686200px;}
.xb{left:372.981450px;}
.xc{left:377.414700px;}
.xd{left:378.432450px;}
.xf{left:404.203950px;}
.x6{left:561.107550px;}
.x13{left:562.110300px;}
.x7{left:585.070800px;}
.x8{left:602.081640px;}
.x17{left:648.086700px;}
.x18{left:650.242950px;}
.x15{left:655.003950px;}
.x16{left:663.853200px;}
.x10{left:704.320800px;}
.x14{left:819.565650px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:2.674667pt;}
.lsa{letter-spacing:-2.266667pt;}
.ls7{letter-spacing:-1.824000pt;}
.lsf{letter-spacing:-1.392000pt;}
.ls6{letter-spacing:-0.938667pt;}
.ls8{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.213333pt;}
.ls4{letter-spacing:0.234667pt;}
.lsc{letter-spacing:0.469333pt;}
.ls5{letter-spacing:0.490667pt;}
.lsd{letter-spacing:0.704000pt;}
.ls2{letter-spacing:0.720000pt;}
.ls9{letter-spacing:0.768000pt;}
.lsb{letter-spacing:0.880000pt;}
.ls3{letter-spacing:1.440000pt;}
.ls0{letter-spacing:19.493333pt;}
.ls1{letter-spacing:19.731156pt;}
.ws26{word-spacing:-15.064000pt;}
.ws3{word-spacing:-11.952000pt;}
.ws27{word-spacing:-10.197333pt;}
.ws2f{word-spacing:-9.621333pt;}
.ws2{word-spacing:-9.066667pt;}
.ws25{word-spacing:-8.208000pt;}
.ws1{word-spacing:-7.776000pt;}
.ws4{word-spacing:-6.800000pt;}
.ws32{word-spacing:-2.393600pt;}
.ws35{word-spacing:-1.501867pt;}
.ws47{word-spacing:-1.472000pt;}
.wsc{word-spacing:-1.454933pt;}
.wsb{word-spacing:-1.408000pt;}
.ws30{word-spacing:-1.314133pt;}
.ws49{word-spacing:-1.280000pt;}
.ws42{word-spacing:-1.267200pt;}
.ws40{word-spacing:-1.220267pt;}
.ws34{word-spacing:-1.173333pt;}
.ws2b{word-spacing:-1.126400pt;}
.ws21{word-spacing:-1.079467pt;}
.ws37{word-spacing:-0.844800pt;}
.ws22{word-spacing:-0.704000pt;}
.ws13{word-spacing:-0.657067pt;}
.ws3b{word-spacing:-0.563200pt;}
.ws41{word-spacing:-0.328533pt;}
.ws3a{word-spacing:-0.281600pt;}
.ws28{word-spacing:-0.256000pt;}
.ws2c{word-spacing:-0.234667pt;}
.ws4a{word-spacing:-0.213333pt;}
.ws1d{word-spacing:-0.187733pt;}
.ws44{word-spacing:-0.093867pt;}
.ws5{word-spacing:0.000000pt;}
.ws2e{word-spacing:0.140800pt;}
.ws1e{word-spacing:0.234667pt;}
.ws7{word-spacing:0.281600pt;}
.ws12{word-spacing:0.328533pt;}
.ws6{word-spacing:0.375467pt;}
.ws17{word-spacing:0.563200pt;}
.ws3c{word-spacing:0.610133pt;}
.ws3d{word-spacing:0.657067pt;}
.ws1a{word-spacing:0.704000pt;}
.ws0{word-spacing:0.880000pt;}
.ws45{word-spacing:1.079467pt;}
.ws39{word-spacing:1.173333pt;}
.wsf{word-spacing:1.267200pt;}
.ws1f{word-spacing:1.314133pt;}
.ws31{word-spacing:1.361067pt;}
.ws24{word-spacing:1.501867pt;}
.ws1b{word-spacing:1.689600pt;}
.ws18{word-spacing:1.736533pt;}
.ws46{word-spacing:2.065067pt;}
.ws1c{word-spacing:2.158933pt;}
.ws3e{word-spacing:2.205867pt;}
.wsa{word-spacing:2.252800pt;}
.ws9{word-spacing:2.299733pt;}
.ws8{word-spacing:2.346667pt;}
.ws10{word-spacing:2.581333pt;}
.ws38{word-spacing:2.769067pt;}
.ws19{word-spacing:2.862933pt;}
.ws2a{word-spacing:3.520000pt;}
.ws3f{word-spacing:3.707733pt;}
.ws20{word-spacing:3.754667pt;}
.ws36{word-spacing:3.848533pt;}
.ws43{word-spacing:4.130133pt;}
.ws2d{word-spacing:4.552533pt;}
.wsd{word-spacing:5.303467pt;}
.ws48{word-spacing:5.585067pt;}
.ws33{word-spacing:5.772800pt;}
.ws23{word-spacing:5.866667pt;}
.ws29{word-spacing:6.101333pt;}
.ws11{word-spacing:7.603200pt;}
.wse{word-spacing:8.776533pt;}
.ws15{word-spacing:8.870400pt;}
.ws16{word-spacing:11.592533pt;}
.ws14{word-spacing:12.906667pt;}
._a{margin-left:-21.548267pt;}
._5{margin-left:-18.176000pt;}
._6{margin-left:-14.873600pt;}
._8{margin-left:-11.801600pt;}
._7{margin-left:-8.192000pt;}
._d{margin-left:-5.527573pt;}
._c{margin-left:-4.447755pt;}
._2{margin-left:-3.541464pt;}
._9{margin-left:-2.400334pt;}
._0{margin-left:-1.449067pt;}
._3{width:0.934841pt;}
._1{width:1.837932pt;}
._4{width:3.559320pt;}
._b{width:11.963307pt;}
.fsa{font-size:29.333333pt;}
.fs9{font-size:40.000000pt;}
.fsc{font-size:42.666667pt;}
.fs2{font-size:45.333333pt;}
.fs6{font-size:46.933333pt;}
.fs1{font-size:48.000000pt;}
.fs7{font-size:49.066667pt;}
.fsb{font-size:56.000000pt;}
.fs0{font-size:58.666667pt;}
.fs8{font-size:61.333333pt;}
.fs4{font-size:72.000000pt;}
.fs5{font-size:239.934400pt;}
.fs3{font-size:256.000000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:26.456667pt;}
.y25{bottom:56.692933pt;}
.y35{bottom:60.504400pt;}
.y24{bottom:72.287600pt;}
.y2e{bottom:72.292933pt;}
.y98{bottom:72.293333pt;}
.y34{bottom:80.499067pt;}
.y23{bottom:87.892933pt;}
.y97{bottom:93.893333pt;}
.y33{bottom:100.493733pt;}
.y6b{bottom:103.492800pt;}
.y22{bottom:103.492933pt;}
.y96{bottom:108.293333pt;}
.y6a{bottom:119.092800pt;}
.y21{bottom:119.092933pt;}
.y32{bottom:120.488400pt;}
.y95{bottom:122.693333pt;}
.y2d{bottom:123.354267pt;}
.y20{bottom:134.692933pt;}
.y94{bottom:137.093333pt;}
.y31{bottom:140.483067pt;}
.y1f{bottom:150.292933pt;}
.y93{bottom:151.493333pt;}
.y30{bottom:160.477733pt;}
.y1e{bottom:165.892933pt;}
.y92{bottom:165.893333pt;}
.y91{bottom:180.293333pt;}
.y2f{bottom:180.472400pt;}
.y1d{bottom:181.487600pt;}
.y69{bottom:181.492800pt;}
.y2c{bottom:181.492933pt;}
.y90{bottom:194.693333pt;}
.y68{bottom:197.092800pt;}
.y1c{bottom:197.092933pt;}
.y8f{bottom:209.093333pt;}
.y1b{bottom:212.692933pt;}
.y8e{bottom:223.493333pt;}
.y1a{bottom:228.287600pt;}
.y28{bottom:228.292933pt;}
.y85{bottom:228.293067pt;}
.y8d{bottom:237.893333pt;}
.y67{bottom:243.892800pt;}
.y19{bottom:243.892933pt;}
.y84{bottom:243.893067pt;}
.y8c{bottom:252.293333pt;}
.y18{bottom:259.492933pt;}
.y83{bottom:259.493067pt;}
.y8b{bottom:274.252400pt;}
.y66{bottom:275.092800pt;}
.y17{bottom:275.092933pt;}
.y82{bottom:275.093067pt;}
.y2b{bottom:290.676933pt;}
.y16{bottom:290.692933pt;}
.y81{bottom:290.693067pt;}
.y2a{bottom:306.282267pt;}
.y15{bottom:306.292933pt;}
.y80{bottom:306.293067pt;}
.y29{bottom:321.887600pt;}
.y65{bottom:321.892800pt;}
.y14{bottom:321.892933pt;}
.y7f{bottom:321.893067pt;}
.y13{bottom:337.492933pt;}
.y7e{bottom:337.493067pt;}
.y64{bottom:353.092800pt;}
.y12{bottom:353.092933pt;}
.y7d{bottom:357.354400pt;}
.y63{bottom:368.687600pt;}
.y11{bottom:368.692933pt;}
.y10{bottom:384.292933pt;}
.y7c{bottom:384.293067pt;}
.y62{bottom:399.892800pt;}
.yf{bottom:399.892933pt;}
.y7b{bottom:399.893067pt;}
.y61{bottom:415.487467pt;}
.ye{bottom:415.492933pt;}
.y7a{bottom:415.493067pt;}
.y37{bottom:417.934000pt;}
.y60{bottom:431.092800pt;}
.yb{bottom:431.092933pt;}
.y79{bottom:431.093067pt;}
.y36{bottom:431.264000pt;}
.yd{bottom:446.687600pt;}
.y27{bottom:446.692933pt;}
.y78{bottom:446.693067pt;}
.y38{bottom:450.593467pt;}
.yc{bottom:462.292933pt;}
.y77{bottom:462.293067pt;}
.y5d{bottom:477.892800pt;}
.y26{bottom:477.892933pt;}
.y76{bottom:477.893067pt;}
.ya{bottom:493.492933pt;}
.y75{bottom:493.493067pt;}
.y5c{bottom:509.092800pt;}
.y4f{bottom:509.092933pt;}
.y74{bottom:509.093067pt;}
.y4e{bottom:524.692933pt;}
.y73{bottom:524.693067pt;}
.y4d{bottom:540.292933pt;}
.y72{bottom:540.293067pt;}
.y5b{bottom:555.892800pt;}
.y4c{bottom:555.892933pt;}
.y4b{bottom:571.492933pt;}
.y8a{bottom:571.514267pt;}
.y9{bottom:574.617067pt;}
.y5a{bottom:587.092800pt;}
.y4a{bottom:587.092933pt;}
.y89{bottom:591.508933pt;}
.y8{bottom:596.217067pt;}
.y49{bottom:602.692933pt;}
.y88{bottom:611.503600pt;}
.y7{bottom:617.817067pt;}
.y48{bottom:618.292933pt;}
.y87{bottom:631.498267pt;}
.y59{bottom:633.892800pt;}
.y47{bottom:633.892933pt;}
.y6{bottom:639.417067pt;}
.y46{bottom:649.492933pt;}
.y86{bottom:651.492933pt;}
.y58{bottom:665.092800pt;}
.y45{bottom:665.092933pt;}
.y44{bottom:680.687600pt;}
.y57{bottom:680.692933pt;}
.y71{bottom:680.693067pt;}
.y5{bottom:691.253200pt;}
.y43{bottom:696.292933pt;}
.y70{bottom:696.293067pt;}
.y42{bottom:711.892933pt;}
.y6f{bottom:711.893067pt;}
.y56{bottom:727.492800pt;}
.y41{bottom:727.492933pt;}
.y6e{bottom:727.493067pt;}
.y55{bottom:743.092800pt;}
.y40{bottom:743.092933pt;}
.y4{bottom:755.253200pt;}
.y3f{bottom:758.692933pt;}
.y3e{bottom:774.292933pt;}
.y3d{bottom:789.892933pt;}
.y54{bottom:805.492800pt;}
.y3c{bottom:805.492933pt;}
.y3{bottom:819.253200pt;}
.y53{bottom:821.092800pt;}
.y3b{bottom:821.092933pt;}
.y5f{bottom:825.354267pt;}
.y3a{bottom:836.692933pt;}
.y39{bottom:852.292933pt;}
.y52{bottom:867.887467pt;}
.y5e{bottom:867.892933pt;}
.y51{bottom:883.492800pt;}
.y6d{bottom:883.492933pt;}
.y50{bottom:899.092800pt;}
.y6c{bottom:899.092933pt;}
.y1{bottom:1026.141733pt;}
.hc{height:22.117333pt;}
.h10{height:31.573333pt;}
.hf{height:32.170667pt;}
.h6{height:36.192000pt;}
.hb{height:37.040000pt;}
.h8{height:40.615092pt;}
.hd{height:40.636959pt;}
.h3{height:41.905153pt;}
.ha{height:44.896000pt;}
.h9{height:45.435733pt;}
.he{height:51.856000pt;}
.h2{height:54.325333pt;}
.h5{height:55.440000pt;}
.h7{height:207.634042pt;}
.h4{height:221.536865pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:60.472400pt;}
.x19{left:68.031467pt;}
.x11{left:71.715600pt;}
.x3{left:75.593147pt;}
.x2{left:117.858667pt;}
.x12{left:142.063100pt;}
.x4{left:290.267733pt;}
.x5{left:305.385733pt;}
.xe{left:319.011733pt;}
.xa{left:323.489067pt;}
.x9{left:327.721067pt;}
.xb{left:331.539067pt;}
.xc{left:335.479733pt;}
.xd{left:336.384400pt;}
.xf{left:359.292400pt;}
.x6{left:498.762267pt;}
.x13{left:499.653600pt;}
.x7{left:520.062933pt;}
.x8{left:535.183680pt;}
.x17{left:576.077067pt;}
.x18{left:577.993733pt;}
.x15{left:582.225733pt;}
.x16{left:590.091733pt;}
.x10{left:626.062933pt;}
.x14{left:728.502800pt;}
}




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