
    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_5a48dd871ff4277f58328784.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.726000;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_dd5267cef697ed471c42b9ac.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.733000;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_2ddec0ec7e0f18f64e012163.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.014000;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_602a5c759f7025fb5cc2a2d2.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.006348;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_cf22a88ac7538f3c8fc87f5a.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.769531;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_11fff893ab588f6855b479c8.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.005371;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_4084451591c7e009e39464b8.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.999000;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_8fddd1214fc33280fbe1782f.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.713867;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_768be0b5423ec2d85fffd74e.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.005371;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_da224fc272a05e99b457c471.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.854004;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;}
.m8{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);}
.m39{transform:matrix(0.245133,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245133,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245133,0.000000,0.000000,0.250000,0,0);}
.m42{transform:matrix(0.245520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245520,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.245542,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245542,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245542,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.245645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245645,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.245665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245665,0.000000,0.000000,0.250000,0,0);}
.m37{transform:matrix(0.245775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245775,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.245935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245935,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.246585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246585,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.247115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247115,0.000000,0.000000,0.250000,0,0);}
.m52{transform:matrix(0.247145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247145,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.247325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247325,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.247352,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247352,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247352,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.247398,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247398,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247398,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.247435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247435,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.247450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247450,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.247468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247468,0.000000,0.000000,0.250000,0,0);}
.m38{transform:matrix(0.247498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247498,0.000000,0.000000,0.250000,0,0);}
.m4b{transform:matrix(0.247513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247513,0.000000,0.000000,0.250000,0,0);}
.m3f{transform:matrix(0.247727,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247727,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247727,0.000000,0.000000,0.250000,0,0);}
.m48{transform:matrix(0.247985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247985,0.000000,0.000000,0.250000,0,0);}
.m3e{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m46{transform:matrix(0.248395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248395,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.248430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248430,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.248472,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248472,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248472,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.248485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248485,0.000000,0.000000,0.250000,0,0);}
.m45{transform:matrix(0.248788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248788,0.000000,0.000000,0.250000,0,0);}
.m4a{transform:matrix(0.248885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248885,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.249143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249143,0.000000,0.000000,0.250000,0,0);}
.m36{transform:matrix(0.249368,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249368,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249368,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.249390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249390,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.249545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249545,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.249547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249547,0.000000,0.000000,0.250000,0,0);}
.m3c{transform:matrix(0.249712,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249712,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249712,0.000000,0.000000,0.250000,0,0);}
.m34{transform:matrix(0.249835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249835,0.000000,0.000000,0.250000,0,0);}
.m54{transform:matrix(0.249983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249983,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);}
.m53{transform:matrix(0.250045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250045,0.000000,0.000000,0.250000,0,0);}
.m50{transform:matrix(0.250088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250088,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.250107,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250107,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250107,0.000000,0.000000,0.250000,0,0);}
.m30{transform:matrix(0.250172,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250172,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250172,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.250267,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250267,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250267,0.000000,0.000000,0.250000,0,0);}
.m3d{transform:matrix(0.250372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250372,0.000000,0.000000,0.250000,0,0);}
.m4f{transform:matrix(0.250395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250395,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.250585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250585,0.000000,0.000000,0.250000,0,0);}
.m43{transform:matrix(0.250665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250665,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.250782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250782,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.250792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250792,0.000000,0.000000,0.250000,0,0);}
.m56{transform:matrix(0.250832,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250832,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250832,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.250877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250877,0.000000,0.000000,0.250000,0,0);}
.m55{transform:matrix(0.251002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251002,0.000000,0.000000,0.250000,0,0);}
.m33{transform:matrix(0.251042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251042,0.000000,0.000000,0.250000,0,0);}
.m40{transform:matrix(0.251080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251080,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.251100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251100,0.000000,0.000000,0.250000,0,0);}
.m41{transform:matrix(0.251222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251222,0.000000,0.000000,0.250000,0,0);}
.m4e{transform:matrix(0.251355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251355,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.251368,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251368,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251368,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.251405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251405,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.251530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251530,0.000000,0.000000,0.250000,0,0);}
.m3a{transform:matrix(0.251710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251710,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.251740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251740,0.000000,0.000000,0.250000,0,0);}
.m51{transform:matrix(0.251833,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251833,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251833,0.000000,0.000000,0.250000,0,0);}
.m44{transform:matrix(0.251840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251840,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.251870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251870,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.252105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252105,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.252280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252280,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.252340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252340,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.252532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252532,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.252575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252575,0.000000,0.000000,0.250000,0,0);}
.m3b{transform:matrix(0.252697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252697,0.000000,0.000000,0.250000,0,0);}
.m49{transform:matrix(0.252775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252775,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.252805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252805,0.000000,0.000000,0.250000,0,0);}
.m31{transform:matrix(0.252940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252940,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.252972,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252972,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252972,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.253427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253427,0.000000,0.000000,0.250000,0,0);}
.m47{transform:matrix(0.253512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253512,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.253532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253532,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.253560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253560,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.254185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254185,0.000000,0.000000,0.250000,0,0);}
.m32{transform:matrix(0.254232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254232,0.000000,0.000000,0.250000,0,0);}
.m4c{transform:matrix(0.254400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254400,0.000000,0.000000,0.250000,0,0);}
.m4d{transform:matrix(0.254403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254403,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.254450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254450,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.254592,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254592,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254592,0.000000,0.000000,0.250000,0,0);}
.m35{transform:matrix(0.254620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254620,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:18.000000px;}
.ls4{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.660000px;}
.ls1b{letter-spacing:0.720000px;}
.lsc{letter-spacing:0.780000px;}
.lsd{letter-spacing:0.840000px;}
.ls1a{letter-spacing:0.900000px;}
.lsa{letter-spacing:0.960000px;}
.ls1c{letter-spacing:1.020000px;}
.ls3{letter-spacing:1.080000px;}
.lse{letter-spacing:1.140000px;}
.ls15{letter-spacing:1.186200px;}
.ls6{letter-spacing:1.200000px;}
.ls8{letter-spacing:1.260000px;}
.ls7{letter-spacing:1.320000px;}
.ls9{letter-spacing:1.380000px;}
.ls2{letter-spacing:1.440000px;}
.ls11{letter-spacing:1.500000px;}
.ls17{letter-spacing:1.560000px;}
.ls10{letter-spacing:1.620000px;}
.ls13{letter-spacing:1.680000px;}
.lsf{letter-spacing:1.740000px;}
.ls14{letter-spacing:1.800000px;}
.ls12{letter-spacing:2.040000px;}
.ls5{letter-spacing:2.100000px;}
.ls18{letter-spacing:2.160000px;}
.ls1d{letter-spacing:2.340000px;}
.ls1e{letter-spacing:2.460000px;}
.ls16{letter-spacing:2.640000px;}
.ls0{letter-spacing:2.880000px;}
.ls19{letter-spacing:3.180000px;}
.ls1{letter-spacing:3.840000px;}
.ls1f{letter-spacing:391.461600px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(82,76,169),0 0.015em rgb(82,76,169),0.015em 0 rgb(82,76,169),0 -0.015em  rgb(82,76,169);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(82,76,169);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws7{word-spacing:-58.080000px;}
.ws3{word-spacing:-29.040000px;}
.wsb{word-spacing:-17.280000px;}
.ws9{word-spacing:-17.220000px;}
.wsa{word-spacing:-17.100000px;}
.ws22{word-spacing:-16.980000px;}
.ws8{word-spacing:-16.920000px;}
.wsd{word-spacing:-16.800000px;}
.wsc{word-spacing:-16.380000px;}
.ws1e{word-spacing:-3.180000px;}
.ws0{word-spacing:-3.024000px;}
.ws1d{word-spacing:-2.640000px;}
.ws26{word-spacing:-2.460000px;}
.ws25{word-spacing:-2.340000px;}
.ws20{word-spacing:-2.160000px;}
.ws15{word-spacing:-2.100000px;}
.ws1a{word-spacing:-2.040000px;}
.ws1c{word-spacing:-1.800000px;}
.ws17{word-spacing:-1.740000px;}
.ws1b{word-spacing:-1.680000px;}
.ws18{word-spacing:-1.620000px;}
.ws1f{word-spacing:-1.560000px;}
.ws19{word-spacing:-1.500000px;}
.ws2{word-spacing:-1.440000px;}
.ws11{word-spacing:-1.380000px;}
.wsf{word-spacing:-1.320000px;}
.ws10{word-spacing:-1.260000px;}
.wse{word-spacing:-1.200000px;}
.ws16{word-spacing:-1.140000px;}
.ws4{word-spacing:-1.080000px;}
.ws6{word-spacing:-1.050000px;}
.ws24{word-spacing:-1.020000px;}
.ws1{word-spacing:-0.960000px;}
.ws21{word-spacing:-0.900000px;}
.ws14{word-spacing:-0.840000px;}
.ws13{word-spacing:-0.780000px;}
.ws23{word-spacing:-0.720000px;}
.ws12{word-spacing:-0.660000px;}
.ws5{word-spacing:0.000000px;}
._4{margin-left:-10.560000px;}
._2{margin-left:-9.072000px;}
._e{margin-left:-6.000000px;}
._1{margin-left:-4.032000px;}
._0{margin-left:-2.592000px;}
._3{margin-left:-1.152000px;}
._5{width:1.080000px;}
._7{width:2.084400px;}
._8{width:3.534000px;}
._9{width:4.614000px;}
._a{width:6.330000px;}
._d{width:7.692000px;}
._b{width:9.654000px;}
._c{width:12.804000px;}
._f{width:48.960000px;}
._6{width:174.690000px;}
.fc5{color:rgb(82,76,169);}
.fc4{color:rgb(62,62,58);}
.fc3{color:transparent;}
.fc2{color:rgb(159,171,193);}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(255,255,255);}
.fs4{font-size:48.000000px;}
.fs3{font-size:54.000000px;}
.fs7{font-size:60.000000px;}
.fsa{font-size:63.000000px;}
.fs9{font-size:72.000000px;}
.fs8{font-size:90.000000px;}
.fs2{font-size:120.000000px;}
.fs0{font-size:144.000000px;}
.fs1{font-size:192.000000px;}
.fs5{font-size:210.000000px;}
.fs6{font-size:240.000000px;}
.y0{bottom:0.000000px;}
.y49{bottom:22.913700px;}
.y94{bottom:97.795350px;}
.y48{bottom:115.795200px;}
.y93{bottom:115.795350px;}
.ya9{bottom:118.795200px;}
.y91{bottom:129.295350px;}
.y71{bottom:130.677000px;}
.y47{bottom:133.795200px;}
.y92{bottom:133.795350px;}
.y70{bottom:144.177000px;}
.y46{bottom:151.795200px;}
.ya8{bottom:160.795200px;}
.y90{bottom:160.795350px;}
.y45{bottom:169.795200px;}
.y29{bottom:169.795350px;}
.y6f{bottom:175.677000px;}
.y8f{bottom:178.795350px;}
.y44{bottom:187.795200px;}
.y28{bottom:187.795350px;}
.y6e{bottom:193.677000px;}
.y8e{bottom:196.795350px;}
.ya7{bottom:202.795200px;}
.y43{bottom:205.795200px;}
.y27{bottom:205.795350px;}
.y6d{bottom:211.677000px;}
.y8d{bottom:214.795350px;}
.y42{bottom:223.795200px;}
.y26{bottom:223.795350px;}
.y6b{bottom:225.177000px;}
.y8b{bottom:228.295350px;}
.y6c{bottom:229.677000px;}
.y8c{bottom:232.795350px;}
.y41{bottom:241.795200px;}
.y25{bottom:241.795350px;}
.ya6{bottom:244.795200px;}
.y6a{bottom:256.677000px;}
.y40{bottom:259.795200px;}
.y24{bottom:259.795350px;}
.ya5{bottom:265.795200px;}
.y3f{bottom:277.795200px;}
.y23{bottom:277.795350px;}
.ya4{bottom:286.795200px;}
.y69{bottom:292.677000px;}
.y3e{bottom:295.795200px;}
.y22{bottom:295.795350px;}
.y68{bottom:310.677000px;}
.y3d{bottom:313.795200px;}
.y21{bottom:313.795350px;}
.y67{bottom:328.677000px;}
.ya3{bottom:328.795200px;}
.y20{bottom:331.795350px;}
.y66{bottom:346.677000px;}
.y3c{bottom:349.795200px;}
.y1f{bottom:349.795350px;}
.y3b{bottom:367.795200px;}
.y8a{bottom:367.795350px;}
.ya2{bottom:370.795200px;}
.y3a{bottom:385.795200px;}
.y1e{bottom:385.795350px;}
.y65{bottom:391.677000px;}
.y39{bottom:403.795200px;}
.y1d{bottom:403.795350px;}
.ya1{bottom:412.795200px;}
.y38{bottom:421.795200px;}
.y89{bottom:421.795350px;}
.ya0{bottom:433.795200px;}
.y37{bottom:439.795200px;}
.y1c{bottom:439.795350px;}
.y9f{bottom:454.795200px;}
.y36{bottom:457.795200px;}
.y1b{bottom:457.795350px;}
.y64{bottom:463.677000px;}
.y35{bottom:475.795200px;}
.y88{bottom:475.795350px;}
.y63{bottom:481.677000px;}
.y34{bottom:493.795200px;}
.y1a{bottom:493.795350px;}
.y62{bottom:495.177000px;}
.y9e{bottom:496.795200px;}
.y33{bottom:511.795200px;}
.y9d{bottom:517.795200px;}
.y87{bottom:520.795350px;}
.y61{bottom:526.677000px;}
.y19{bottom:529.795350px;}
.y2f{bottom:547.795200px;}
.y18{bottom:547.795350px;}
.y9c{bottom:559.795200px;}
.y60{bottom:562.677000px;}
.y32{bottom:565.795200px;}
.y17{bottom:565.795350px;}
.y5f{bottom:580.677000px;}
.y9b{bottom:580.795200px;}
.y2e{bottom:583.795200px;}
.y16{bottom:583.795350px;}
.y5e{bottom:598.677000px;}
.y31{bottom:601.795200px;}
.y15{bottom:601.795350px;}
.y30{bottom:619.795200px;}
.y14{bottom:619.795350px;}
.y86{bottom:633.295350px;}
.y2d{bottom:637.795200px;}
.y13{bottom:637.795350px;}
.y5d{bottom:643.677000px;}
.y9a{bottom:655.795350px;}
.y85{bottom:664.795350px;}
.y12{bottom:673.795350px;}
.y83{bottom:678.295350px;}
.y84{bottom:682.795350px;}
.y2c{bottom:691.795200px;}
.y11{bottom:691.795350px;}
.y10{bottom:709.795350px;}
.y5c{bottom:715.677000px;}
.yf{bottom:727.795350px;}
.y5b{bottom:733.677000px;}
.y2b{bottom:745.795200px;}
.ye{bottom:745.795350px;}
.y5a{bottom:751.677000px;}
.yd{bottom:763.795350px;}
.y58{bottom:765.177000px;}
.y59{bottom:769.677000px;}
.y81{bottom:777.295350px;}
.y82{bottom:781.795350px;}
.y57{bottom:796.677000px;}
.yc{bottom:799.795350px;}
.y80{bottom:808.795350px;}
.y56{bottom:814.677000px;}
.y99{bottom:817.795350px;}
.y54{bottom:828.177000px;}
.y55{bottom:832.677000px;}
.yb{bottom:835.795350px;}
.y7f{bottom:844.795350px;}
.ya{bottom:853.795350px;}
.y53{bottom:859.677000px;}
.y7e{bottom:862.795350px;}
.y9{bottom:871.795350px;}
.y51{bottom:873.177000px;}
.y52{bottom:877.677000px;}
.y7d{bottom:880.795350px;}
.y98{bottom:889.795350px;}
.y7c{bottom:898.795350px;}
.y50{bottom:904.677000px;}
.y8{bottom:907.795350px;}
.y7b{bottom:916.795350px;}
.y7{bottom:925.795350px;}
.y4f{bottom:940.677000px;}
.y7a{bottom:952.795350px;}
.y5{bottom:956.563500px;}
.y4e{bottom:958.677000px;}
.y6{bottom:961.795350px;}
.y79{bottom:970.795350px;}
.y4d{bottom:976.677000px;}
.y78{bottom:988.795350px;}
.y4c{bottom:994.677000px;}
.y4{bottom:1000.063500px;}
.y77{bottom:1006.795350px;}
.y76{bottom:1024.795350px;}
.y4b{bottom:1039.677000px;}
.y3{bottom:1045.063500px;}
.y75{bottom:1060.795350px;}
.y74{bottom:1078.795350px;}
.y97{bottom:1087.795350px;}
.y2{bottom:1090.063500px;}
.y73{bottom:1096.795350px;}
.y96{bottom:1105.795350px;}
.y95{bottom:1123.795350px;}
.y4a{bottom:1129.677000px;}
.y72{bottom:1141.795350px;}
.y1{bottom:1144.063500px;}
.y2a{bottom:1209.071100px;}
.h7{height:34.272000px;}
.h10{height:39.155273px;}
.h6{height:41.317383px;}
.h5{height:41.370117px;}
.ha{height:45.908203px;}
.hb{height:45.966797px;}
.hf{height:48.203613px;}
.h11{height:48.265137px;}
.hd{height:51.624000px;}
.he{height:64.248047px;}
.hc{height:64.530000px;}
.h4{height:86.040000px;}
.h2{height:102.528000px;}
.h3{height:137.472000px;}
.h8{height:150.360000px;}
.h9{height:172.080000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xb{left:21.259800px;}
.x7{left:82.676850px;}
.x6{left:84.998850px;}
.xf{left:101.744250px;}
.xc{left:103.039350px;}
.x3{left:113.517000px;}
.x4{left:119.395500px;}
.xd{left:129.047250px;}
.x2{left:180.259500px;}
.x1{left:217.721550px;}
.x8{left:283.529400px;}
.x12{left:334.488150px;}
.x13{left:360.000000px;}
.x5{left:365.211600px;}
.x10{left:432.152250px;}
.x9{left:457.777050px;}
.xa{left:459.434550px;}
.xe{left:851.973900px;}
.x11{left:854.793750px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.000000pt;}
.ls4{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.586667pt;}
.ls1b{letter-spacing:0.640000pt;}
.lsc{letter-spacing:0.693333pt;}
.lsd{letter-spacing:0.746667pt;}
.ls1a{letter-spacing:0.800000pt;}
.lsa{letter-spacing:0.853333pt;}
.ls1c{letter-spacing:0.906667pt;}
.ls3{letter-spacing:0.960000pt;}
.lse{letter-spacing:1.013333pt;}
.ls15{letter-spacing:1.054400pt;}
.ls6{letter-spacing:1.066667pt;}
.ls8{letter-spacing:1.120000pt;}
.ls7{letter-spacing:1.173333pt;}
.ls9{letter-spacing:1.226667pt;}
.ls2{letter-spacing:1.280000pt;}
.ls11{letter-spacing:1.333333pt;}
.ls17{letter-spacing:1.386667pt;}
.ls10{letter-spacing:1.440000pt;}
.ls13{letter-spacing:1.493333pt;}
.lsf{letter-spacing:1.546667pt;}
.ls14{letter-spacing:1.600000pt;}
.ls12{letter-spacing:1.813333pt;}
.ls5{letter-spacing:1.866667pt;}
.ls18{letter-spacing:1.920000pt;}
.ls1d{letter-spacing:2.080000pt;}
.ls1e{letter-spacing:2.186667pt;}
.ls16{letter-spacing:2.346667pt;}
.ls0{letter-spacing:2.560000pt;}
.ls19{letter-spacing:2.826667pt;}
.ls1{letter-spacing:3.413333pt;}
.ls1f{letter-spacing:347.965867pt;}
.ws7{word-spacing:-51.626667pt;}
.ws3{word-spacing:-25.813333pt;}
.wsb{word-spacing:-15.360000pt;}
.ws9{word-spacing:-15.306667pt;}
.wsa{word-spacing:-15.200000pt;}
.ws22{word-spacing:-15.093333pt;}
.ws8{word-spacing:-15.040000pt;}
.wsd{word-spacing:-14.933333pt;}
.wsc{word-spacing:-14.560000pt;}
.ws1e{word-spacing:-2.826667pt;}
.ws0{word-spacing:-2.688000pt;}
.ws1d{word-spacing:-2.346667pt;}
.ws26{word-spacing:-2.186667pt;}
.ws25{word-spacing:-2.080000pt;}
.ws20{word-spacing:-1.920000pt;}
.ws15{word-spacing:-1.866667pt;}
.ws1a{word-spacing:-1.813333pt;}
.ws1c{word-spacing:-1.600000pt;}
.ws17{word-spacing:-1.546667pt;}
.ws1b{word-spacing:-1.493333pt;}
.ws18{word-spacing:-1.440000pt;}
.ws1f{word-spacing:-1.386667pt;}
.ws19{word-spacing:-1.333333pt;}
.ws2{word-spacing:-1.280000pt;}
.ws11{word-spacing:-1.226667pt;}
.wsf{word-spacing:-1.173333pt;}
.ws10{word-spacing:-1.120000pt;}
.wse{word-spacing:-1.066667pt;}
.ws16{word-spacing:-1.013333pt;}
.ws4{word-spacing:-0.960000pt;}
.ws6{word-spacing:-0.933333pt;}
.ws24{word-spacing:-0.906667pt;}
.ws1{word-spacing:-0.853333pt;}
.ws21{word-spacing:-0.800000pt;}
.ws14{word-spacing:-0.746667pt;}
.ws13{word-spacing:-0.693333pt;}
.ws23{word-spacing:-0.640000pt;}
.ws12{word-spacing:-0.586667pt;}
.ws5{word-spacing:0.000000pt;}
._4{margin-left:-9.386667pt;}
._2{margin-left:-8.064000pt;}
._e{margin-left:-5.333333pt;}
._1{margin-left:-3.584000pt;}
._0{margin-left:-2.304000pt;}
._3{margin-left:-1.024000pt;}
._5{width:0.960000pt;}
._7{width:1.852800pt;}
._8{width:3.141333pt;}
._9{width:4.101333pt;}
._a{width:5.626667pt;}
._d{width:6.837333pt;}
._b{width:8.581333pt;}
._c{width:11.381333pt;}
._f{width:43.520000pt;}
._6{width:155.280000pt;}
.fs4{font-size:42.666667pt;}
.fs3{font-size:48.000000pt;}
.fs7{font-size:53.333333pt;}
.fsa{font-size:56.000000pt;}
.fs9{font-size:64.000000pt;}
.fs8{font-size:80.000000pt;}
.fs2{font-size:106.666667pt;}
.fs0{font-size:128.000000pt;}
.fs1{font-size:170.666667pt;}
.fs5{font-size:186.666667pt;}
.fs6{font-size:213.333333pt;}
.y0{bottom:0.000000pt;}
.y49{bottom:20.367733pt;}
.y94{bottom:86.929200pt;}
.y48{bottom:102.929067pt;}
.y93{bottom:102.929200pt;}
.ya9{bottom:105.595733pt;}
.y91{bottom:114.929200pt;}
.y71{bottom:116.157333pt;}
.y47{bottom:118.929067pt;}
.y92{bottom:118.929200pt;}
.y70{bottom:128.157333pt;}
.y46{bottom:134.929067pt;}
.ya8{bottom:142.929067pt;}
.y90{bottom:142.929200pt;}
.y45{bottom:150.929067pt;}
.y29{bottom:150.929200pt;}
.y6f{bottom:156.157333pt;}
.y8f{bottom:158.929200pt;}
.y44{bottom:166.929067pt;}
.y28{bottom:166.929200pt;}
.y6e{bottom:172.157333pt;}
.y8e{bottom:174.929200pt;}
.ya7{bottom:180.262400pt;}
.y43{bottom:182.929067pt;}
.y27{bottom:182.929200pt;}
.y6d{bottom:188.157333pt;}
.y8d{bottom:190.929200pt;}
.y42{bottom:198.929067pt;}
.y26{bottom:198.929200pt;}
.y6b{bottom:200.157333pt;}
.y8b{bottom:202.929200pt;}
.y6c{bottom:204.157333pt;}
.y8c{bottom:206.929200pt;}
.y41{bottom:214.929067pt;}
.y25{bottom:214.929200pt;}
.ya6{bottom:217.595733pt;}
.y6a{bottom:228.157333pt;}
.y40{bottom:230.929067pt;}
.y24{bottom:230.929200pt;}
.ya5{bottom:236.262400pt;}
.y3f{bottom:246.929067pt;}
.y23{bottom:246.929200pt;}
.ya4{bottom:254.929067pt;}
.y69{bottom:260.157333pt;}
.y3e{bottom:262.929067pt;}
.y22{bottom:262.929200pt;}
.y68{bottom:276.157333pt;}
.y3d{bottom:278.929067pt;}
.y21{bottom:278.929200pt;}
.y67{bottom:292.157333pt;}
.ya3{bottom:292.262400pt;}
.y20{bottom:294.929200pt;}
.y66{bottom:308.157333pt;}
.y3c{bottom:310.929067pt;}
.y1f{bottom:310.929200pt;}
.y3b{bottom:326.929067pt;}
.y8a{bottom:326.929200pt;}
.ya2{bottom:329.595733pt;}
.y3a{bottom:342.929067pt;}
.y1e{bottom:342.929200pt;}
.y65{bottom:348.157333pt;}
.y39{bottom:358.929067pt;}
.y1d{bottom:358.929200pt;}
.ya1{bottom:366.929067pt;}
.y38{bottom:374.929067pt;}
.y89{bottom:374.929200pt;}
.ya0{bottom:385.595733pt;}
.y37{bottom:390.929067pt;}
.y1c{bottom:390.929200pt;}
.y9f{bottom:404.262400pt;}
.y36{bottom:406.929067pt;}
.y1b{bottom:406.929200pt;}
.y64{bottom:412.157333pt;}
.y35{bottom:422.929067pt;}
.y88{bottom:422.929200pt;}
.y63{bottom:428.157333pt;}
.y34{bottom:438.929067pt;}
.y1a{bottom:438.929200pt;}
.y62{bottom:440.157333pt;}
.y9e{bottom:441.595733pt;}
.y33{bottom:454.929067pt;}
.y9d{bottom:460.262400pt;}
.y87{bottom:462.929200pt;}
.y61{bottom:468.157333pt;}
.y19{bottom:470.929200pt;}
.y2f{bottom:486.929067pt;}
.y18{bottom:486.929200pt;}
.y9c{bottom:497.595733pt;}
.y60{bottom:500.157333pt;}
.y32{bottom:502.929067pt;}
.y17{bottom:502.929200pt;}
.y5f{bottom:516.157333pt;}
.y9b{bottom:516.262400pt;}
.y2e{bottom:518.929067pt;}
.y16{bottom:518.929200pt;}
.y5e{bottom:532.157333pt;}
.y31{bottom:534.929067pt;}
.y15{bottom:534.929200pt;}
.y30{bottom:550.929067pt;}
.y14{bottom:550.929200pt;}
.y86{bottom:562.929200pt;}
.y2d{bottom:566.929067pt;}
.y13{bottom:566.929200pt;}
.y5d{bottom:572.157333pt;}
.y9a{bottom:582.929200pt;}
.y85{bottom:590.929200pt;}
.y12{bottom:598.929200pt;}
.y83{bottom:602.929200pt;}
.y84{bottom:606.929200pt;}
.y2c{bottom:614.929067pt;}
.y11{bottom:614.929200pt;}
.y10{bottom:630.929200pt;}
.y5c{bottom:636.157333pt;}
.yf{bottom:646.929200pt;}
.y5b{bottom:652.157333pt;}
.y2b{bottom:662.929067pt;}
.ye{bottom:662.929200pt;}
.y5a{bottom:668.157333pt;}
.yd{bottom:678.929200pt;}
.y58{bottom:680.157333pt;}
.y59{bottom:684.157333pt;}
.y81{bottom:690.929200pt;}
.y82{bottom:694.929200pt;}
.y57{bottom:708.157333pt;}
.yc{bottom:710.929200pt;}
.y80{bottom:718.929200pt;}
.y56{bottom:724.157333pt;}
.y99{bottom:726.929200pt;}
.y54{bottom:736.157333pt;}
.y55{bottom:740.157333pt;}
.yb{bottom:742.929200pt;}
.y7f{bottom:750.929200pt;}
.ya{bottom:758.929200pt;}
.y53{bottom:764.157333pt;}
.y7e{bottom:766.929200pt;}
.y9{bottom:774.929200pt;}
.y51{bottom:776.157333pt;}
.y52{bottom:780.157333pt;}
.y7d{bottom:782.929200pt;}
.y98{bottom:790.929200pt;}
.y7c{bottom:798.929200pt;}
.y50{bottom:804.157333pt;}
.y8{bottom:806.929200pt;}
.y7b{bottom:814.929200pt;}
.y7{bottom:822.929200pt;}
.y4f{bottom:836.157333pt;}
.y7a{bottom:846.929200pt;}
.y5{bottom:850.278667pt;}
.y4e{bottom:852.157333pt;}
.y6{bottom:854.929200pt;}
.y79{bottom:862.929200pt;}
.y4d{bottom:868.157333pt;}
.y78{bottom:878.929200pt;}
.y4c{bottom:884.157333pt;}
.y4{bottom:888.945333pt;}
.y77{bottom:894.929200pt;}
.y76{bottom:910.929200pt;}
.y4b{bottom:924.157333pt;}
.y3{bottom:928.945333pt;}
.y75{bottom:942.929200pt;}
.y74{bottom:958.929200pt;}
.y97{bottom:966.929200pt;}
.y2{bottom:968.945333pt;}
.y73{bottom:974.929200pt;}
.y96{bottom:982.929200pt;}
.y95{bottom:998.929200pt;}
.y4a{bottom:1004.157333pt;}
.y72{bottom:1014.929200pt;}
.y1{bottom:1016.945333pt;}
.y2a{bottom:1074.729867pt;}
.h7{height:30.464000pt;}
.h10{height:34.804688pt;}
.h6{height:36.726562pt;}
.h5{height:36.773438pt;}
.ha{height:40.807292pt;}
.hb{height:40.859375pt;}
.hf{height:42.847656pt;}
.h11{height:42.902344pt;}
.hd{height:45.888000pt;}
.he{height:57.109375pt;}
.hc{height:57.360000pt;}
.h4{height:76.480000pt;}
.h2{height:91.136000pt;}
.h3{height:122.197333pt;}
.h8{height:133.653333pt;}
.h9{height:152.960000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xb{left:18.897600pt;}
.x7{left:73.490533pt;}
.x6{left:75.554533pt;}
.xf{left:90.439333pt;}
.xc{left:91.590533pt;}
.x3{left:100.904000pt;}
.x4{left:106.129333pt;}
.xd{left:114.708667pt;}
.x2{left:160.230667pt;}
.x1{left:193.530267pt;}
.x8{left:252.026133pt;}
.x12{left:297.322800pt;}
.x13{left:320.000000pt;}
.x5{left:324.632533pt;}
.x10{left:384.135333pt;}
.x9{left:406.912933pt;}
.xa{left:408.386267pt;}
.xe{left:757.310133pt;}
.x11{left:759.816667pt;}
}




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