
    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_b1a7eb0ad579d1814d035810.woff')format("woff");}.ff1{font-family:ff1;line-height:1.102000;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_a655ca3617dcfef6eadc722e.woff')format("woff");}.ff2{font-family:ff2;line-height:1.037000;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_61a8cbcfc7858e23dc8adf9a.woff')format("woff");}.ff3{font-family:ff3;line-height:0.666000;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_4046592e9e63053ec68e79e1.woff')format("woff");}.ff4{font-family:ff4;line-height:0.974000;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_b17381f86ff4a09c14b600ee.woff')format("woff");}.ff5{font-family:ff5;line-height:0.669434;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_268f45649ef6df1598dd3f19.woff')format("woff");}.ff6{font-family:ff6;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m19{transform:matrix(0.013347,-0.249643,0.249643,0.013347,0,0);-ms-transform:matrix(0.013347,-0.249643,0.249643,0.013347,0,0);-webkit-transform:matrix(0.013347,-0.249643,0.249643,0.013347,0,0);}
.me{transform:matrix(0.013351,-0.249643,0.249643,0.013351,0,0);-ms-transform:matrix(0.013351,-0.249643,0.249643,0.013351,0,0);-webkit-transform:matrix(0.013351,-0.249643,0.249643,0.013351,0,0);}
.m0{transform:matrix(0.014827,-0.249560,0.249560,0.014827,0,0);-ms-transform:matrix(0.014827,-0.249560,0.249560,0.014827,0,0);-webkit-transform:matrix(0.014827,-0.249560,0.249560,0.014827,0,0);}
.mf{transform:matrix(0.036007,-0.247393,0.247393,0.036007,0,0);-ms-transform:matrix(0.036007,-0.247393,0.247393,0.036007,0,0);-webkit-transform:matrix(0.036007,-0.247393,0.247393,0.036007,0,0);}
.m1a{transform:matrix(0.039559,-0.246850,0.246850,0.039559,0,0);-ms-transform:matrix(0.039559,-0.246850,0.246850,0.039559,0,0);-webkit-transform:matrix(0.039559,-0.246850,0.246850,0.039559,0,0);}
.m1{transform:matrix(0.044495,-0.246008,0.246008,0.044495,0,0);-ms-transform:matrix(0.044495,-0.246008,0.246008,0.044495,0,0);-webkit-transform:matrix(0.044495,-0.246008,0.246008,0.044495,0,0);}
.m2{transform:matrix(0.066148,-0.241090,0.241090,0.066148,0,0);-ms-transform:matrix(0.066148,-0.241090,0.241090,0.066148,0,0);-webkit-transform:matrix(0.066148,-0.241090,0.241090,0.066148,0,0);}
.m1b{transform:matrix(0.067647,-0.240674,0.240674,0.067647,0,0);-ms-transform:matrix(0.067647,-0.240674,0.240674,0.067647,0,0);-webkit-transform:matrix(0.067647,-0.240674,0.240674,0.067647,0,0);}
.m10{transform:matrix(0.071703,-0.239497,0.239497,0.071703,0,0);-ms-transform:matrix(0.071703,-0.239497,0.239497,0.071703,0,0);-webkit-transform:matrix(0.071703,-0.239497,0.239497,0.071703,0,0);}
.m3{transform:matrix(0.089383,-0.233475,0.233475,0.089383,0,0);-ms-transform:matrix(0.089383,-0.233475,0.233475,0.089383,0,0);-webkit-transform:matrix(0.089383,-0.233475,0.233475,0.089383,0,0);}
.m1c{transform:matrix(0.095531,-0.231028,0.231028,0.095531,0,0);-ms-transform:matrix(0.095531,-0.231028,0.231028,0.095531,0,0);-webkit-transform:matrix(0.095531,-0.231028,0.231028,0.095531,0,0);}
.m11{transform:matrix(0.106976,-0.225956,0.225956,0.106976,0,0);-ms-transform:matrix(0.106976,-0.225956,0.225956,0.106976,0,0);-webkit-transform:matrix(0.106976,-0.225956,0.225956,0.106976,0,0);}
.m4{transform:matrix(0.113844,-0.222575,0.222575,0.113844,0,0);-ms-transform:matrix(0.113844,-0.222575,0.222575,0.113844,0,0);-webkit-transform:matrix(0.113844,-0.222575,0.222575,0.113844,0,0);}
.m1d{transform:matrix(0.118671,-0.220039,0.220039,0.118671,0,0);-ms-transform:matrix(0.118671,-0.220039,0.220039,0.118671,0,0);-webkit-transform:matrix(0.118671,-0.220039,0.220039,0.118671,0,0);}
.m12{transform:matrix(0.129659,-0.213749,0.213749,0.129659,0,0);-ms-transform:matrix(0.129659,-0.213749,0.213749,0.129659,0,0);-webkit-transform:matrix(0.129659,-0.213749,0.213749,0.129659,0,0);}
.m5{transform:matrix(0.133343,-0.211470,0.211470,0.133343,0,0);-ms-transform:matrix(0.133343,-0.211470,0.211470,0.133343,0,0);-webkit-transform:matrix(0.133343,-0.211470,0.211470,0.133343,0,0);}
.m1e{transform:matrix(0.134217,-0.210917,0.210917,0.134217,0,0);-ms-transform:matrix(0.134217,-0.210917,0.210917,0.134217,0,0);-webkit-transform:matrix(0.134217,-0.210917,0.210917,0.134217,0,0);}
.m13{transform:matrix(0.143622,-0.204628,0.204628,0.143622,0,0);-ms-transform:matrix(0.143622,-0.204628,0.204628,0.143622,0,0);-webkit-transform:matrix(0.143622,-0.204628,0.204628,0.143622,0,0);}
.md{transform:matrix(0.146863,-0.202315,0.202315,0.146863,0,0);-ms-transform:matrix(0.146863,-0.202315,0.202315,0.146863,0,0);-webkit-transform:matrix(0.146863,-0.202315,0.202315,0.146863,0,0);}
.m1f{transform:matrix(0.148072,-0.201432,0.201432,0.148072,0,0);-ms-transform:matrix(0.148072,-0.201432,0.201432,0.148072,0,0);-webkit-transform:matrix(0.148072,-0.201432,0.201432,0.148072,0,0);}
.m6{transform:matrix(0.153366,-0.197430,0.197430,0.153366,0,0);-ms-transform:matrix(0.153366,-0.197430,0.197430,0.153366,0,0);-webkit-transform:matrix(0.153366,-0.197430,0.197430,0.153366,0,0);}
.m14{transform:matrix(0.155646,-0.195638,0.195638,0.155646,0,0);-ms-transform:matrix(0.155646,-0.195638,0.195638,0.155646,0,0);-webkit-transform:matrix(0.155646,-0.195638,0.195638,0.155646,0,0);}
.m20{transform:matrix(0.161276,-0.191024,0.191024,0.161276,0,0);-ms-transform:matrix(0.161276,-0.191024,0.191024,0.161276,0,0);-webkit-transform:matrix(0.161276,-0.191024,0.191024,0.161276,0,0);}
.m7{transform:matrix(0.166173,-0.186779,0.186779,0.166173,0,0);-ms-transform:matrix(0.166173,-0.186779,0.186779,0.166173,0,0);-webkit-transform:matrix(0.166173,-0.186779,0.186779,0.166173,0,0);}
.m15{transform:matrix(0.172950,-0.180522,0.180522,0.172950,0,0);-ms-transform:matrix(0.172950,-0.180522,0.180522,0.172950,0,0);-webkit-transform:matrix(0.172950,-0.180522,0.180522,0.172950,0,0);}
.m21{transform:matrix(0.177036,-0.176517,0.176517,0.177036,0,0);-ms-transform:matrix(0.177036,-0.176517,0.176517,0.177036,0,0);-webkit-transform:matrix(0.177036,-0.176517,0.176517,0.177036,0,0);}
.m8{transform:matrix(0.178349,-0.175190,0.175190,0.178349,0,0);-ms-transform:matrix(0.178349,-0.175190,0.175190,0.178349,0,0);-webkit-transform:matrix(0.178349,-0.175190,0.175190,0.178349,0,0);}
.m16{transform:matrix(0.189328,-0.163263,0.163263,0.189328,0,0);-ms-transform:matrix(0.189328,-0.163263,0.163263,0.189328,0,0);-webkit-transform:matrix(0.189328,-0.163263,0.163263,0.189328,0,0);}
.m9{transform:matrix(0.190602,-0.161774,0.161774,0.190602,0,0);-ms-transform:matrix(0.190602,-0.161774,0.161774,0.190602,0,0);-webkit-transform:matrix(0.190602,-0.161774,0.161774,0.190602,0,0);}
.m22{transform:matrix(0.196565,-0.154474,0.154474,0.196565,0,0);-ms-transform:matrix(0.196565,-0.154474,0.154474,0.196565,0,0);-webkit-transform:matrix(0.196565,-0.154474,0.154474,0.196565,0,0);}
.m17{transform:matrix(0.201763,-0.147620,0.147620,0.201763,0,0);-ms-transform:matrix(0.201763,-0.147620,0.147620,0.201763,0,0);-webkit-transform:matrix(0.201763,-0.147620,0.147620,0.201763,0,0);}
.ma{transform:matrix(0.203192,-0.145647,0.145647,0.203192,0,0);-ms-transform:matrix(0.203192,-0.145647,0.145647,0.203192,0,0);-webkit-transform:matrix(0.203192,-0.145647,0.145647,0.203192,0,0);}
.m2e{transform:matrix(0.211371,0.133500,-0.133500,0.211371,0,0);-ms-transform:matrix(0.211371,0.133500,-0.133500,0.211371,0,0);-webkit-transform:matrix(0.211371,0.133500,-0.133500,0.211371,0,0);}
.m23{transform:matrix(0.211522,-0.133261,0.133261,0.211522,0,0);-ms-transform:matrix(0.211522,-0.133261,0.133261,0.211522,0,0);-webkit-transform:matrix(0.211522,-0.133261,0.133261,0.211522,0,0);}
.m18{transform:matrix(0.213356,-0.130305,0.130305,0.213356,0,0);-ms-transform:matrix(0.213356,-0.130305,0.130305,0.213356,0,0);-webkit-transform:matrix(0.213356,-0.130305,0.130305,0.213356,0,0);}
.mb{transform:matrix(0.216466,-0.125070,0.125070,0.216466,0,0);-ms-transform:matrix(0.216466,-0.125070,0.125070,0.216466,0,0);-webkit-transform:matrix(0.216466,-0.125070,0.125070,0.216466,0,0);}
.m24{transform:matrix(0.222942,-0.113123,0.113123,0.222942,0,0);-ms-transform:matrix(0.222942,-0.113123,0.113123,0.222942,0,0);-webkit-transform:matrix(0.222942,-0.113123,0.113123,0.222942,0,0);}
.m2d{transform:matrix(0.224091,0.110830,-0.110830,0.224091,0,0);-ms-transform:matrix(0.224091,0.110830,-0.110830,0.224091,0,0);-webkit-transform:matrix(0.224091,0.110830,-0.110830,0.224091,0,0);}
.m25{transform:matrix(0.232536,-0.091799,0.091799,0.232536,0,0);-ms-transform:matrix(0.232536,-0.091799,0.091799,0.232536,0,0);-webkit-transform:matrix(0.232536,-0.091799,0.091799,0.232536,0,0);}
.m2c{transform:matrix(0.235673,0.083416,-0.083416,0.235673,0,0);-ms-transform:matrix(0.235673,0.083416,-0.083416,0.235673,0,0);-webkit-transform:matrix(0.235673,0.083416,-0.083416,0.235673,0,0);}
.m26{transform:matrix(0.241609,-0.064225,0.064225,0.241609,0,0);-ms-transform:matrix(0.241609,-0.064225,0.064225,0.241609,0,0);-webkit-transform:matrix(0.241609,-0.064225,0.064225,0.241609,0,0);}
.m2b{transform:matrix(0.242030,0.062623,-0.062623,0.242030,0,0);-ms-transform:matrix(0.242030,0.062623,-0.062623,0.242030,0,0);-webkit-transform:matrix(0.242030,0.062623,-0.062623,0.242030,0,0);}
.m2a{transform:matrix(0.245725,0.046034,-0.046034,0.245725,0,0);-ms-transform:matrix(0.245725,0.046034,-0.046034,0.245725,0,0);-webkit-transform:matrix(0.245725,0.046034,-0.046034,0.245725,0,0);}
.m27{transform:matrix(0.246342,-0.042612,0.042612,0.246342,0,0);-ms-transform:matrix(0.246342,-0.042612,0.042612,0.246342,0,0);-webkit-transform:matrix(0.246342,-0.042612,0.042612,0.246342,0,0);}
.m29{transform:matrix(0.248940,0.023001,-0.023001,0.248940,0,0);-ms-transform:matrix(0.248940,0.023001,-0.023001,0.248940,0,0);-webkit-transform:matrix(0.248940,0.023001,-0.023001,0.248940,0,0);}
.m28{transform:matrix(0.249659,-0.013050,0.013050,0.249659,0,0);-ms-transform:matrix(0.249659,-0.013050,0.013050,0.249659,0,0);-webkit-transform:matrix(0.249659,-0.013050,0.013050,0.249659,0,0);}
.m2f{transform:matrix(0.249988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249988,0.000000,0.000000,0.250000,0,0);}
.mc{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);}
.v1{vertical-align:-29.859600px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:19.980600px;}
.v2{vertical-align:60.392400px;}
.ls2{letter-spacing:-19.574251px;}
.ls3{letter-spacing:-15.264000px;}
.ls4{letter-spacing:-1.380000px;}
.ls5{letter-spacing:-1.020000px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.027600px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1{word-spacing:-31.392000px;}
.ws2{word-spacing:-18.312000px;}
.ws0{word-spacing:-16.128000px;}
.ws5{word-spacing:-11.007605px;}
.ws4{word-spacing:-11.007082px;}
.ws3{word-spacing:-7.625640px;}
.ws8{word-spacing:-2.352000px;}
.ws6{word-spacing:0.000000px;}
.wsa{word-spacing:1.020000px;}
.ws9{word-spacing:1.380000px;}
.ws7{word-spacing:19.574251px;}
._7{margin-left:-10.512000px;}
._9{margin-left:-8.148000px;}
._2{margin-left:-5.451600px;}
._a{margin-left:-4.284000px;}
._3{margin-left:-2.894400px;}
._0{margin-left:-1.680000px;}
._1{width:2.016000px;}
._5{width:10.193400px;}
._4{width:15.264000px;}
._8{width:43.267800px;}
._6{width:49.807200px;}
.fc3{color:rgb(255,255,255);}
.fc2{color:rgb(11,132,161);}
.fc1{color:rgb(229,195,23);}
.fc0{color:rgb(23,20,18);}
.fs36{font-size:34.980000px;}
.fs1d{font-size:48.000000px;}
.fs37{font-size:50.491200px;}
.fs38{font-size:50.493600px;}
.fs35{font-size:54.000000px;}
.fse{font-size:60.000000px;}
.fs1e{font-size:72.000000px;}
.fs1a{font-size:84.000000px;}
.fs1c{font-size:96.000000px;}
.fs1f{font-size:108.000000px;}
.fs1b{font-size:144.000000px;}
.fsd{font-size:145.574582px;}
.fs10{font-size:145.574841px;}
.fs13{font-size:145.574880px;}
.fs18{font-size:145.574898px;}
.fs16{font-size:145.575061px;}
.fs17{font-size:145.575063px;}
.fsf{font-size:145.575132px;}
.fs19{font-size:145.575205px;}
.fs15{font-size:145.575247px;}
.fs11{font-size:145.575289px;}
.fs12{font-size:145.575302px;}
.fs14{font-size:145.575431px;}
.fs2a{font-size:150.052659px;}
.fs32{font-size:150.052742px;}
.fs2f{font-size:150.052787px;}
.fs25{font-size:150.052819px;}
.fs23{font-size:150.052838px;}
.fs2c{font-size:150.052870px;}
.fs31{font-size:150.052874px;}
.fs33{font-size:150.052940px;}
.fs29{font-size:150.052961px;}
.fs26{font-size:150.053005px;}
.fs28{font-size:150.053029px;}
.fs34{font-size:150.053045px;}
.fs2b{font-size:150.053068px;}
.fs22{font-size:150.053103px;}
.fs24{font-size:150.053115px;}
.fs2d{font-size:150.053125px;}
.fs2e{font-size:150.053166px;}
.fs20{font-size:150.053208px;}
.fs30{font-size:150.053221px;}
.fs21{font-size:150.053268px;}
.fs27{font-size:150.053378px;}
.fs9{font-size:153.487961px;}
.fsa{font-size:153.488177px;}
.fs5{font-size:153.488317px;}
.fs8{font-size:153.488323px;}
.fs2{font-size:153.488402px;}
.fs6{font-size:153.488461px;}
.fsb{font-size:153.488484px;}
.fs3{font-size:153.488510px;}
.fs4{font-size:153.488519px;}
.fs7{font-size:153.488541px;}
.fs0{font-size:153.488587px;}
.fs1{font-size:153.488601px;}
.fsc{font-size:425.527200px;}
.y0{bottom:0.000000px;}
.yb1{bottom:62.743650px;}
.yaf{bottom:67.907250px;}
.yae{bottom:85.907250px;}
.yb0{bottom:92.301300px;}
.y7d{bottom:167.512350px;}
.y87{bottom:167.525850px;}
.y78{bottom:182.510850px;}
.y86{bottom:182.524350px;}
.y77{bottom:197.509350px;}
.y85{bottom:197.522850px;}
.y76{bottom:212.507850px;}
.y84{bottom:212.521350px;}
.y75{bottom:227.506350px;}
.y83{bottom:227.519850px;}
.y8d{bottom:227.533350px;}
.y5f{bottom:230.668950px;}
.y60{bottom:248.515200px;}
.y61{bottom:267.386700px;}
.y62{bottom:286.910100px;}
.y63{bottom:305.437500px;}
.y81{bottom:316.471350px;}
.y64{bottom:318.788100px;}
.y7b{bottom:319.670850px;}
.y8c{bottom:319.792350px;}
.y65{bottom:326.869650px;}
.y80{bottom:331.469850px;}
.y7a{bottom:334.669350px;}
.y8b{bottom:334.790850px;}
.y66{bottom:337.838400px;}
.y67{bottom:345.222600px;}
.y7f{bottom:346.468350px;}
.y79{bottom:349.667850px;}
.y8a{bottom:349.789350px;}
.y68{bottom:359.421450px;}
.y7e{bottom:361.466850px;}
.y7c{bottom:364.666350px;}
.y89{bottom:364.787850px;}
.y69{bottom:372.174300px;}
.y82{bottom:376.465350px;}
.y88{bottom:379.786350px;}
.y6a{bottom:380.250000px;}
.y74{bottom:380.416950px;}
.y6b{bottom:387.128850px;}
.y73{bottom:389.714400px;}
.y6c{bottom:394.173300px;}
.y72{bottom:396.336900px;}
.y71{bottom:398.459400px;}
.y6d{bottom:399.307650px;}
.y70{bottom:401.028750px;}
.y6e{bottom:401.589900px;}
.y6f{bottom:402.845250px;}
.y46{bottom:481.400400px;}
.y40{bottom:487.782750px;}
.y45{bottom:502.664100px;}
.y3f{bottom:503.478450px;}
.y3e{bottom:516.402900px;}
.y44{bottom:522.788100px;}
.y5e{bottom:535.028250px;}
.y3d{bottom:545.917950px;}
.y48{bottom:550.385700px;}
.y4a{bottom:551.935500px;}
.y5d{bottom:557.063250px;}
.y3c{bottom:561.615300px;}
.y49{bottom:565.483950px;}
.y47{bottom:570.509700px;}
.y5c{bottom:579.095250px;}
.y3b{bottom:586.574700px;}
.y4c{bottom:598.108950px;}
.y4d{bottom:599.658750px;}
.y5b{bottom:601.140600px;}
.y3a{bottom:602.271900px;}
.y4b{bottom:618.232950px;}
.y5a{bottom:623.169600px;}
.y39{bottom:636.212400px;}
.y59{bottom:645.198600px;}
.y41{bottom:651.046800px;}
.y38{bottom:651.908250px;}
.y37{bottom:664.832550px;}
.y58{bottom:667.227600px;}
.y43{bottom:682.793850px;}
.y36{bottom:691.974600px;}
.y57{bottom:703.757850px;}
.y35{bottom:710.443350px;}
.y42{bottom:714.257850px;}
.y34{bottom:723.911100px;}
.y28{bottom:772.386150px;}
.y55{bottom:773.216250px;}
.y33{bottom:790.125600px;}
.y27{bottom:794.415150px;}
.y54{bottom:795.245250px;}
.y32{bottom:812.154600px;}
.y26{bottom:816.444150px;}
.y53{bottom:817.274250px;}
.y31{bottom:834.183600px;}
.y25{bottom:838.473150px;}
.y52{bottom:839.303250px;}
.y30{bottom:856.212600px;}
.y1{bottom:857.444850px;}
.y24{bottom:860.502150px;}
.y51{bottom:861.332250px;}
.y2f{bottom:878.241600px;}
.y2{bottom:878.393550px;}
.y23{bottom:882.531150px;}
.y50{bottom:883.361250px;}
.y3{bottom:899.378850px;}
.y2e{bottom:900.270600px;}
.y22{bottom:904.560150px;}
.y4{bottom:908.748000px;}
.y2d{bottom:922.299600px;}
.y4f{bottom:926.054250px;}
.y21{bottom:926.589150px;}
.y5{bottom:931.538100px;}
.y6{bottom:942.944850px;}
.y4e{bottom:946.718250px;}
.y20{bottom:948.618150px;}
.y7{bottom:959.081550px;}
.y2c{bottom:962.661600px;}
.y8{bottom:971.320350px;}
.y29{bottom:974.355450px;}
.y9{bottom:977.342250px;}
.ya{bottom:988.416450px;}
.yb{bottom:994.860300px;}
.y2b{bottom:996.040950px;}
.y56{bottom:998.355450px;}
.yc{bottom:1005.941850px;}
.y2a{bottom:1009.508850px;}
.y11{bottom:1102.391550px;}
.y10{bottom:1120.391550px;}
.y9c{bottom:1125.338400px;}
.y91{bottom:1135.914600px;}
.yf{bottom:1138.391550px;}
.y9b{bottom:1143.338400px;}
.y90{bottom:1153.914600px;}
.yad{bottom:1157.003850px;}
.y9a{bottom:1161.338400px;}
.y8f{bottom:1171.914600px;}
.yac{bottom:1175.003850px;}
.y14{bottom:1182.551550px;}
.y8e{bottom:1189.914600px;}
.yab{bottom:1193.003850px;}
.y13{bottom:1200.551550px;}
.y94{bottom:1202.274600px;}
.yaa{bottom:1211.003850px;}
.y12{bottom:1218.551550px;}
.y93{bottom:1220.274600px;}
.y92{bottom:1238.274600px;}
.y9f{bottom:1344.420450px;}
.y9e{bottom:1362.420450px;}
.y9d{bottom:1380.420450px;}
.yd{bottom:1417.413600px;}
.y15{bottom:1451.989800px;}
.y16{bottom:1467.171450px;}
.y17{bottom:1484.988300px;}
.y18{bottom:1514.241150px;}
.y19{bottom:1532.031750px;}
.y1a{bottom:1544.594250px;}
.ye{bottom:1547.837100px;}
.y1b{bottom:1550.843250px;}
.y1c{bottom:1560.218250px;}
.y1d{bottom:1574.251500px;}
.y1e{bottom:1582.766550px;}
.y1f{bottom:1590.584400px;}
.ya3{bottom:1641.987300px;}
.ya2{bottom:1659.987300px;}
.ya1{bottom:1677.987300px;}
.y99{bottom:1689.418950px;}
.ya9{bottom:1692.156750px;}
.ya0{bottom:1695.987300px;}
.y98{bottom:1707.418950px;}
.ya8{bottom:1710.156750px;}
.ya6{bottom:1713.958050px;}
.y97{bottom:1725.418950px;}
.ya7{bottom:1728.156750px;}
.ya5{bottom:1731.958050px;}
.yb3{bottom:1736.898900px;}
.y96{bottom:1743.418950px;}
.ya4{bottom:1749.958050px;}
.yb2{bottom:1754.898900px;}
.y95{bottom:1761.418950px;}
.h20{height:37.488000px;}
.h3c{height:39.433627px;}
.h3d{height:39.435502px;}
.h3a{height:40.554000px;}
.h39{height:42.174000px;}
.h1e{height:44.220000px;}
.h10{height:46.860000px;}
.h3b{height:47.299980px;}
.h21{height:56.232000px;}
.h1c{height:65.604000px;}
.h1f{height:70.752000px;}
.h22{height:84.348000px;}
.hf{height:96.952672px;}
.h1d{height:123.984000px;}
.h12{height:125.339938px;}
.h15{height:125.339972px;}
.h1a{height:125.339987px;}
.h18{height:125.340127px;}
.h19{height:125.340130px;}
.h11{height:125.340189px;}
.h1b{height:125.340251px;}
.h17{height:125.340288px;}
.h13{height:125.340324px;}
.h14{height:125.340335px;}
.h16{height:125.340446px;}
.h2e{height:129.195339px;}
.h36{height:129.195411px;}
.h33{height:129.195450px;}
.h29{height:129.195477px;}
.h27{height:129.195493px;}
.h30{height:129.195521px;}
.h35{height:129.195524px;}
.h37{height:129.195581px;}
.h2d{height:129.195599px;}
.h2a{height:129.195637px;}
.h2c{height:129.195658px;}
.h38{height:129.195672px;}
.h2f{height:129.195691px;}
.h26{height:129.195722px;}
.h28{height:129.195732px;}
.h31{height:129.195740px;}
.h32{height:129.195776px;}
.h24{height:129.195812px;}
.h34{height:129.195823px;}
.h25{height:129.195864px;}
.h2b{height:129.195958px;}
.hb{height:132.153135px;}
.hc{height:132.153320px;}
.h7{height:132.153441px;}
.ha{height:132.153446px;}
.h4{height:132.153514px;}
.h8{height:132.153565px;}
.hd{height:132.153585px;}
.h5{height:132.153607px;}
.h6{height:132.153615px;}
.h9{height:132.153634px;}
.h2{height:132.153673px;}
.h3{height:132.153685px;}
.h23{height:144.740400px;}
.he{height:332.336743px;}
.h1{height:1811.250000px;}
.h0{height:1811.340000px;}
.w0{width:1288.347000px;}
.w1{width:1288.500000px;}
.x0{left:0.000000px;}
.x13{left:45.966900px;}
.x1{left:69.827700px;}
.x2{left:71.018550px;}
.x12{left:72.111900px;}
.x48{left:73.710900px;}
.x3{left:75.054150px;}
.x4{left:77.213400px;}
.x2d{left:79.920450px;}
.x14{left:84.861900px;}
.x5{left:86.230950px;}
.x6{left:91.869150px;}
.x49{left:94.226100px;}
.x4a{left:99.271050px;}
.x7{left:102.117150px;}
.x2e{left:103.540950px;}
.x15{left:105.763200px;}
.x4b{left:107.402400px;}
.x16{left:108.477600px;}
.x8{left:111.766050px;}
.x4c{left:113.305650px;}
.x58{left:115.616250px;}
.x9{left:116.926800px;}
.x56{left:119.153250px;}
.x57{left:123.594750px;}
.x17{left:126.143550px;}
.xa{left:128.337900px;}
.x18{left:133.889700px;}
.xb{left:135.596250px;}
.x19{left:138.172800px;}
.x4d{left:143.875500px;}
.xe{left:145.843650px;}
.xc{left:151.161600px;}
.x4e{left:156.565500px;}
.x1a{left:158.998500px;}
.x1b{left:168.859800px;}
.x1c{left:179.456550px;}
.x2f{left:183.476100px;}
.x4f{left:187.335900px;}
.x5e{left:192.903750px;}
.x5d{left:196.116750px;}
.x50{left:207.534600px;}
.x51{left:216.597600px;}
.xf{left:232.086900px;}
.x10{left:244.566900px;}
.x52{left:248.148900px;}
.x11{left:250.806900px;}
.x53{left:266.844750px;}
.x2a{left:279.155250px;}
.x54{left:280.256850px;}
.x26{left:283.614300px;}
.x28{left:287.177250px;}
.x55{left:289.485300px;}
.x5b{left:298.973250px;}
.x29{left:300.302250px;}
.x5c{left:304.494750px;}
.x27{left:308.408250px;}
.x5a{left:312.554250px;}
.x59{left:316.901250px;}
.x2c{left:326.972250px;}
.x2b{left:334.406250px;}
.x90{left:348.593850px;}
.x91{left:350.813850px;}
.x8f{left:377.003850px;}
.x7a{left:381.366150px;}
.x7c{left:387.486150px;}
.x60{left:403.395750px;}
.x5f{left:408.498750px;}
.x7d{left:416.961150px;}
.x7b{left:421.881150px;}
.x61{left:437.834250px;}
.x31{left:462.883350px;}
.x37{left:481.728450px;}
.x95{left:497.011200px;}
.x62{left:502.242750px;}
.x64{left:503.309250px;}
.x63{left:508.830750px;}
.x30{left:511.750500px;}
.x32{left:521.620650px;}
.x99{left:524.592900px;}
.x36{left:536.755350px;}
.x98{left:550.152900px;}
.x35{left:553.337400px;}
.x6a{left:606.935250px;}
.x68{left:612.686250px;}
.x33{left:613.700700px;}
.x34{left:617.425800px;}
.x69{left:627.428250px;}
.x3a{left:645.228900px;}
.x7f{left:656.946150px;}
.x38{left:658.521900px;}
.x39{left:660.600900px;}
.x7e{left:671.286150px;}
.x3f{left:673.277400px;}
.x3c{left:696.888900px;}
.x81{left:703.389900px;}
.x80{left:707.334900px;}
.x67{left:711.722250px;}
.x3b{left:713.478900px;}
.x3e{left:715.305900px;}
.x66{left:721.050750px;}
.x3d{left:726.288900px;}
.x65{left:731.513250px;}
.x6c{left:782.043750px;}
.x6b{left:804.008250px;}
.xd{left:808.119150px;}
.x6e{left:813.741750px;}
.x6f{left:816.590250px;}
.x6d{left:832.061250px;}
.x82{left:836.078550px;}
.x83{left:838.763550px;}
.x84{left:843.263550px;}
.x97{left:860.377500px;}
.x40{left:866.778750px;}
.x44{left:870.753600px;}
.x41{left:872.349600px;}
.x46{left:874.569300px;}
.x45{left:877.737300px;}
.x8a{left:881.588700px;}
.x43{left:883.710600px;}
.x47{left:885.777900px;}
.x89{left:902.138700px;}
.x8b{left:906.443700px;}
.x42{left:908.343600px;}
.x88{left:910.073700px;}
.x79{left:937.779750px;}
.x96{left:956.992650px;}
.x21{left:968.692350px;}
.x20{left:978.226350px;}
.x25{left:986.802300px;}
.x22{left:993.409350px;}
.x1e{left:1004.497350px;}
.x1f{left:1012.078350px;}
.x1d{left:1021.192350px;}
.x77{left:1026.852750px;}
.x76{left:1030.430250px;}
.x23{left:1033.855350px;}
.x24{left:1035.451350px;}
.x92{left:1038.287100px;}
.x78{left:1039.367250px;}
.x75{left:1042.634250px;}
.x93{left:1044.032100px;}
.x94{left:1045.937100px;}
.x8c{left:1064.080050px;}
.x8e{left:1070.890050px;}
.x8d{left:1100.245050px;}
.x71{left:1108.770750px;}
.x74{left:1109.985750px;}
.x85{left:1115.102100px;}
.x72{left:1122.270750px;}
.x73{left:1126.833750px;}
.x87{left:1134.565800px;}
.x70{left:1139.685750px;}
.x86{left:1142.057100px;}
@media print{
.v1{vertical-align:-26.541867pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:17.760533pt;}
.v2{vertical-align:53.682133pt;}
.ls2{letter-spacing:-17.399334pt;}
.ls3{letter-spacing:-13.568000pt;}
.ls4{letter-spacing:-1.226667pt;}
.ls5{letter-spacing:-0.906667pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.024533pt;}
.ws1{word-spacing:-27.904000pt;}
.ws2{word-spacing:-16.277333pt;}
.ws0{word-spacing:-14.336000pt;}
.ws5{word-spacing:-9.784538pt;}
.ws4{word-spacing:-9.784073pt;}
.ws3{word-spacing:-6.778347pt;}
.ws8{word-spacing:-2.090667pt;}
.ws6{word-spacing:0.000000pt;}
.wsa{word-spacing:0.906667pt;}
.ws9{word-spacing:1.226667pt;}
.ws7{word-spacing:17.399334pt;}
._7{margin-left:-9.344000pt;}
._9{margin-left:-7.242667pt;}
._2{margin-left:-4.845867pt;}
._a{margin-left:-3.808000pt;}
._3{margin-left:-2.572800pt;}
._0{margin-left:-1.493333pt;}
._1{width:1.792000pt;}
._5{width:9.060800pt;}
._4{width:13.568000pt;}
._8{width:38.460267pt;}
._6{width:44.273067pt;}
.fs36{font-size:31.093333pt;}
.fs1d{font-size:42.666667pt;}
.fs37{font-size:44.881067pt;}
.fs38{font-size:44.883200pt;}
.fs35{font-size:48.000000pt;}
.fse{font-size:53.333333pt;}
.fs1e{font-size:64.000000pt;}
.fs1a{font-size:74.666667pt;}
.fs1c{font-size:85.333333pt;}
.fs1f{font-size:96.000000pt;}
.fs1b{font-size:128.000000pt;}
.fsd{font-size:129.399628pt;}
.fs10{font-size:129.399859pt;}
.fs13{font-size:129.399894pt;}
.fs18{font-size:129.399909pt;}
.fs16{font-size:129.400054pt;}
.fs17{font-size:129.400056pt;}
.fsf{font-size:129.400118pt;}
.fs19{font-size:129.400182pt;}
.fs15{font-size:129.400220pt;}
.fs11{font-size:129.400257pt;}
.fs12{font-size:129.400269pt;}
.fs14{font-size:129.400383pt;}
.fs2a{font-size:133.380141pt;}
.fs32{font-size:133.380215pt;}
.fs2f{font-size:133.380255pt;}
.fs25{font-size:133.380284pt;}
.fs23{font-size:133.380300pt;}
.fs2c{font-size:133.380329pt;}
.fs31{font-size:133.380332pt;}
.fs33{font-size:133.380391pt;}
.fs29{font-size:133.380410pt;}
.fs26{font-size:133.380449pt;}
.fs28{font-size:133.380471pt;}
.fs34{font-size:133.380485pt;}
.fs2b{font-size:133.380505pt;}
.fs22{font-size:133.380536pt;}
.fs24{font-size:133.380546pt;}
.fs2d{font-size:133.380555pt;}
.fs2e{font-size:133.380592pt;}
.fs20{font-size:133.380629pt;}
.fs30{font-size:133.380641pt;}
.fs21{font-size:133.380683pt;}
.fs27{font-size:133.380780pt;}
.fs9{font-size:136.433743pt;}
.fsa{font-size:136.433935pt;}
.fs5{font-size:136.434059pt;}
.fs8{font-size:136.434065pt;}
.fs2{font-size:136.434135pt;}
.fs6{font-size:136.434188pt;}
.fsb{font-size:136.434208pt;}
.fs3{font-size:136.434231pt;}
.fs4{font-size:136.434239pt;}
.fs7{font-size:136.434258pt;}
.fs0{font-size:136.434300pt;}
.fs1{font-size:136.434312pt;}
.fsc{font-size:378.246400pt;}
.y0{bottom:0.000000pt;}
.yb1{bottom:55.772133pt;}
.yaf{bottom:60.362000pt;}
.yae{bottom:76.362000pt;}
.yb0{bottom:82.045600pt;}
.y7d{bottom:148.899867pt;}
.y87{bottom:148.911867pt;}
.y78{bottom:162.231867pt;}
.y86{bottom:162.243867pt;}
.y77{bottom:175.563867pt;}
.y85{bottom:175.575867pt;}
.y76{bottom:188.895867pt;}
.y84{bottom:188.907867pt;}
.y75{bottom:202.227867pt;}
.y83{bottom:202.239867pt;}
.y8d{bottom:202.251867pt;}
.y5f{bottom:205.039067pt;}
.y60{bottom:220.902400pt;}
.y61{bottom:237.677067pt;}
.y62{bottom:255.031200pt;}
.y63{bottom:271.500000pt;}
.y81{bottom:281.307867pt;}
.y64{bottom:283.367200pt;}
.y7b{bottom:284.151867pt;}
.y8c{bottom:284.259867pt;}
.y65{bottom:290.550800pt;}
.y80{bottom:294.639867pt;}
.y7a{bottom:297.483867pt;}
.y8b{bottom:297.591867pt;}
.y66{bottom:300.300800pt;}
.y67{bottom:306.864533pt;}
.y7f{bottom:307.971867pt;}
.y79{bottom:310.815867pt;}
.y8a{bottom:310.923867pt;}
.y68{bottom:319.485733pt;}
.y7e{bottom:321.303867pt;}
.y7c{bottom:324.147867pt;}
.y89{bottom:324.255867pt;}
.y69{bottom:330.821600pt;}
.y82{bottom:334.635867pt;}
.y88{bottom:337.587867pt;}
.y6a{bottom:338.000000pt;}
.y74{bottom:338.148400pt;}
.y6b{bottom:344.114533pt;}
.y73{bottom:346.412800pt;}
.y6c{bottom:350.376267pt;}
.y72{bottom:352.299467pt;}
.y71{bottom:354.186133pt;}
.y6d{bottom:354.940133pt;}
.y70{bottom:356.470000pt;}
.y6e{bottom:356.968800pt;}
.y6f{bottom:358.084667pt;}
.y46{bottom:427.911467pt;}
.y40{bottom:433.584667pt;}
.y45{bottom:446.812533pt;}
.y3f{bottom:447.536400pt;}
.y3e{bottom:459.024800pt;}
.y44{bottom:464.700533pt;}
.y5e{bottom:475.580667pt;}
.y3d{bottom:485.260400pt;}
.y48{bottom:489.231733pt;}
.y4a{bottom:490.609333pt;}
.y5d{bottom:495.167333pt;}
.y3c{bottom:499.213600pt;}
.y49{bottom:502.652400pt;}
.y47{bottom:507.119733pt;}
.y5c{bottom:514.751333pt;}
.y3b{bottom:521.399733pt;}
.y4c{bottom:531.652400pt;}
.y4d{bottom:533.030000pt;}
.y5b{bottom:534.347200pt;}
.y3a{bottom:535.352800pt;}
.y4b{bottom:549.540400pt;}
.y5a{bottom:553.928533pt;}
.y39{bottom:565.522133pt;}
.y59{bottom:573.509867pt;}
.y41{bottom:578.708267pt;}
.y38{bottom:579.474000pt;}
.y37{bottom:590.962267pt;}
.y58{bottom:593.091200pt;}
.y43{bottom:606.927867pt;}
.y36{bottom:615.088533pt;}
.y57{bottom:625.562533pt;}
.y35{bottom:631.505200pt;}
.y42{bottom:634.895867pt;}
.y34{bottom:643.476533pt;}
.y28{bottom:686.565467pt;}
.y55{bottom:687.303333pt;}
.y33{bottom:702.333867pt;}
.y27{bottom:706.146800pt;}
.y54{bottom:706.884667pt;}
.y32{bottom:721.915200pt;}
.y26{bottom:725.728133pt;}
.y53{bottom:726.466000pt;}
.y31{bottom:741.496533pt;}
.y25{bottom:745.309467pt;}
.y52{bottom:746.047333pt;}
.y30{bottom:761.077867pt;}
.y1{bottom:762.173200pt;}
.y24{bottom:764.890800pt;}
.y51{bottom:765.628667pt;}
.y2f{bottom:780.659200pt;}
.y2{bottom:780.794267pt;}
.y23{bottom:784.472133pt;}
.y50{bottom:785.210000pt;}
.y3{bottom:799.447867pt;}
.y2e{bottom:800.240533pt;}
.y22{bottom:804.053467pt;}
.y4{bottom:807.776000pt;}
.y2d{bottom:819.821867pt;}
.y4f{bottom:823.159333pt;}
.y21{bottom:823.634800pt;}
.y5{bottom:828.033867pt;}
.y6{bottom:838.173200pt;}
.y4e{bottom:841.527333pt;}
.y20{bottom:843.216133pt;}
.y7{bottom:852.516933pt;}
.y2c{bottom:855.699200pt;}
.y8{bottom:863.395867pt;}
.y29{bottom:866.093733pt;}
.y9{bottom:868.748667pt;}
.ya{bottom:878.592400pt;}
.yb{bottom:884.320267pt;}
.y2b{bottom:885.369733pt;}
.y56{bottom:887.427067pt;}
.yc{bottom:894.170533pt;}
.y2a{bottom:897.341200pt;}
.y11{bottom:979.903600pt;}
.y10{bottom:995.903600pt;}
.y9c{bottom:1000.300800pt;}
.y91{bottom:1009.701867pt;}
.yf{bottom:1011.903600pt;}
.y9b{bottom:1016.300800pt;}
.y90{bottom:1025.701867pt;}
.yad{bottom:1028.447867pt;}
.y9a{bottom:1032.300800pt;}
.y8f{bottom:1041.701867pt;}
.yac{bottom:1044.447867pt;}
.y14{bottom:1051.156933pt;}
.y8e{bottom:1057.701867pt;}
.yab{bottom:1060.447867pt;}
.y13{bottom:1067.156933pt;}
.y94{bottom:1068.688533pt;}
.yaa{bottom:1076.447867pt;}
.y12{bottom:1083.156933pt;}
.y93{bottom:1084.688533pt;}
.y92{bottom:1100.688533pt;}
.y9f{bottom:1195.040400pt;}
.y9e{bottom:1211.040400pt;}
.y9d{bottom:1227.040400pt;}
.yd{bottom:1259.923200pt;}
.y15{bottom:1290.657600pt;}
.y16{bottom:1304.152400pt;}
.y17{bottom:1319.989600pt;}
.y18{bottom:1345.992133pt;}
.y19{bottom:1361.806000pt;}
.y1a{bottom:1372.972667pt;}
.ye{bottom:1375.855200pt;}
.y1b{bottom:1378.527333pt;}
.y1c{bottom:1386.860667pt;}
.y1d{bottom:1399.334667pt;}
.y1e{bottom:1406.903600pt;}
.y1f{bottom:1413.852800pt;}
.ya3{bottom:1459.544267pt;}
.ya2{bottom:1475.544267pt;}
.ya1{bottom:1491.544267pt;}
.y99{bottom:1501.705733pt;}
.ya9{bottom:1504.139333pt;}
.ya0{bottom:1507.544267pt;}
.y98{bottom:1517.705733pt;}
.ya8{bottom:1520.139333pt;}
.ya6{bottom:1523.518267pt;}
.y97{bottom:1533.705733pt;}
.ya7{bottom:1536.139333pt;}
.ya5{bottom:1539.518267pt;}
.yb3{bottom:1543.910133pt;}
.y96{bottom:1549.705733pt;}
.ya4{bottom:1555.518267pt;}
.yb2{bottom:1559.910133pt;}
.y95{bottom:1565.705733pt;}
.h20{height:33.322667pt;}
.h3c{height:35.052113pt;}
.h3d{height:35.053779pt;}
.h3a{height:36.048000pt;}
.h39{height:37.488000pt;}
.h1e{height:39.306667pt;}
.h10{height:41.653333pt;}
.h3b{height:42.044427pt;}
.h21{height:49.984000pt;}
.h1c{height:58.314667pt;}
.h1f{height:62.890667pt;}
.h22{height:74.976000pt;}
.hf{height:86.180153pt;}
.h1d{height:110.208000pt;}
.h12{height:111.413278pt;}
.h15{height:111.413308pt;}
.h1a{height:111.413322pt;}
.h18{height:111.413447pt;}
.h19{height:111.413448pt;}
.h11{height:111.413501pt;}
.h1b{height:111.413557pt;}
.h17{height:111.413589pt;}
.h13{height:111.413621pt;}
.h14{height:111.413631pt;}
.h16{height:111.413730pt;}
.h2e{height:114.840302pt;}
.h36{height:114.840365pt;}
.h33{height:114.840400pt;}
.h29{height:114.840424pt;}
.h27{height:114.840438pt;}
.h30{height:114.840464pt;}
.h35{height:114.840466pt;}
.h37{height:114.840516pt;}
.h2d{height:114.840533pt;}
.h2a{height:114.840566pt;}
.h2c{height:114.840585pt;}
.h38{height:114.840597pt;}
.h2f{height:114.840615pt;}
.h26{height:114.840641pt;}
.h28{height:114.840650pt;}
.h31{height:114.840658pt;}
.h32{height:114.840690pt;}
.h24{height:114.840722pt;}
.h34{height:114.840732pt;}
.h25{height:114.840768pt;}
.h2b{height:114.840852pt;}
.hb{height:117.469453pt;}
.hc{height:117.469618pt;}
.h7{height:117.469725pt;}
.ha{height:117.469730pt;}
.h4{height:117.469790pt;}
.h8{height:117.469836pt;}
.hd{height:117.469853pt;}
.h5{height:117.469873pt;}
.h6{height:117.469880pt;}
.h9{height:117.469896pt;}
.h2{height:117.469932pt;}
.h3{height:117.469942pt;}
.h23{height:128.658133pt;}
.he{height:295.410438pt;}
.h1{height:1610.000000pt;}
.h0{height:1610.080000pt;}
.w0{width:1145.197333pt;}
.w1{width:1145.333333pt;}
.x0{left:0.000000pt;}
.x13{left:40.859467pt;}
.x1{left:62.069067pt;}
.x2{left:63.127600pt;}
.x12{left:64.099467pt;}
.x48{left:65.520800pt;}
.x3{left:66.714800pt;}
.x4{left:68.634133pt;}
.x2d{left:71.040400pt;}
.x14{left:75.432800pt;}
.x5{left:76.649733pt;}
.x6{left:81.661467pt;}
.x49{left:83.756533pt;}
.x4a{left:88.240933pt;}
.x7{left:90.770800pt;}
.x2e{left:92.036400pt;}
.x15{left:94.011733pt;}
.x4b{left:95.468800pt;}
.x16{left:96.424533pt;}
.x8{left:99.347600pt;}
.x4c{left:100.716133pt;}
.x58{left:102.770000pt;}
.x9{left:103.934933pt;}
.x56{left:105.914000pt;}
.x57{left:109.862000pt;}
.x17{left:112.127600pt;}
.xa{left:114.078133pt;}
.x18{left:119.013067pt;}
.xb{left:120.530000pt;}
.x19{left:122.820267pt;}
.x4d{left:127.889333pt;}
.xe{left:129.638800pt;}
.xc{left:134.365867pt;}
.x4e{left:139.169333pt;}
.x1a{left:141.332000pt;}
.x1b{left:150.097600pt;}
.x1c{left:159.516933pt;}
.x2f{left:163.089867pt;}
.x4f{left:166.520800pt;}
.x5e{left:171.470000pt;}
.x5d{left:174.326000pt;}
.x50{left:184.475200pt;}
.x51{left:192.531200pt;}
.xf{left:206.299467pt;}
.x10{left:217.392800pt;}
.x52{left:220.576800pt;}
.x11{left:222.939467pt;}
.x53{left:237.195333pt;}
.x2a{left:248.138000pt;}
.x54{left:249.117200pt;}
.x26{left:252.101600pt;}
.x28{left:255.268667pt;}
.x55{left:257.320267pt;}
.x5b{left:265.754000pt;}
.x29{left:266.935333pt;}
.x5c{left:270.662000pt;}
.x27{left:274.140667pt;}
.x5a{left:277.826000pt;}
.x59{left:281.690000pt;}
.x2c{left:290.642000pt;}
.x2b{left:297.250000pt;}
.x90{left:309.861200pt;}
.x91{left:311.834533pt;}
.x8f{left:335.114533pt;}
.x7a{left:338.992133pt;}
.x7c{left:344.432133pt;}
.x60{left:358.574000pt;}
.x5f{left:363.110000pt;}
.x7d{left:370.632133pt;}
.x7b{left:375.005467pt;}
.x61{left:389.186000pt;}
.x31{left:411.451867pt;}
.x37{left:428.203067pt;}
.x95{left:441.787733pt;}
.x62{left:446.438000pt;}
.x64{left:447.386000pt;}
.x63{left:452.294000pt;}
.x30{left:454.889333pt;}
.x32{left:463.662800pt;}
.x99{left:466.304800pt;}
.x36{left:477.115867pt;}
.x98{left:489.024800pt;}
.x35{left:491.855467pt;}
.x6a{left:539.498000pt;}
.x68{left:544.610000pt;}
.x33{left:545.511733pt;}
.x34{left:548.822933pt;}
.x69{left:557.714000pt;}
.x3a{left:573.536800pt;}
.x7f{left:583.952133pt;}
.x38{left:585.352800pt;}
.x39{left:587.200800pt;}
.x7e{left:596.698800pt;}
.x3f{left:598.468800pt;}
.x3c{left:619.456800pt;}
.x81{left:625.235467pt;}
.x80{left:628.742133pt;}
.x67{left:632.642000pt;}
.x3b{left:634.203467pt;}
.x3e{left:635.827467pt;}
.x66{left:640.934000pt;}
.x3d{left:645.590133pt;}
.x65{left:650.234000pt;}
.x6c{left:695.150000pt;}
.x6b{left:714.674000pt;}
.xd{left:718.328133pt;}
.x6e{left:723.326000pt;}
.x6f{left:725.858000pt;}
.x6d{left:739.610000pt;}
.x82{left:743.180933pt;}
.x83{left:745.567600pt;}
.x84{left:749.567600pt;}
.x97{left:764.780000pt;}
.x40{left:770.470000pt;}
.x44{left:774.003200pt;}
.x41{left:775.421867pt;}
.x46{left:777.394933pt;}
.x45{left:780.210933pt;}
.x8a{left:783.634400pt;}
.x43{left:785.520533pt;}
.x47{left:787.358133pt;}
.x89{left:801.901067pt;}
.x8b{left:805.727733pt;}
.x42{left:807.416533pt;}
.x88{left:808.954400pt;}
.x79{left:833.582000pt;}
.x96{left:850.660133pt;}
.x21{left:861.059867pt;}
.x20{left:869.534533pt;}
.x25{left:877.157600pt;}
.x22{left:883.030533pt;}
.x1e{left:892.886533pt;}
.x1f{left:899.625200pt;}
.x1d{left:907.726533pt;}
.x77{left:912.758000pt;}
.x76{left:915.938000pt;}
.x23{left:918.982533pt;}
.x24{left:920.401200pt;}
.x92{left:922.921867pt;}
.x78{left:923.882000pt;}
.x75{left:926.786000pt;}
.x93{left:928.028533pt;}
.x94{left:929.721867pt;}
.x8c{left:945.848933pt;}
.x8e{left:951.902267pt;}
.x8d{left:977.995600pt;}
.x71{left:985.574000pt;}
.x74{left:986.654000pt;}
.x85{left:991.201867pt;}
.x72{left:997.574000pt;}
.x73{left:1001.630000pt;}
.x87{left:1008.502933pt;}
.x70{left:1013.054000pt;}
.x86{left:1015.161867pt;}
}




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