
    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_4cc52c08d159958105b0fe7f.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.060000;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_7824949722e9a34264bd113e.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.073000;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_4b8147caa01c8d0b2bf81c42.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.680000;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_209ec6cd30868b9293ae4230.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.053000;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_9fedf6bba12c5c5b836d44df.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.774902;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;}
.m24{transform:matrix(0.141193,-0.206312,0.206312,0.141193,0,0);-ms-transform:matrix(0.141193,-0.206312,0.206312,0.141193,0,0);-webkit-transform:matrix(0.141193,-0.206312,0.206312,0.141193,0,0);}
.m23{transform:matrix(0.143659,0.204602,-0.204602,0.143659,0,0);-ms-transform:matrix(0.143659,0.204602,-0.204602,0.143659,0,0);-webkit-transform:matrix(0.143659,0.204602,-0.204602,0.143659,0,0);}
.m1{transform:matrix(0.143659,-0.204602,0.204602,0.143659,0,0);-ms-transform:matrix(0.143659,-0.204602,0.204602,0.143659,0,0);-webkit-transform:matrix(0.143659,-0.204602,0.204602,0.143659,0,0);}
.m37{transform:matrix(0.148523,0.201099,-0.201099,0.148523,0,0);-ms-transform:matrix(0.148523,0.201099,-0.201099,0.148523,0,0);-webkit-transform:matrix(0.148523,0.201099,-0.201099,0.148523,0,0);}
.m2{transform:matrix(0.155645,-0.195639,0.195639,0.155645,0,0);-ms-transform:matrix(0.155645,-0.195639,0.195639,0.155645,0,0);-webkit-transform:matrix(0.155645,-0.195639,0.195639,0.155645,0,0);}
.m22{transform:matrix(0.157973,0.193765,-0.193765,0.157973,0,0);-ms-transform:matrix(0.157973,0.193765,-0.193765,0.157973,0,0);-webkit-transform:matrix(0.157973,0.193765,-0.193765,0.157973,0,0);}
.m25{transform:matrix(0.157973,-0.193765,0.193765,0.157973,0,0);-ms-transform:matrix(0.157973,-0.193765,0.193765,0.157973,0,0);-webkit-transform:matrix(0.157973,-0.193765,0.193765,0.157973,0,0);}
.m3{transform:matrix(0.162555,-0.189937,0.189937,0.162555,0,0);-ms-transform:matrix(0.162555,-0.189937,0.189937,0.162555,0,0);-webkit-transform:matrix(0.162555,-0.189937,0.189937,0.162555,0,0);}
.m36{transform:matrix(0.164810,0.187983,-0.187983,0.164810,0,0);-ms-transform:matrix(0.164810,0.187983,-0.187983,0.164810,0,0);-webkit-transform:matrix(0.164810,0.187983,-0.187983,0.164810,0,0);}
.m21{transform:matrix(0.171430,0.181966,-0.181966,0.171430,0,0);-ms-transform:matrix(0.171430,0.181966,-0.181966,0.171430,0,0);-webkit-transform:matrix(0.171430,0.181966,-0.181966,0.171430,0,0);}
.m4{transform:matrix(0.173588,-0.179909,0.179909,0.173588,0,0);-ms-transform:matrix(0.173588,-0.179909,0.179909,0.173588,0,0);-webkit-transform:matrix(0.173588,-0.179909,0.179909,0.173588,0,0);}
.m35{transform:matrix(0.175720,0.177828,-0.177828,0.175720,0,0);-ms-transform:matrix(0.175720,0.177828,-0.177828,0.175720,0,0);-webkit-transform:matrix(0.175720,0.177828,-0.177828,0.175720,0,0);}
.m20{transform:matrix(0.183998,0.169248,-0.169248,0.183998,0,0);-ms-transform:matrix(0.183998,0.169248,-0.169248,0.183998,0,0);-webkit-transform:matrix(0.183998,0.169248,-0.169248,0.183998,0,0);}
.m34{transform:matrix(0.186004,0.167041,-0.167041,0.186004,0,0);-ms-transform:matrix(0.186004,0.167041,-0.167041,0.186004,0,0);-webkit-transform:matrix(0.186004,0.167041,-0.167041,0.186004,0,0);}
.m5{transform:matrix(0.186004,-0.167041,0.167041,0.186004,0,0);-ms-transform:matrix(0.186004,-0.167041,0.167041,0.186004,0,0);-webkit-transform:matrix(0.186004,-0.167041,0.167041,0.186004,0,0);}
.m1f{transform:matrix(0.191863,0.160276,-0.160276,0.191863,0,0);-ms-transform:matrix(0.191863,0.160276,-0.160276,0.191863,0,0);-webkit-transform:matrix(0.191863,0.160276,-0.160276,0.191863,0,0);}
.m6{transform:matrix(0.193765,-0.157973,0.157973,0.193765,0,0);-ms-transform:matrix(0.193765,-0.157973,0.157973,0.193765,0,0);-webkit-transform:matrix(0.193765,-0.157973,0.157973,0.193765,0,0);}
.m33{transform:matrix(0.197486,0.153294,-0.153294,0.197486,0,0);-ms-transform:matrix(0.197486,0.153294,-0.153294,0.197486,0,0);-webkit-transform:matrix(0.197486,0.153294,-0.153294,0.197486,0,0);}
.m1e{transform:matrix(0.199306,0.150921,-0.150921,0.199306,0,0);-ms-transform:matrix(0.199306,0.150921,-0.150921,0.199306,0,0);-webkit-transform:matrix(0.199306,0.150921,-0.150921,0.199306,0,0);}
.m7{transform:matrix(0.202865,-0.146102,0.146102,0.202865,0,0);-ms-transform:matrix(0.202865,-0.146102,0.146102,0.202865,0,0);-webkit-transform:matrix(0.202865,-0.146102,0.146102,0.202865,0,0);}
.m1d{transform:matrix(0.209646,0.136193,-0.136193,0.209646,0,0);-ms-transform:matrix(0.209646,0.136193,-0.136193,0.209646,0,0);-webkit-transform:matrix(0.209646,0.136193,-0.136193,0.209646,0,0);}
.m8{transform:matrix(0.209646,-0.136193,0.136193,0.209646,0,0);-ms-transform:matrix(0.209646,-0.136193,0.136193,0.209646,0,0);-webkit-transform:matrix(0.209646,-0.136193,0.136193,0.209646,0,0);}
.m32{transform:matrix(0.211271,0.133659,-0.133659,0.211271,0,0);-ms-transform:matrix(0.211271,0.133659,-0.133659,0.211271,0,0);-webkit-transform:matrix(0.211271,0.133659,-0.133659,0.211271,0,0);}
.m9{transform:matrix(0.214432,-0.128526,0.128526,0.214432,0,0);-ms-transform:matrix(0.214432,-0.128526,0.128526,0.214432,0,0);-webkit-transform:matrix(0.214432,-0.128526,0.128526,0.214432,0,0);}
.m1c{transform:matrix(0.218952,0.120665,-0.120665,0.218952,0,0);-ms-transform:matrix(0.218952,0.120665,-0.120665,0.218952,0,0);-webkit-transform:matrix(0.218952,0.120665,-0.120665,0.218952,0,0);}
.ma{transform:matrix(0.221814,-0.115319,0.115319,0.221814,0,0);-ms-transform:matrix(0.221814,-0.115319,0.115319,0.221814,0,0);-webkit-transform:matrix(0.221814,-0.115319,0.115319,0.221814,0,0);}
.m31{transform:matrix(0.223199,0.112615,-0.112615,0.223199,0,0);-ms-transform:matrix(0.223199,0.112615,-0.112615,0.223199,0,0);-webkit-transform:matrix(0.223199,0.112615,-0.112615,0.223199,0,0);}
.m26{transform:matrix(0.223199,-0.112615,0.112615,0.223199,0,0);-ms-transform:matrix(0.223199,-0.112615,0.112615,0.223199,0,0);-webkit-transform:matrix(0.223199,-0.112615,0.112615,0.223199,0,0);}
.m1b{transform:matrix(0.224553,0.109891,-0.109891,0.224553,0,0);-ms-transform:matrix(0.224553,0.109891,-0.109891,0.224553,0,0);-webkit-transform:matrix(0.224553,0.109891,-0.109891,0.224553,0,0);}
.mb{transform:matrix(0.228424,-0.101599,0.101599,0.228424,0,0);-ms-transform:matrix(0.228424,-0.101599,0.101599,0.228424,0,0);-webkit-transform:matrix(0.228424,-0.101599,0.101599,0.228424,0,0);}
.m27{transform:matrix(0.229651,-0.098796,0.098796,0.229651,0,0);-ms-transform:matrix(0.229651,-0.098796,0.098796,0.229651,0,0);-webkit-transform:matrix(0.229651,-0.098796,0.098796,0.229651,0,0);}
.m1a{transform:matrix(0.230844,0.095975,-0.095975,0.230844,0,0);-ms-transform:matrix(0.230844,0.095975,-0.095975,0.230844,0,0);-webkit-transform:matrix(0.230844,0.095975,-0.095975,0.230844,0,0);}
.mc{transform:matrix(0.233131,-0.090276,0.090276,0.233131,0,0);-ms-transform:matrix(0.233131,-0.090276,0.090276,0.233131,0,0);-webkit-transform:matrix(0.233131,-0.090276,0.090276,0.233131,0,0);}
.m30{transform:matrix(0.234224,0.087401,-0.087401,0.234224,0,0);-ms-transform:matrix(0.234224,0.087401,-0.087401,0.234224,0,0);-webkit-transform:matrix(0.234224,0.087401,-0.087401,0.234224,0,0);}
.m19{transform:matrix(0.237300,0.078669,-0.078669,0.237300,0,0);-ms-transform:matrix(0.237300,0.078669,-0.078669,0.237300,0,0);-webkit-transform:matrix(0.237300,0.078669,-0.078669,0.237300,0,0);}
.m28{transform:matrix(0.237300,-0.078669,0.078669,0.237300,0,0);-ms-transform:matrix(0.237300,-0.078669,0.078669,0.237300,0,0);-webkit-transform:matrix(0.237300,-0.078669,0.078669,0.237300,0,0);}
.md{transform:matrix(0.238255,-0.075726,0.075726,0.238255,0,0);-ms-transform:matrix(0.238255,-0.075726,0.075726,0.238255,0,0);-webkit-transform:matrix(0.238255,-0.075726,0.075726,0.238255,0,0);}
.m2f{transform:matrix(0.239176,0.072767,-0.072767,0.239176,0,0);-ms-transform:matrix(0.239176,0.072767,-0.072767,0.239176,0,0);-webkit-transform:matrix(0.239176,0.072767,-0.072767,0.239176,0,0);}
.m18{transform:matrix(0.240909,0.066803,-0.066803,0.240909,0,0);-ms-transform:matrix(0.240909,0.066803,-0.066803,0.240909,0,0);-webkit-transform:matrix(0.240909,0.066803,-0.066803,0.240909,0,0);}
.m39{transform:matrix(0.242266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242266,0.000000,0.000000,0.250000,0,0);}
.m38{transform:matrix(0.242284,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242284,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242284,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.242499,-0.060782,0.060782,0.242499,0,0);-ms-transform:matrix(0.242499,-0.060782,0.060782,0.242499,0,0);-webkit-transform:matrix(0.242499,-0.060782,0.060782,0.242499,0,0);}
.m29{transform:matrix(0.243238,-0.057751,0.057751,0.243238,0,0);-ms-transform:matrix(0.243238,-0.057751,0.057751,0.243238,0,0);-webkit-transform:matrix(0.243238,-0.057751,0.057751,0.243238,0,0);}
.m2e{transform:matrix(0.243941,0.054707,-0.054707,0.243941,0,0);-ms-transform:matrix(0.243941,0.054707,-0.054707,0.243941,0,0);-webkit-transform:matrix(0.243941,0.054707,-0.054707,0.243941,0,0);}
.m17{transform:matrix(0.244606,0.051651,-0.051651,0.244606,0,0);-ms-transform:matrix(0.244606,0.051651,-0.051651,0.244606,0,0);-webkit-transform:matrix(0.244606,0.051651,-0.051651,0.244606,0,0);}
.mf{transform:matrix(0.245234,-0.048583,0.048583,0.245234,0,0);-ms-transform:matrix(0.245234,-0.048583,0.048583,0.245234,0,0);-webkit-transform:matrix(0.245234,-0.048583,0.048583,0.245234,0,0);}
.m16{transform:matrix(0.246890,0.039314,-0.039314,0.246890,0,0);-ms-transform:matrix(0.246890,0.039314,-0.039314,0.246890,0,0);-webkit-transform:matrix(0.246890,0.039314,-0.039314,0.246890,0,0);}
.m10{transform:matrix(0.246890,-0.039314,0.039314,0.246890,0,0);-ms-transform:matrix(0.246890,-0.039314,0.039314,0.246890,0,0);-webkit-transform:matrix(0.246890,-0.039314,0.039314,0.246890,0,0);}
.m2a{transform:matrix(0.247365,-0.036205,0.036205,0.247365,0,0);-ms-transform:matrix(0.247365,-0.036205,0.036205,0.247365,0,0);-webkit-transform:matrix(0.247365,-0.036205,0.036205,0.247365,0,0);}
.m2d{transform:matrix(0.247801,0.033086,-0.033086,0.247801,0,0);-ms-transform:matrix(0.247801,0.033086,-0.033086,0.247801,0,0);-webkit-transform:matrix(0.247801,0.033086,-0.033086,0.247801,0,0);}
.m15{transform:matrix(0.248556,0.026827,-0.026827,0.248556,0,0);-ms-transform:matrix(0.248556,0.026827,-0.026827,0.248556,0,0);-webkit-transform:matrix(0.248556,0.026827,-0.026827,0.248556,0,0);}
.m11{transform:matrix(0.248556,-0.026827,0.026827,0.248556,0,0);-ms-transform:matrix(0.248556,-0.026827,0.026827,0.248556,0,0);-webkit-transform:matrix(0.248556,-0.026827,0.026827,0.248556,0,0);}
.m14{transform:matrix(0.249594,0.014235,-0.014235,0.249594,0,0);-ms-transform:matrix(0.249594,0.014235,-0.014235,0.249594,0,0);-webkit-transform:matrix(0.249594,0.014235,-0.014235,0.249594,0,0);}
.m2b{transform:matrix(0.249594,-0.014235,0.014235,0.249594,0,0);-ms-transform:matrix(0.249594,-0.014235,0.014235,0.249594,0,0);-webkit-transform:matrix(0.249594,-0.014235,0.014235,0.249594,0,0);}
.m12{transform:matrix(0.249755,-0.011075,0.011075,0.249755,0,0);-ms-transform:matrix(0.249755,-0.011075,0.011075,0.249755,0,0);-webkit-transform:matrix(0.249755,-0.011075,0.011075,0.249755,0,0);}
.m2c{transform:matrix(0.249875,0.007912,-0.007912,0.249875,0,0);-ms-transform:matrix(0.249875,0.007912,-0.007912,0.249875,0,0);-webkit-transform:matrix(0.249875,0.007912,-0.007912,0.249875,0,0);}
.m13{transform:matrix(0.249955,0.004749,-0.004749,0.249955,0,0);-ms-transform:matrix(0.249955,0.004749,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.249955,0.004749,-0.004749,0.249955,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);}
.m3a{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:17.982000px;}
.ls2{letter-spacing:-1.080000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:1.740000px;}
.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;}
}
.ws4{word-spacing:-18.000000px;}
.ws2{word-spacing:-12.180000px;}
.ws3{word-spacing:-1.740000px;}
.ws1{word-spacing:-0.240000px;}
.ws0{word-spacing:0.000000px;}
._2{margin-left:-4.104000px;}
._1{margin-left:-2.379600px;}
._0{margin-left:-1.299600px;}
._3{width:1.321200px;}
.fc6{color:rgb(61,60,59);}
.fc5{color:rgb(119,190,128);}
.fc4{color:rgb(2,2,3);}
.fc3{color:rgb(14,61,38);}
.fc2{color:rgb(236,99,56);}
.fc1{color:rgb(255,253,246);}
.fc0{color:rgb(255,255,255);}
.fs33{font-size:4.596600px;}
.fs32{font-size:11.916600px;}
.fs22{font-size:31.482000px;}
.fs30{font-size:34.800000px;}
.fs31{font-size:34.980000px;}
.fs0{font-size:36.000000px;}
.fs21{font-size:54.000000px;}
.fs2f{font-size:60.000000px;}
.fs20{font-size:120.000000px;}
.fs25{font-size:131.999646px;}
.fsd{font-size:131.999658px;}
.fs1e{font-size:131.999663px;}
.fsc{font-size:131.999679px;}
.fs2b{font-size:131.999708px;}
.fs1b{font-size:131.999724px;}
.fs2e{font-size:131.999740px;}
.fs15{font-size:131.999767px;}
.fs3{font-size:131.999791px;}
.fs2d{font-size:131.999807px;}
.fs24{font-size:131.999810px;}
.fs13{font-size:131.999817px;}
.fs16{font-size:131.999879px;}
.fs23{font-size:131.999887px;}
.fs4{font-size:131.999896px;}
.fs5{font-size:131.999930px;}
.fs1d{font-size:131.999954px;}
.fs14{font-size:131.999963px;}
.fs9{font-size:131.999971px;}
.fs2{font-size:131.999983px;}
.fs12{font-size:131.999988px;}
.fs7{font-size:131.999990px;}
.fs2a{font-size:132.000003px;}
.fs2c{font-size:132.000012px;}
.fs1{font-size:132.000026px;}
.fsf{font-size:132.000066px;}
.fs1a{font-size:132.000090px;}
.fs1c{font-size:132.000100px;}
.fs27{font-size:132.000105px;}
.fs29{font-size:132.000117px;}
.fs10{font-size:132.000129px;}
.fs28{font-size:132.000130px;}
.fse{font-size:132.000135px;}
.fs17{font-size:132.000160px;}
.fs6{font-size:132.000179px;}
.fs11{font-size:132.000205px;}
.fs26{font-size:132.000241px;}
.fs19{font-size:132.000259px;}
.fs8{font-size:132.000291px;}
.fs18{font-size:132.000317px;}
.fsb{font-size:132.000327px;}
.fsa{font-size:132.000358px;}
.fs1f{font-size:240.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:45.143550px;}
.y1{bottom:57.140550px;}
.y2f{bottom:84.676350px;}
.y2e{bottom:100.876350px;}
.y2d{bottom:125.144850px;}
.y5b{bottom:169.704750px;}
.y5a{bottom:173.115900px;}
.y53{bottom:200.726100px;}
.y2c{bottom:207.717000px;}
.y52{bottom:217.223100px;}
.y2b{bottom:223.917000px;}
.y51{bottom:238.223100px;}
.y2a{bottom:248.185500px;}
.y50{bottom:259.229100px;}
.y4f{bottom:275.726100px;}
.y4e{bottom:292.223100px;}
.y4d{bottom:313.223100px;}
.y29{bottom:332.387700px;}
.y4c{bottom:346.223100px;}
.y59{bottom:352.594050px;}
.y28{bottom:356.656200px;}
.y4b{bottom:364.223100px;}
.y58{bottom:373.789050px;}
.y4a{bottom:382.223100px;}
.y49{bottom:400.223100px;}
.y57{bottom:402.994050px;}
.y30{bottom:423.305700px;}
.y56{bottom:425.988900px;}
.y31{bottom:438.896100px;}
.y27{bottom:441.285450px;}
.y3{bottom:443.524350px;}
.y48{bottom:447.279150px;}
.y32{bottom:455.736450px;}
.y55{bottom:456.994050px;}
.y25{bottom:462.700800px;}
.y47{bottom:462.747750px;}
.y26{bottom:464.490900px;}
.y4{bottom:464.592450px;}
.y46{bottom:468.981750px;}
.y33{bottom:471.254100px;}
.y5{bottom:471.609450px;}
.y24{bottom:479.278800px;}
.y54{bottom:479.988900px;}
.y34{bottom:480.737850px;}
.y45{bottom:482.448450px;}
.y6{bottom:482.482650px;}
.y35{bottom:487.136550px;}
.y44{bottom:495.012300px;}
.y23{bottom:495.264000px;}
.y7{bottom:497.575650px;}
.y36{bottom:500.049150px;}
.y43{bottom:506.762550px;}
.y22{bottom:509.164650px;}
.y37{bottom:510.813450px;}
.y8{bottom:511.102350px;}
.y21{bottom:514.746600px;}
.y38{bottom:515.470650px;}
.y9{bottom:516.892800px;}
.y42{bottom:521.259150px;}
.y39{bottom:524.119950px;}
.y20{bottom:526.550700px;}
.y41{bottom:528.467850px;}
.ya{bottom:529.582800px;}
.y3a{bottom:530.821500px;}
.y40{bottom:531.111900px;}
.yb{bottom:534.447300px;}
.y3b{bottom:535.848150px;}
.y3f{bottom:535.986300px;}
.y1f{bottom:537.116550px;}
.y3c{bottom:538.967400px;}
.y3e{bottom:539.075550px;}
.y3d{bottom:540.274800px;}
.yc{bottom:541.613850px;}
.y1e{bottom:547.610250px;}
.yd{bottom:551.262450px;}
.y1d{bottom:551.375700px;}
.ye{bottom:555.400200px;}
.y1c{bottom:560.039550px;}
.yf{bottom:561.481200px;}
.y1b{bottom:566.900850px;}
.y10{bottom:567.839700px;}
.y1a{bottom:569.391900px;}
.y11{bottom:571.308000px;}
.y19{bottom:573.973800px;}
.y12{bottom:574.019850px;}
.y18{bottom:575.265450px;}
.y13{bottom:575.540250px;}
.y14{bottom:577.461750px;}
.y17{bottom:577.785450px;}
.y16{bottom:578.096400px;}
.y15{bottom:578.370750px;}
.h36{height:3.492339px;}
.h35{height:9.053823px;}
.h31{height:28.188000px;}
.h33{height:28.333800px;}
.h2{height:28.728000px;}
.h22{height:42.768000px;}
.h23{height:42.915744px;}
.h32{height:47.496000px;}
.h34{height:47.520000px;}
.h30{height:47.880000px;}
.h26{height:106.919713px;}
.hf{height:106.919723px;}
.h20{height:106.919727px;}
.he{height:106.919740px;}
.h2c{height:106.919764px;}
.h1d{height:106.919776px;}
.h2f{height:106.919789px;}
.h17{height:106.919811px;}
.h5{height:106.919831px;}
.h2e{height:106.919844px;}
.h25{height:106.919846px;}
.h15{height:106.919852px;}
.h18{height:106.919902px;}
.h24{height:106.919909px;}
.h6{height:106.919915px;}
.h7{height:106.919943px;}
.h1f{height:106.919963px;}
.h16{height:106.919970px;}
.hb{height:106.919976px;}
.h4{height:106.919986px;}
.h14{height:106.919990px;}
.h9{height:106.919992px;}
.h2b{height:106.920003px;}
.h2d{height:106.920010px;}
.h3{height:106.920021px;}
.h11{height:106.920054px;}
.h1c{height:106.920073px;}
.h1e{height:106.920081px;}
.h28{height:106.920085px;}
.h2a{height:106.920095px;}
.h12{height:106.920104px;}
.h29{height:106.920105px;}
.h10{height:106.920110px;}
.h19{height:106.920130px;}
.h8{height:106.920145px;}
.h13{height:106.920166px;}
.h27{height:106.920195px;}
.h1b{height:106.920210px;}
.ha{height:106.920236px;}
.h1a{height:106.920256px;}
.hd{height:106.920265px;}
.hc{height:106.920290px;}
.h21{height:160.080000px;}
.h1{height:637.500000px;}
.h0{height:637.795500px;}
.w1{width:637.500000px;}
.w0{width:637.795500px;}
.x0{left:0.000000px;}
.x2{left:73.989750px;}
.x3{left:89.006400px;}
.x4b{left:90.115950px;}
.x43{left:93.037950px;}
.x4{left:94.500600px;}
.x5{left:103.681950px;}
.x2a{left:107.829300px;}
.x6{left:118.276800px;}
.x44{left:127.206450px;}
.x2b{left:131.954100px;}
.x7{left:133.581750px;}
.x8{left:140.370300px;}
.x40{left:141.771750px;}
.x2c{left:147.054150px;}
.x3f{left:152.241750px;}
.x9{left:158.232600px;}
.xa{left:165.698700px;}
.x28{left:173.902650px;}
.xb{left:177.607650px;}
.x2d{left:183.343500px;}
.x41{left:189.396750px;}
.x29{left:192.262650px;}
.xc{left:196.616850px;}
.x2e{left:201.744900px;}
.x3e{left:203.931750px;}
.xd{left:205.617300px;}
.x48{left:207.261150px;}
.x2f{left:210.495900px;}
.xe{left:221.001150px;}
.x26{left:228.693600px;}
.x30{left:230.641350px;}
.x1{left:240.496500px;}
.x46{left:245.768850px;}
.x31{left:250.891950px;}
.xf{left:255.148050px;}
.x25{left:257.466600px;}
.x10{left:269.110500px;}
.x32{left:272.231400px;}
.x24{left:276.808200px;}
.x11{left:277.896150px;}
.x27{left:281.316600px;}
.x49{left:288.959550px;}
.x47{left:290.660400px;}
.x12{left:294.328200px;}
.x4a{left:295.618650px;}
.x45{left:304.403550px;}
.x42{left:309.118950px;}
.x33{left:314.072700px;}
.x13{left:315.961200px;}
.x14{left:330.182700px;}
.x15{left:339.097050px;}
.x34{left:342.533850px;}
.x16{left:360.862350px;}
.x35{left:364.567950px;}
.x17{left:369.684300px;}
.x36{left:385.322550px;}
.x18{left:390.504750px;}
.x37{left:394.878750px;}
.x19{left:400.094100px;}
.x38{left:415.347300px;}
.x1a{left:420.633750px;}
.x1b{left:440.939250px;}
.x39{left:443.562000px;}
.x1c{left:449.023350px;}
.x3a{left:462.076350px;}
.x1d{left:467.965800px;}
.x4c{left:471.986100px;}
.x3b{left:478.276050px;}
.x1e{left:484.332300px;}
.x3c{left:492.969150px;}
.x1f{left:499.817250px;}
.x20{left:506.772300px;}
.x3d{left:512.908650px;}
.x21{left:521.932350px;}
.x22{left:536.929050px;}
.x23{left:550.340850px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:15.984000pt;}
.ls2{letter-spacing:-0.960000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:1.546667pt;}
.ws4{word-spacing:-16.000000pt;}
.ws2{word-spacing:-10.826667pt;}
.ws3{word-spacing:-1.546667pt;}
.ws1{word-spacing:-0.213333pt;}
.ws0{word-spacing:0.000000pt;}
._2{margin-left:-3.648000pt;}
._1{margin-left:-2.115200pt;}
._0{margin-left:-1.155200pt;}
._3{width:1.174400pt;}
.fs33{font-size:4.085867pt;}
.fs32{font-size:10.592533pt;}
.fs22{font-size:27.984000pt;}
.fs30{font-size:30.933333pt;}
.fs31{font-size:31.093333pt;}
.fs0{font-size:32.000000pt;}
.fs21{font-size:48.000000pt;}
.fs2f{font-size:53.333333pt;}
.fs20{font-size:106.666667pt;}
.fs25{font-size:117.333018pt;}
.fsd{font-size:117.333029pt;}
.fs1e{font-size:117.333034pt;}
.fsc{font-size:117.333048pt;}
.fs2b{font-size:117.333074pt;}
.fs1b{font-size:117.333088pt;}
.fs2e{font-size:117.333102pt;}
.fs15{font-size:117.333126pt;}
.fs3{font-size:117.333148pt;}
.fs2d{font-size:117.333162pt;}
.fs24{font-size:117.333164pt;}
.fs13{font-size:117.333170pt;}
.fs16{font-size:117.333226pt;}
.fs23{font-size:117.333233pt;}
.fs4{font-size:117.333241pt;}
.fs5{font-size:117.333271pt;}
.fs1d{font-size:117.333293pt;}
.fs14{font-size:117.333301pt;}
.fs9{font-size:117.333307pt;}
.fs2{font-size:117.333318pt;}
.fs12{font-size:117.333323pt;}
.fs7{font-size:117.333324pt;}
.fs2a{font-size:117.333336pt;}
.fs2c{font-size:117.333344pt;}
.fs1{font-size:117.333356pt;}
.fsf{font-size:117.333392pt;}
.fs1a{font-size:117.333413pt;}
.fs1c{font-size:117.333422pt;}
.fs27{font-size:117.333427pt;}
.fs29{font-size:117.333437pt;}
.fs10{font-size:117.333448pt;}
.fs28{font-size:117.333449pt;}
.fse{font-size:117.333454pt;}
.fs17{font-size:117.333476pt;}
.fs6{font-size:117.333493pt;}
.fs11{font-size:117.333516pt;}
.fs26{font-size:117.333547pt;}
.fs19{font-size:117.333564pt;}
.fs8{font-size:117.333592pt;}
.fs18{font-size:117.333615pt;}
.fsb{font-size:117.333624pt;}
.fsa{font-size:117.333651pt;}
.fs1f{font-size:213.333333pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:40.127600pt;}
.y1{bottom:50.791600pt;}
.y2f{bottom:75.267867pt;}
.y2e{bottom:89.667867pt;}
.y2d{bottom:111.239867pt;}
.y5b{bottom:150.848667pt;}
.y5a{bottom:153.880800pt;}
.y53{bottom:178.423200pt;}
.y2c{bottom:184.637333pt;}
.y52{bottom:193.087200pt;}
.y2b{bottom:199.037333pt;}
.y51{bottom:211.753867pt;}
.y2a{bottom:220.609333pt;}
.y50{bottom:230.425867pt;}
.y4f{bottom:245.089867pt;}
.y4e{bottom:259.753867pt;}
.y4d{bottom:278.420533pt;}
.y29{bottom:295.455733pt;}
.y4c{bottom:307.753867pt;}
.y59{bottom:313.416933pt;}
.y28{bottom:317.027733pt;}
.y4b{bottom:323.753867pt;}
.y58{bottom:332.256933pt;}
.y4a{bottom:339.753867pt;}
.y49{bottom:355.753867pt;}
.y57{bottom:358.216933pt;}
.y30{bottom:376.271733pt;}
.y56{bottom:378.656800pt;}
.y31{bottom:390.129867pt;}
.y27{bottom:392.253733pt;}
.y3{bottom:394.243867pt;}
.y48{bottom:397.581467pt;}
.y32{bottom:405.099067pt;}
.y55{bottom:406.216933pt;}
.y25{bottom:411.289600pt;}
.y47{bottom:411.331333pt;}
.y26{bottom:412.880800pt;}
.y4{bottom:412.971067pt;}
.y46{bottom:416.872667pt;}
.y33{bottom:418.892533pt;}
.y5{bottom:419.208400pt;}
.y24{bottom:426.025600pt;}
.y54{bottom:426.656800pt;}
.y34{bottom:427.322533pt;}
.y45{bottom:428.843067pt;}
.y6{bottom:428.873467pt;}
.y35{bottom:433.010267pt;}
.y44{bottom:440.010933pt;}
.y23{bottom:440.234667pt;}
.y7{bottom:442.289467pt;}
.y36{bottom:444.488133pt;}
.y43{bottom:450.455600pt;}
.y22{bottom:452.590800pt;}
.y37{bottom:454.056400pt;}
.y8{bottom:454.313200pt;}
.y21{bottom:457.552533pt;}
.y38{bottom:458.196133pt;}
.y9{bottom:459.460267pt;}
.y42{bottom:463.341467pt;}
.y39{bottom:465.884400pt;}
.y20{bottom:468.045067pt;}
.y41{bottom:469.749200pt;}
.ya{bottom:470.740267pt;}
.y3a{bottom:471.841333pt;}
.y40{bottom:472.099467pt;}
.yb{bottom:475.064267pt;}
.y3b{bottom:476.309467pt;}
.y3f{bottom:476.432267pt;}
.y1f{bottom:477.436933pt;}
.y3c{bottom:479.082133pt;}
.y3e{bottom:479.178267pt;}
.y3d{bottom:480.244267pt;}
.yc{bottom:481.434533pt;}
.y1e{bottom:486.764667pt;}
.yd{bottom:490.011067pt;}
.y1d{bottom:490.111733pt;}
.ye{bottom:493.689067pt;}
.y1c{bottom:497.812933pt;}
.yf{bottom:499.094400pt;}
.y1b{bottom:503.911867pt;}
.y10{bottom:504.746400pt;}
.y1a{bottom:506.126133pt;}
.y11{bottom:507.829333pt;}
.y19{bottom:510.198933pt;}
.y12{bottom:510.239867pt;}
.y18{bottom:511.347067pt;}
.y13{bottom:511.591333pt;}
.y14{bottom:513.299333pt;}
.y17{bottom:513.587067pt;}
.y16{bottom:513.863467pt;}
.y15{bottom:514.107333pt;}
.h36{height:3.104301pt;}
.h35{height:8.047843pt;}
.h31{height:25.056000pt;}
.h33{height:25.185600pt;}
.h2{height:25.536000pt;}
.h22{height:38.016000pt;}
.h23{height:38.147328pt;}
.h32{height:42.218667pt;}
.h34{height:42.240000pt;}
.h30{height:42.560000pt;}
.h26{height:95.039745pt;}
.hf{height:95.039754pt;}
.h20{height:95.039758pt;}
.he{height:95.039769pt;}
.h2c{height:95.039790pt;}
.h1d{height:95.039801pt;}
.h2f{height:95.039813pt;}
.h17{height:95.039832pt;}
.h5{height:95.039850pt;}
.h2e{height:95.039861pt;}
.h25{height:95.039863pt;}
.h15{height:95.039868pt;}
.h18{height:95.039913pt;}
.h24{height:95.039919pt;}
.h6{height:95.039925pt;}
.h7{height:95.039949pt;}
.h1f{height:95.039967pt;}
.h16{height:95.039974pt;}
.hb{height:95.039979pt;}
.h4{height:95.039987pt;}
.h14{height:95.039991pt;}
.h9{height:95.039992pt;}
.h2b{height:95.040002pt;}
.h2d{height:95.040009pt;}
.h3{height:95.040019pt;}
.h11{height:95.040048pt;}
.h1c{height:95.040065pt;}
.h1e{height:95.040072pt;}
.h28{height:95.040076pt;}
.h2a{height:95.040084pt;}
.h12{height:95.040093pt;}
.h29{height:95.040094pt;}
.h10{height:95.040098pt;}
.h19{height:95.040115pt;}
.h8{height:95.040129pt;}
.h13{height:95.040148pt;}
.h27{height:95.040173pt;}
.h1b{height:95.040187pt;}
.ha{height:95.040210pt;}
.h1a{height:95.040228pt;}
.hd{height:95.040235pt;}
.hc{height:95.040257pt;}
.h21{height:142.293333pt;}
.h1{height:566.666667pt;}
.h0{height:566.929333pt;}
.w1{width:566.666667pt;}
.w0{width:566.929333pt;}
.x0{left:0.000000pt;}
.x2{left:65.768667pt;}
.x3{left:79.116800pt;}
.x4b{left:80.103067pt;}
.x43{left:82.700400pt;}
.x4{left:84.000533pt;}
.x5{left:92.161733pt;}
.x2a{left:95.848267pt;}
.x6{left:105.134933pt;}
.x44{left:113.072400pt;}
.x2b{left:117.292533pt;}
.x7{left:118.739333pt;}
.x8{left:124.773600pt;}
.x40{left:126.019333pt;}
.x2c{left:130.714800pt;}
.x3f{left:135.326000pt;}
.x9{left:140.651200pt;}
.xa{left:147.287733pt;}
.x28{left:154.580133pt;}
.xb{left:157.873467pt;}
.x2d{left:162.972000pt;}
.x41{left:168.352667pt;}
.x29{left:170.900133pt;}
.xc{left:174.770533pt;}
.x2e{left:179.328800pt;}
.x3e{left:181.272667pt;}
.xd{left:182.770933pt;}
.x48{left:184.232133pt;}
.x2f{left:187.107467pt;}
.xe{left:196.445467pt;}
.x26{left:203.283200pt;}
.x30{left:205.014533pt;}
.x1{left:213.774667pt;}
.x46{left:218.461200pt;}
.x31{left:223.015067pt;}
.xf{left:226.798267pt;}
.x25{left:228.859200pt;}
.x10{left:239.209333pt;}
.x32{left:241.983467pt;}
.x24{left:246.051733pt;}
.x11{left:247.018800pt;}
.x27{left:250.059200pt;}
.x49{left:256.852933pt;}
.x47{left:258.364800pt;}
.x12{left:261.625067pt;}
.x4a{left:262.772133pt;}
.x45{left:270.580933pt;}
.x42{left:274.772400pt;}
.x33{left:279.175733pt;}
.x13{left:280.854400pt;}
.x14{left:293.495733pt;}
.x15{left:301.419600pt;}
.x34{left:304.474533pt;}
.x16{left:320.766533pt;}
.x35{left:324.060400pt;}
.x17{left:328.608267pt;}
.x36{left:342.508933pt;}
.x18{left:347.115333pt;}
.x37{left:351.003333pt;}
.x19{left:355.639200pt;}
.x38{left:369.197600pt;}
.x1a{left:373.896667pt;}
.x1b{left:391.946000pt;}
.x39{left:394.277333pt;}
.x1c{left:399.131867pt;}
.x3a{left:410.734533pt;}
.x1d{left:415.969600pt;}
.x4c{left:419.543200pt;}
.x3b{left:425.134267pt;}
.x1e{left:430.517600pt;}
.x3c{left:438.194800pt;}
.x1f{left:444.282000pt;}
.x20{left:450.464267pt;}
.x3d{left:455.918800pt;}
.x21{left:463.939867pt;}
.x22{left:477.270267pt;}
.x23{left:489.191867pt;}
}




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