
    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_ff9e10ea7d033b53b2567205.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.980000;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_3e5e4673508fa2aaed82a466.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.085000;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_4eee259a919519d42c7a95f8.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_6d358d97f54dc5981d8f3b33.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_8bf6fbf005f4a77bfedd7378.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.083000;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_7edd27847fc36cb3b922f871.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_085fd517bb946d00ef83e9f8.woff2')format("woff");}.ff7{font-family:ff7;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;}
.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);}
.mc{transform:matrix(0.233060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233060,0.000000,0.000000,0.250000,0,0);}
.m9c{transform:matrix(0.233136,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233136,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233136,0.000000,0.000000,0.250000,0,0);}
.m62{transform:matrix(0.233304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233304,0.000000,0.000000,0.250000,0,0);}
.m5c{transform:matrix(0.233602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233602,0.000000,0.000000,0.250000,0,0);}
.m43{transform:matrix(0.233707,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233707,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233707,0.000000,0.000000,0.250000,0,0);}
.m38{transform:matrix(0.233798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233798,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.233801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233801,0.000000,0.000000,0.250000,0,0);}
.m36{transform:matrix(0.234415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234415,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.234705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234705,0.000000,0.000000,0.250000,0,0);}
.m68{transform:matrix(0.234881,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234881,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234881,0.000000,0.000000,0.250000,0,0);}
.m6f{transform:matrix(0.234955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234955,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.235088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235088,0.000000,0.000000,0.250000,0,0);}
.m80{transform:matrix(0.235338,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235338,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235338,0.000000,0.000000,0.250000,0,0);}
.m79{transform:matrix(0.235614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235614,0.000000,0.000000,0.250000,0,0);}
.m37{transform:matrix(0.235634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235634,0.000000,0.000000,0.250000,0,0);}
.m55{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m5b{transform:matrix(0.236159,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236159,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236159,0.000000,0.000000,0.250000,0,0);}
.m71{transform:matrix(0.236222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236222,0.000000,0.000000,0.250000,0,0);}
.m8f{transform:matrix(0.236770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236770,0.000000,0.000000,0.250000,0,0);}
.m41{transform:matrix(0.236963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236963,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.237028,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237028,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237028,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.237116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237116,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.237187,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237187,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237187,0.000000,0.000000,0.250000,0,0);}
.m53{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m56{transform:matrix(0.237682,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237682,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237682,0.000000,0.000000,0.250000,0,0);}
.m30{transform:matrix(0.237693,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237693,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237693,0.000000,0.000000,0.250000,0,0);}
.m90{transform:matrix(0.237767,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237767,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237767,0.000000,0.000000,0.250000,0,0);}
.m4e{transform:matrix(0.238210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238210,0.000000,0.000000,0.250000,0,0);}
.m92{transform:matrix(0.238276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238276,0.000000,0.000000,0.250000,0,0);}
.m48{transform:matrix(0.238744,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238744,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238744,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.238841,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238841,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238841,0.000000,0.000000,0.250000,0,0);}
.m9b{transform:matrix(0.238864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238864,0.000000,0.000000,0.250000,0,0);}
.m69{transform:matrix(0.239170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239170,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.239236,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239236,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239236,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.239412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239412,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.239520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239520,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.239702,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239702,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239702,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.239710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239710,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.239878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239878,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.239901,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239901,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239901,0.000000,0.000000,0.250000,0,0);}
.m6e{transform:matrix(0.239940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239940,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.240281,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240281,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240281,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.240381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240381,0.000000,0.000000,0.250000,0,0);}
.m72{transform:matrix(0.240781,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240781,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240781,0.000000,0.000000,0.250000,0,0);}
.m7e{transform:matrix(0.241009,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241009,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241009,0.000000,0.000000,0.250000,0,0);}
.m52{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);}
.m89{transform:matrix(0.241156,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241156,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241156,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.241199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241199,0.000000,0.000000,0.250000,0,0);}
.m39{transform:matrix(0.241418,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241418,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241418,0.000000,0.000000,0.250000,0,0);}
.m7f{transform:matrix(0.241722,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241722,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241722,0.000000,0.000000,0.250000,0,0);}
.m4d{transform:matrix(0.241812,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241812,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241812,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.241972,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241972,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241972,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.242375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242375,0.000000,0.000000,0.250000,0,0);}
.m82{transform:matrix(0.242474,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242474,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242474,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.242526,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242526,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242526,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.242540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242540,0.000000,0.000000,0.250000,0,0);}
.m8d{transform:matrix(0.242560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242560,0.000000,0.000000,0.250000,0,0);}
.m83{transform:matrix(0.242597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242597,0.000000,0.000000,0.250000,0,0);}
.m6a{transform:matrix(0.242628,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242628,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242628,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.242699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242699,0.000000,0.000000,0.250000,0,0);}
.m5e{transform:matrix(0.242753,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242753,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242753,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.242997,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242997,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242997,0.000000,0.000000,0.250000,0,0);}
.m84{transform:matrix(0.243210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243210,0.000000,0.000000,0.250000,0,0);}
.m3d{transform:matrix(0.243767,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243767,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243767,0.000000,0.000000,0.250000,0,0);}
.m46{transform:matrix(0.243946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243946,0.000000,0.000000,0.250000,0,0);}
.m45{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);}
.m8e{transform:matrix(0.244236,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244236,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244236,0.000000,0.000000,0.250000,0,0);}
.m32{transform:matrix(0.244472,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244472,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244472,0.000000,0.000000,0.250000,0,0);}
.m5a{transform:matrix(0.244653,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244653,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244653,0.000000,0.000000,0.250000,0,0);}
.m35{transform:matrix(0.244770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244770,0.000000,0.000000,0.250000,0,0);}
.m7d{transform:matrix(0.244849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244849,0.000000,0.000000,0.250000,0,0);}
.m31{transform:matrix(0.244864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244864,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.244903,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244903,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244903,0.000000,0.000000,0.250000,0,0);}
.m49{transform:matrix(0.244915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244915,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);}
.m44{transform:matrix(0.245009,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245009,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245009,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.245088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245088,0.000000,0.000000,0.250000,0,0);}
.m87{transform:matrix(0.245099,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245099,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245099,0.000000,0.000000,0.250000,0,0);}
.m66{transform:matrix(0.245276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245276,0.000000,0.000000,0.250000,0,0);}
.m6b{transform:matrix(0.245304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245304,0.000000,0.000000,0.250000,0,0);}
.m4f{transform:matrix(0.245344,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245344,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245344,0.000000,0.000000,0.250000,0,0);}
.m81{transform:matrix(0.245369,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245369,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245369,0.000000,0.000000,0.250000,0,0);}
.m42{transform:matrix(0.245608,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245608,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245608,0.000000,0.000000,0.250000,0,0);}
.m33{transform:matrix(0.245986,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245986,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245986,0.000000,0.000000,0.250000,0,0);}
.m7a{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m50{transform:matrix(0.246003,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246003,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246003,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.246082,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246082,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246082,0.000000,0.000000,0.250000,0,0);}
.m40{transform:matrix(0.246091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246091,0.000000,0.000000,0.250000,0,0);}
.m91{transform:matrix(0.246097,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246097,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246097,0.000000,0.000000,0.250000,0,0);}
.m63{transform:matrix(0.246099,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246099,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246099,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.246219,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246219,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246219,0.000000,0.000000,0.250000,0,0);}
.m60{transform:matrix(0.246557,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246557,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246557,0.000000,0.000000,0.250000,0,0);}
.m77{transform:matrix(0.246722,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246722,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246722,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.246869,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246869,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246869,0.000000,0.000000,0.250000,0,0);}
.m96{transform:matrix(0.246881,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246881,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246881,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.247151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247151,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.247216,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247216,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247216,0.000000,0.000000,0.250000,0,0);}
.m57{transform:matrix(0.247381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247381,0.000000,0.000000,0.250000,0,0);}
.m7b{transform:matrix(0.247443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247443,0.000000,0.000000,0.250000,0,0);}
.m51{transform:matrix(0.247455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247455,0.000000,0.000000,0.250000,0,0);}
.m8c{transform:matrix(0.247585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247585,0.000000,0.000000,0.250000,0,0);}
.m7c{transform:matrix(0.247778,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247778,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247778,0.000000,0.000000,0.250000,0,0);}
.m4b{transform:matrix(0.247858,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247858,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247858,0.000000,0.000000,0.250000,0,0);}
.m6c{transform:matrix(0.248187,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248187,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248187,0.000000,0.000000,0.250000,0,0);}
.m64{transform:matrix(0.248412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248412,0.000000,0.000000,0.250000,0,0);}
.m4a{transform:matrix(0.248847,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248847,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248847,0.000000,0.000000,0.250000,0,0);}
.m88{transform:matrix(0.248969,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248969,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248969,0.000000,0.000000,0.250000,0,0);}
.m61{transform:matrix(0.249088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249088,0.000000,0.000000,0.250000,0,0);}
.m8b{transform:matrix(0.249264,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249264,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249264,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.249426,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249426,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249426,0.000000,0.000000,0.250000,0,0);}
.m99{transform:matrix(0.249690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249690,0.000000,0.000000,0.250000,0,0);}
.m9a{transform:matrix(0.249693,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249693,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249693,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.249830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249830,0.000000,0.000000,0.250000,0,0);}
.m5d{transform:matrix(0.249858,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249858,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249858,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);}
.m85{transform:matrix(0.250026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250026,0.000000,0.000000,0.250000,0,0);}
.m3c{transform:matrix(0.250080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250080,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.250094,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250094,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250094,0.000000,0.000000,0.250000,0,0);}
.m47{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.250639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250639,0.000000,0.000000,0.250000,0,0);}
.m3e{transform:matrix(0.250733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250733,0.000000,0.000000,0.250000,0,0);}
.m3b{transform:matrix(0.250767,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250767,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250767,0.000000,0.000000,0.250000,0,0);}
.m70{transform:matrix(0.250949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250949,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.251003,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251003,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251003,0.000000,0.000000,0.250000,0,0);}
.m58{transform:matrix(0.251196,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251196,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251196,0.000000,0.000000,0.250000,0,0);}
.m97{transform:matrix(0.251233,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251233,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251233,0.000000,0.000000,0.250000,0,0);}
.m3a{transform:matrix(0.251449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251449,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.251761,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251761,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251761,0.000000,0.000000,0.250000,0,0);}
.m74{transform:matrix(0.251770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251770,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.251790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251790,0.000000,0.000000,0.250000,0,0);}
.m8a{transform:matrix(0.251804,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251804,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251804,0.000000,0.000000,0.250000,0,0);}
.m75{transform:matrix(0.251912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251912,0.000000,0.000000,0.250000,0,0);}
.m5f{transform:matrix(0.251940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251940,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.251983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251983,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.252276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252276,0.000000,0.000000,0.250000,0,0);}
.m78{transform:matrix(0.252511,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252511,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252511,0.000000,0.000000,0.250000,0,0);}
.m54{transform:matrix(0.252548,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252548,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252548,0.000000,0.000000,0.250000,0,0);}
.m3f{transform:matrix(0.252889,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252889,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252889,0.000000,0.000000,0.250000,0,0);}
.m67{transform:matrix(0.253065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253065,0.000000,0.000000,0.250000,0,0);}
.m6d{transform:matrix(0.253949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253949,0.000000,0.000000,0.250000,0,0);}
.m93{transform:matrix(0.254253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254253,0.000000,0.000000,0.250000,0,0);}
.m86{transform:matrix(0.254273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254273,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.254469,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254469,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254469,0.000000,0.000000,0.250000,0,0);}
.m59{transform:matrix(0.254645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254645,0.000000,0.000000,0.250000,0,0);}
.m94{transform:matrix(0.255310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255310,0.000000,0.000000,0.250000,0,0);}
.m73{transform:matrix(0.255642,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255642,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255642,0.000000,0.000000,0.250000,0,0);}
.m98{transform:matrix(0.255673,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255673,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255673,0.000000,0.000000,0.250000,0,0);}
.m34{transform:matrix(0.256023,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256023,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256023,0.000000,0.000000,0.250000,0,0);}
.m95{transform:matrix(0.256068,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256068,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256068,0.000000,0.000000,0.250000,0,0);}
.m76{transform:matrix(0.256122,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256122,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256122,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.256196,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256196,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256196,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.256472,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256472,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256472,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.256560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256560,0.000000,0.000000,0.250000,0,0);}
.m65{transform:matrix(0.256784,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256784,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256784,0.000000,0.000000,0.250000,0,0);}
.m4c{transform:matrix(0.257199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257199,0.000000,0.000000,0.250000,0,0);}
.m3{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;}
.lse{letter-spacing:-1.836000px;}
.lsa{letter-spacing:-1.056000px;}
.lsb{letter-spacing:-0.864000px;}
.ls12{letter-spacing:-0.540000px;}
.lsc{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.240000px;}
.ls7{letter-spacing:0.264000px;}
.lsf{letter-spacing:0.528000px;}
.ls8{letter-spacing:0.552000px;}
.ls6{letter-spacing:0.792000px;}
.ls2{letter-spacing:0.810000px;}
.lsd{letter-spacing:0.864000px;}
.ls10{letter-spacing:0.990000px;}
.ls4{letter-spacing:1.056000px;}
.ls5{letter-spacing:1.320000px;}
.ls3{letter-spacing:1.620000px;}
.ls0{letter-spacing:21.930000px;}
.ls1{letter-spacing:22.197551px;}
.ls11{letter-spacing:22.198163px;}
.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;}
}
.ws7{word-spacing:-16.947000px;}
.ws0{word-spacing:-16.698000px;}
.ws6{word-spacing:-16.077000px;}
.ws5{word-spacing:-15.400800px;}
.ws3{word-spacing:-13.446000px;}
.ws8{word-spacing:-11.472000px;}
.ws2d{word-spacing:-10.260000px;}
.ws2{word-spacing:-10.200000px;}
.ws1{word-spacing:-9.936000px;}
.ws4{word-spacing:-8.364000px;}
.ws2e{word-spacing:-1.656000px;}
.wsc{word-spacing:-1.636800px;}
.ws13{word-spacing:-1.584000px;}
.ws1d{word-spacing:-1.531200px;}
.ws21{word-spacing:-1.440000px;}
.wsf{word-spacing:-1.425600px;}
.ws2c{word-spacing:-1.386000px;}
.ws16{word-spacing:-1.372800px;}
.ws2b{word-spacing:-1.350000px;}
.ws1c{word-spacing:-1.267200px;}
.ws3a{word-spacing:-1.214400px;}
.ws1b{word-spacing:-1.161600px;}
.ws22{word-spacing:-0.960000px;}
.ws11{word-spacing:-0.950400px;}
.ws1a{word-spacing:-0.897600px;}
.ws3d{word-spacing:-0.844800px;}
.ws1e{word-spacing:-0.792000px;}
.ws2f{word-spacing:-0.739200px;}
.ws39{word-spacing:-0.580800px;}
.ws26{word-spacing:-0.475200px;}
.ws18{word-spacing:-0.422400px;}
.ws20{word-spacing:-0.316800px;}
.ws9{word-spacing:-0.288000px;}
.ws1f{word-spacing:-0.211200px;}
.wsa{word-spacing:0.000000px;}
.ws32{word-spacing:0.105600px;}
.ws25{word-spacing:0.211200px;}
.ws33{word-spacing:0.264000px;}
.ws27{word-spacing:0.316800px;}
.ws10{word-spacing:0.369600px;}
.ws17{word-spacing:0.422400px;}
.ws23{word-spacing:0.528000px;}
.ws34{word-spacing:0.739200px;}
.ws28{word-spacing:0.792000px;}
.ws35{word-spacing:0.897600px;}
.ws37{word-spacing:1.372800px;}
.ws38{word-spacing:1.478400px;}
.ws12{word-spacing:1.531200px;}
.ws3c{word-spacing:1.584000px;}
.ws15{word-spacing:1.636800px;}
.ws3b{word-spacing:1.742400px;}
.ws36{word-spacing:1.953600px;}
.ws30{word-spacing:2.323200px;}
.ws31{word-spacing:2.481600px;}
.ws19{word-spacing:2.534400px;}
.wse{word-spacing:2.587200px;}
.ws14{word-spacing:2.640000px;}
.ws24{word-spacing:3.273600px;}
.wsb{word-spacing:5.227200px;}
.ws2a{word-spacing:7.075200px;}
.wsd{word-spacing:13.094400px;}
.ws29{word-spacing:13.939200px;}
._4{margin-left:-14.484000px;}
._5{margin-left:-11.852400px;}
._7{margin-left:-9.404400px;}
._6{margin-left:-6.528000px;}
._9{margin-left:-4.821171px;}
._2{margin-left:-3.317657px;}
._0{margin-left:-1.630200px;}
._1{width:1.084286px;}
._8{width:2.250429px;}
._3{width:3.869553px;}
.fc2{color:rgb(196,22,28);}
.fc1{color:rgb(147,149,152);}
.fc0{color:rgb(0,0,0);}
.fsc{font-size:33.000000px;}
.fsb{font-size:45.000000px;}
.fsa{font-size:48.000000px;}
.fs2{font-size:51.000000px;}
.fs6{font-size:52.800000px;}
.fs1{font-size:54.000000px;}
.fs7{font-size:55.200000px;}
.fs9{font-size:63.000000px;}
.fs0{font-size:66.000000px;}
.fs8{font-size:69.000000px;}
.fs4{font-size:81.000000px;}
.fs3{font-size:204.000000px;}
.fs5{font-size:269.926200px;}
.y0{bottom:0.000000px;}
.y2{bottom:29.763750px;}
.y30{bottom:63.779550px;}
.y62{bottom:78.480450px;}
.y2f{bottom:81.329550px;}
.y45{bottom:84.741300px;}
.y61{bottom:94.680450px;}
.y49{bottom:98.873550px;}
.y2e{bottom:98.879550px;}
.y60{bottom:110.880450px;}
.y2d{bottom:116.429550px;}
.y44{bottom:117.141300px;}
.y5f{bottom:127.080450px;}
.y43{bottom:133.341300px;}
.y2c{bottom:133.979550px;}
.y5e{bottom:143.280450px;}
.y42{bottom:149.541300px;}
.y2b{bottom:151.529550px;}
.y33{bottom:156.320100px;}
.y41{bottom:165.741300px;}
.y5d{bottom:167.984400px;}
.y48{bottom:169.073550px;}
.y2a{bottom:169.079550px;}
.y32{bottom:173.873700px;}
.y40{bottom:181.941300px;}
.y29{bottom:186.629550px;}
.y3f{bottom:198.141300px;}
.y28{bottom:204.179550px;}
.y3e{bottom:214.341300px;}
.y27{bottom:221.729550px;}
.y3d{bottom:230.541300px;}
.y26{bottom:239.279550px;}
.y3c{bottom:246.741300px;}
.y25{bottom:256.829550px;}
.y3b{bottom:262.941300px;}
.y24{bottom:274.379550px;}
.y3a{bottom:287.645250px;}
.y59{bottom:291.923550px;}
.y23{bottom:291.929550px;}
.y5b{bottom:309.473550px;}
.y22{bottom:309.479550px;}
.y21{bottom:327.029550px;}
.y20{bottom:344.579550px;}
.y1f{bottom:362.129550px;}
.y1e{bottom:379.679550px;}
.y1d{bottom:397.229550px;}
.y39{bottom:409.859550px;}
.y47{bottom:414.779550px;}
.y1c{bottom:419.573700px;}
.y46{bottom:432.329550px;}
.y38{bottom:432.353550px;}
.y18{bottom:449.879550px;}
.y37{bottom:454.847550px;}
.y17{bottom:467.429550px;}
.y36{bottom:477.341550px;}
.y16{bottom:484.979550px;}
.y58{bottom:489.769950px;}
.y35{bottom:499.835550px;}
.y15{bottom:502.529550px;}
.y57{bottom:507.323550px;}
.y14{bottom:520.079550px;}
.y34{bottom:522.329550px;}
.y13{bottom:537.629550px;}
.y12{bottom:555.179550px;}
.y11{bottom:572.723550px;}
.y1b{bottom:572.729550px;}
.y10{bottom:590.279550px;}
.y1a{bottom:607.823550px;}
.yf{bottom:607.829550px;}
.y5a{bottom:612.623550px;}
.ye{bottom:625.379550px;}
.yd{bottom:642.929550px;}
.ya{bottom:660.479550px;}
.y56{bottom:678.023550px;}
.yc{bottom:678.029550px;}
.y4d{bottom:685.883250px;}
.y31{bottom:695.573550px;}
.yb{bottom:695.579550px;}
.y4c{bottom:700.879500px;}
.y19{bottom:713.129550px;}
.y5c{bottom:713.322000px;}
.y4b{bottom:715.875750px;}
.y9{bottom:730.679550px;}
.y4a{bottom:730.872000px;}
.y55{bottom:748.229550px;}
.y4e{bottom:752.481600px;}
.y54{bottom:765.779550px;}
.y53{bottom:783.329550px;}
.y52{bottom:800.879550px;}
.y8{bottom:808.053900px;}
.y51{bottom:818.429700px;}
.y7{bottom:832.354050px;}
.y50{bottom:835.979550px;}
.y6{bottom:856.654050px;}
.y4f{bottom:860.219100px;}
.y5{bottom:880.954050px;}
.y68{bottom:904.484550px;}
.y67{bottom:926.978550px;}
.y4{bottom:939.269700px;}
.y66{bottom:949.472550px;}
.y65{bottom:971.966550px;}
.y3{bottom:990.269700px;}
.y64{bottom:994.460550px;}
.y63{bottom:1016.954550px;}
.y1{bottom:1154.409450px;}
.h10{height:28.974000px;}
.hf{height:34.875000px;}
.he{height:35.520000px;}
.hd{height:42.144000px;}
.ha{height:42.780000px;}
.h8{height:43.612800px;}
.h9{height:43.636800px;}
.h3{height:45.135000px;}
.h6{height:47.412000px;}
.hc{height:48.825000px;}
.hb{height:50.508000px;}
.h2{height:51.150000px;}
.h5{height:62.370000px;}
.h4{height:168.504000px;}
.h7{height:222.959041px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:68.031450px;}
.xc{left:76.535400px;}
.x3{left:85.039350px;}
.xf{left:89.226000px;}
.x10{left:92.881125px;}
.x17{left:95.011050px;}
.xe{left:100.469250px;}
.x19{left:103.171950px;}
.x2{left:114.613800px;}
.x1a{left:116.799450px;}
.x18{left:118.386450px;}
.x11{left:132.061500px;}
.x1b{left:134.170200px;}
.x12{left:282.085500px;}
.xd{left:302.587500px;}
.x4{left:326.551200px;}
.x13{left:343.558950px;}
.x15{left:436.918650px;}
.x5{left:585.070800px;}
.x6{left:602.081640px;}
.x8{left:623.884350px;}
.xa{left:645.671100px;}
.x9{left:650.328600px;}
.x16{left:652.297800px;}
.xb{left:661.006350px;}
.x7{left:685.035600px;}
.x14{left:819.502950px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:2.674667pt;}
.lse{letter-spacing:-1.632000pt;}
.lsa{letter-spacing:-0.938667pt;}
.lsb{letter-spacing:-0.768000pt;}
.ls12{letter-spacing:-0.480000pt;}
.lsc{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.213333pt;}
.ls7{letter-spacing:0.234667pt;}
.lsf{letter-spacing:0.469333pt;}
.ls8{letter-spacing:0.490667pt;}
.ls6{letter-spacing:0.704000pt;}
.ls2{letter-spacing:0.720000pt;}
.lsd{letter-spacing:0.768000pt;}
.ls10{letter-spacing:0.880000pt;}
.ls4{letter-spacing:0.938667pt;}
.ls5{letter-spacing:1.173333pt;}
.ls3{letter-spacing:1.440000pt;}
.ls0{letter-spacing:19.493333pt;}
.ls1{letter-spacing:19.731156pt;}
.ls11{letter-spacing:19.731701pt;}
.ws7{word-spacing:-15.064000pt;}
.ws0{word-spacing:-14.842667pt;}
.ws6{word-spacing:-14.290667pt;}
.ws5{word-spacing:-13.689600pt;}
.ws3{word-spacing:-11.952000pt;}
.ws8{word-spacing:-10.197333pt;}
.ws2d{word-spacing:-9.120000pt;}
.ws2{word-spacing:-9.066667pt;}
.ws1{word-spacing:-8.832000pt;}
.ws4{word-spacing:-7.434667pt;}
.ws2e{word-spacing:-1.472000pt;}
.wsc{word-spacing:-1.454933pt;}
.ws13{word-spacing:-1.408000pt;}
.ws1d{word-spacing:-1.361067pt;}
.ws21{word-spacing:-1.280000pt;}
.wsf{word-spacing:-1.267200pt;}
.ws2c{word-spacing:-1.232000pt;}
.ws16{word-spacing:-1.220267pt;}
.ws2b{word-spacing:-1.200000pt;}
.ws1c{word-spacing:-1.126400pt;}
.ws3a{word-spacing:-1.079467pt;}
.ws1b{word-spacing:-1.032533pt;}
.ws22{word-spacing:-0.853333pt;}
.ws11{word-spacing:-0.844800pt;}
.ws1a{word-spacing:-0.797867pt;}
.ws3d{word-spacing:-0.750933pt;}
.ws1e{word-spacing:-0.704000pt;}
.ws2f{word-spacing:-0.657067pt;}
.ws39{word-spacing:-0.516267pt;}
.ws26{word-spacing:-0.422400pt;}
.ws18{word-spacing:-0.375467pt;}
.ws20{word-spacing:-0.281600pt;}
.ws9{word-spacing:-0.256000pt;}
.ws1f{word-spacing:-0.187733pt;}
.wsa{word-spacing:0.000000pt;}
.ws32{word-spacing:0.093867pt;}
.ws25{word-spacing:0.187733pt;}
.ws33{word-spacing:0.234667pt;}
.ws27{word-spacing:0.281600pt;}
.ws10{word-spacing:0.328533pt;}
.ws17{word-spacing:0.375467pt;}
.ws23{word-spacing:0.469333pt;}
.ws34{word-spacing:0.657067pt;}
.ws28{word-spacing:0.704000pt;}
.ws35{word-spacing:0.797867pt;}
.ws37{word-spacing:1.220267pt;}
.ws38{word-spacing:1.314133pt;}
.ws12{word-spacing:1.361067pt;}
.ws3c{word-spacing:1.408000pt;}
.ws15{word-spacing:1.454933pt;}
.ws3b{word-spacing:1.548800pt;}
.ws36{word-spacing:1.736533pt;}
.ws30{word-spacing:2.065067pt;}
.ws31{word-spacing:2.205867pt;}
.ws19{word-spacing:2.252800pt;}
.wse{word-spacing:2.299733pt;}
.ws14{word-spacing:2.346667pt;}
.ws24{word-spacing:2.909867pt;}
.wsb{word-spacing:4.646400pt;}
.ws2a{word-spacing:6.289067pt;}
.wsd{word-spacing:11.639467pt;}
.ws29{word-spacing:12.390400pt;}
._4{margin-left:-12.874667pt;}
._5{margin-left:-10.535467pt;}
._7{margin-left:-8.359467pt;}
._6{margin-left:-5.802667pt;}
._9{margin-left:-4.285486pt;}
._2{margin-left:-2.949029pt;}
._0{margin-left:-1.449067pt;}
._1{width:0.963810pt;}
._8{width:2.000381pt;}
._3{width:3.439603pt;}
.fsc{font-size:29.333333pt;}
.fsb{font-size:40.000000pt;}
.fsa{font-size:42.666667pt;}
.fs2{font-size:45.333333pt;}
.fs6{font-size:46.933333pt;}
.fs1{font-size:48.000000pt;}
.fs7{font-size:49.066667pt;}
.fs9{font-size:56.000000pt;}
.fs0{font-size:58.666667pt;}
.fs8{font-size:61.333333pt;}
.fs4{font-size:72.000000pt;}
.fs3{font-size:181.333333pt;}
.fs5{font-size:239.934400pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:26.456667pt;}
.y30{bottom:56.692933pt;}
.y62{bottom:69.760400pt;}
.y2f{bottom:72.292933pt;}
.y45{bottom:75.325600pt;}
.y61{bottom:84.160400pt;}
.y49{bottom:87.887600pt;}
.y2e{bottom:87.892933pt;}
.y60{bottom:98.560400pt;}
.y2d{bottom:103.492933pt;}
.y44{bottom:104.125600pt;}
.y5f{bottom:112.960400pt;}
.y43{bottom:118.525600pt;}
.y2c{bottom:119.092933pt;}
.y5e{bottom:127.360400pt;}
.y42{bottom:132.925600pt;}
.y2b{bottom:134.692933pt;}
.y33{bottom:138.951200pt;}
.y41{bottom:147.325600pt;}
.y5d{bottom:149.319467pt;}
.y48{bottom:150.287600pt;}
.y2a{bottom:150.292933pt;}
.y32{bottom:154.554400pt;}
.y40{bottom:161.725600pt;}
.y29{bottom:165.892933pt;}
.y3f{bottom:176.125600pt;}
.y28{bottom:181.492933pt;}
.y3e{bottom:190.525600pt;}
.y27{bottom:197.092933pt;}
.y3d{bottom:204.925600pt;}
.y26{bottom:212.692933pt;}
.y3c{bottom:219.325600pt;}
.y25{bottom:228.292933pt;}
.y3b{bottom:233.725600pt;}
.y24{bottom:243.892933pt;}
.y3a{bottom:255.684667pt;}
.y59{bottom:259.487600pt;}
.y23{bottom:259.492933pt;}
.y5b{bottom:275.087600pt;}
.y22{bottom:275.092933pt;}
.y21{bottom:290.692933pt;}
.y20{bottom:306.292933pt;}
.y1f{bottom:321.892933pt;}
.y1e{bottom:337.492933pt;}
.y1d{bottom:353.092933pt;}
.y39{bottom:364.319600pt;}
.y47{bottom:368.692933pt;}
.y1c{bottom:372.954400pt;}
.y46{bottom:384.292933pt;}
.y38{bottom:384.314267pt;}
.y18{bottom:399.892933pt;}
.y37{bottom:404.308933pt;}
.y17{bottom:415.492933pt;}
.y36{bottom:424.303600pt;}
.y16{bottom:431.092933pt;}
.y58{bottom:435.351067pt;}
.y35{bottom:444.298267pt;}
.y15{bottom:446.692933pt;}
.y57{bottom:450.954267pt;}
.y14{bottom:462.292933pt;}
.y34{bottom:464.292933pt;}
.y13{bottom:477.892933pt;}
.y12{bottom:493.492933pt;}
.y11{bottom:509.087600pt;}
.y1b{bottom:509.092933pt;}
.y10{bottom:524.692933pt;}
.y1a{bottom:540.287600pt;}
.yf{bottom:540.292933pt;}
.y5a{bottom:544.554267pt;}
.ye{bottom:555.892933pt;}
.yd{bottom:571.492933pt;}
.ya{bottom:587.092933pt;}
.y56{bottom:602.687600pt;}
.yc{bottom:602.692933pt;}
.y4d{bottom:609.674000pt;}
.y31{bottom:618.287600pt;}
.yb{bottom:618.292933pt;}
.y4c{bottom:623.004000pt;}
.y19{bottom:633.892933pt;}
.y5c{bottom:634.064000pt;}
.y4b{bottom:636.334000pt;}
.y9{bottom:649.492933pt;}
.y4a{bottom:649.664000pt;}
.y55{bottom:665.092933pt;}
.y4e{bottom:668.872533pt;}
.y54{bottom:680.692933pt;}
.y53{bottom:696.292933pt;}
.y52{bottom:711.892933pt;}
.y8{bottom:718.270133pt;}
.y51{bottom:727.493067pt;}
.y7{bottom:739.870267pt;}
.y50{bottom:743.092933pt;}
.y6{bottom:761.470267pt;}
.y4f{bottom:764.639200pt;}
.y5{bottom:783.070267pt;}
.y68{bottom:803.986267pt;}
.y67{bottom:823.980933pt;}
.y4{bottom:834.906400pt;}
.y66{bottom:843.975600pt;}
.y65{bottom:863.970267pt;}
.y3{bottom:880.239733pt;}
.y64{bottom:883.964933pt;}
.y63{bottom:903.959600pt;}
.y1{bottom:1026.141733pt;}
.h10{height:25.754667pt;}
.hf{height:31.000000pt;}
.he{height:31.573333pt;}
.hd{height:37.461333pt;}
.ha{height:38.026667pt;}
.h8{height:38.766933pt;}
.h9{height:38.788267pt;}
.h3{height:40.120000pt;}
.h6{height:42.144000pt;}
.hc{height:43.400000pt;}
.hb{height:44.896000pt;}
.h2{height:45.466667pt;}
.h5{height:55.440000pt;}
.h4{height:149.781333pt;}
.h7{height:198.185814pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:60.472400pt;}
.xc{left:68.031467pt;}
.x3{left:75.590533pt;}
.xf{left:79.312000pt;}
.x10{left:82.561000pt;}
.x17{left:84.454267pt;}
.xe{left:89.306000pt;}
.x19{left:91.708400pt;}
.x2{left:101.878933pt;}
.x1a{left:103.821733pt;}
.x18{left:105.232400pt;}
.x11{left:117.388000pt;}
.x1b{left:119.262400pt;}
.x12{left:250.742667pt;}
.xd{left:268.966667pt;}
.x4{left:290.267733pt;}
.x13{left:305.385733pt;}
.x15{left:388.372133pt;}
.x5{left:520.062933pt;}
.x6{left:535.183680pt;}
.x8{left:554.563867pt;}
.xa{left:573.929867pt;}
.x9{left:578.069867pt;}
.x16{left:579.820267pt;}
.xb{left:587.561200pt;}
.x7{left:608.920533pt;}
.x14{left:728.447067pt;}
}




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