
    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_02812d54ac4bdb8e24ac7a98.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.067000;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_3660de6bf5e01121bc7517bd.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.950000;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_552c9b32b5ae3dcbab12bd5f.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.154000;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_30c2a24ae4b01659018d4e4d.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.960143;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_1fd0f0724c89f3d6e300485c.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.018381;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_9f9347294b0604fef2e95837.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.950000;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_e3d62e92ddb3796388401063.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.189000;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_f60ce1746c3fa104944f55c0.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.960381;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_5e62db421200d328975a6617.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.017143;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_f5ab9155962e6b9ef515a313.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.964000;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:ffb;src:url('chunks/assets/font_72e63bf1b9262cca8aec1f94.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.950000;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:ffc;src:url('chunks/assets/font_36071a4d57d9c9ea9b622d22.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.960143;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:ffd;src:url('chunks/assets/font_8caae88eb4366f82353e79d2.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.989000;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:ffe;src:url('chunks/assets/font_61bc8a39b80c43db68cc30f0.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.960000;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:fff;src:url('chunks/assets/font_845958641650c078657a24ff.woff2')format("woff");}.fff{font-family:fff;line-height:1.189000;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:ff10;src:url('chunks/assets/font_bfdf3b0a7b19a609587b38ad.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.954000;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:ff11;src:url('chunks/assets/font_18c998c758c1ac2ea38b0963.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.019000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_7ac9b9ba67e137611a96ab9e.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.960381;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:ff13;src:url('chunks/assets/font_311171dd7f740ae2385d9205.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.960381;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:ff14;src:url('chunks/assets/font_d7e5e5ad5e5429f40f431a2a.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.960143;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:ff15;src:url('chunks/assets/font_8790afb4cd166bbbe711c8ff.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.125143;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:ff16;src:url('chunks/assets/font_102fa87f0fe841214427058d.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.960000;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:ff17;src:url('chunks/assets/font_89f7cd48bc674a32b8c68ce4.woff2')format("woff");}.ff17{font-family:ff17;line-height:1.017143;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:ff18;src:url('chunks/assets/font_bfdf3b0a7b19a609587b38ad.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.954000;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:ff19;src:url('chunks/assets/font_bfdf3b0a7b19a609587b38ad.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.954000;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:ff1a;src:url('chunks/assets/font_9e0b3f43eca547c58ef1246f.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.960000;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:ff1b;src:url('chunks/assets/font_9e496c287402be14fd624be6.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:1.189000;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:ff1c;src:url('chunks/assets/font_bfdf3b0a7b19a609587b38ad.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.954000;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:ff1d;src:url('chunks/assets/font_1f95a5edf725ad19dbad7cc6.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:1.017143;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:ff1e;src:url('chunks/assets/font_137f403a3cffffe083bb5ca7.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:1.138381;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:ff1f;src:url('chunks/assets/font_ceab3951d8e08f47e91a7435.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:0.961000;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:ff20;src:url('chunks/assets/font_33b7255413667f98ebdfe932.woff2')format("woff");}.ff20{font-family:ff20;line-height:1.019000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff21;src:url('chunks/assets/font_d1a54abc868f33ed111d6622.woff2')format("woff");}.ff21{font-family:ff21;line-height:1.141000;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;}
.m1{transform:matrix(0.139935,0.207167,-0.207167,0.139935,0,0);-ms-transform:matrix(0.139935,0.207167,-0.207167,0.139935,0,0);-webkit-transform:matrix(0.139935,0.207167,-0.207167,0.139935,0,0);}
.mc{transform:matrix(0.141829,-0.205875,0.205875,0.141829,0,0);-ms-transform:matrix(0.141829,-0.205875,0.205875,0.141829,0,0);-webkit-transform:matrix(0.141829,-0.205875,0.205875,0.141829,0,0);}
.mb{transform:matrix(0.170875,-0.182487,0.182487,0.170875,0,0);-ms-transform:matrix(0.170875,-0.182487,0.182487,0.170875,0,0);-webkit-transform:matrix(0.170875,-0.182487,0.182487,0.170875,0,0);}
.m2{transform:matrix(0.172304,0.181139,-0.181139,0.172304,0,0);-ms-transform:matrix(0.172304,0.181139,-0.181139,0.172304,0,0);-webkit-transform:matrix(0.172304,0.181139,-0.181139,0.172304,0,0);}
.ma{transform:matrix(0.197759,-0.152943,0.152943,0.197759,0,0);-ms-transform:matrix(0.197759,-0.152943,0.152943,0.197759,0,0);-webkit-transform:matrix(0.197759,-0.152943,0.152943,0.197759,0,0);}
.m3{transform:matrix(0.202851,0.146121,-0.146121,0.202851,0,0);-ms-transform:matrix(0.202851,0.146121,-0.146121,0.202851,0,0);-webkit-transform:matrix(0.202851,0.146121,-0.146121,0.202851,0,0);}
.m9{transform:matrix(0.222648,-0.113701,0.113701,0.222648,0,0);-ms-transform:matrix(0.222648,-0.113701,0.113701,0.222648,0,0);-webkit-transform:matrix(0.222648,-0.113701,0.113701,0.222648,0,0);}
.m4{transform:matrix(0.227267,0.104161,-0.104161,0.227267,0,0);-ms-transform:matrix(0.227267,0.104161,-0.104161,0.227267,0,0);-webkit-transform:matrix(0.227267,0.104161,-0.104161,0.227267,0,0);}
.m5{transform:matrix(0.242480,0.060857,-0.060857,0.242480,0,0);-ms-transform:matrix(0.242480,0.060857,-0.060857,0.242480,0,0);-webkit-transform:matrix(0.242480,0.060857,-0.060857,0.242480,0,0);}
.m8{transform:matrix(0.243152,-0.058114,0.058114,0.243152,0,0);-ms-transform:matrix(0.243152,-0.058114,0.058114,0.243152,0,0);-webkit-transform:matrix(0.243152,-0.058114,0.058114,0.243152,0,0);}
.m6{transform:matrix(0.249209,0.019870,-0.019870,0.249209,0,0);-ms-transform:matrix(0.249209,0.019870,-0.019870,0.249209,0,0);-webkit-transform:matrix(0.249209,0.019870,-0.019870,0.249209,0,0);}
.m7{transform:matrix(0.249780,-0.010475,0.010475,0.249780,0,0);-ms-transform:matrix(0.249780,-0.010475,0.010475,0.249780,0,0);-webkit-transform:matrix(0.249780,-0.010475,0.010475,0.249780,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);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:3.297344px;}
.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;}
}
.ws3{word-spacing:-135.506137px;}
.ws1{word-spacing:-50.079299px;}
.ws5{word-spacing:-28.380045px;}
.ws2{word-spacing:-24.957403px;}
.ws6{word-spacing:-16.368167px;}
.ws7{word-spacing:-15.244814px;}
.ws4{word-spacing:-14.056906px;}
.ws0{word-spacing:0.000000px;}
._10{margin-left:-5.677813px;}
._7{margin-left:-4.403382px;}
._d{margin-left:-2.813879px;}
._1c{margin-left:-1.371720px;}
._c{width:1.038703px;}
._e{width:2.589734px;}
._f{width:4.364097px;}
._11{width:5.670276px;}
._1{width:7.562584px;}
._0{width:9.262434px;}
._9{width:11.142753px;}
._16{width:12.269525px;}
._14{width:13.336445px;}
._b{width:15.099280px;}
._a{width:17.014390px;}
._2{width:18.723458px;}
._27{width:20.015345px;}
._1a{width:21.024539px;}
._18{width:22.176938px;}
._17{width:23.329313px;}
._2b{width:24.392930px;}
._20{width:26.164462px;}
._21{width:27.167422px;}
._26{width:28.321412px;}
._19{width:29.419027px;}
._3{width:33.342908px;}
._22{width:35.135987px;}
._1e{width:36.607036px;}
._25{width:37.682341px;}
._28{width:39.834664px;}
._13{width:40.838954px;}
._12{width:42.086057px;}
._1d{width:44.468317px;}
._2e{width:47.962414px;}
._15{width:49.541591px;}
._2c{width:52.690417px;}
._2d{width:53.903934px;}
._6{width:55.098511px;}
._29{width:56.311624px;}
._30{width:58.845713px;}
._31{width:60.108309px;}
._8{width:63.561948px;}
._5{width:65.030134px;}
._4{width:67.562478px;}
._23{width:70.322086px;}
._24{width:72.044003px;}
._2a{width:75.489746px;}
._2f{width:91.480343px;}
._1b{width:116.665465px;}
._1f{width:151.229711px;}
.fc9{color:rgb(255,176,42);}
.fc7{color:rgb(228,82,15);}
.fca{color:rgb(237,237,237);}
.fc8{color:rgb(104,144,43);}
.fc6{color:rgb(255,255,255);}
.fc5{color:rgb(0,0,0);}
.fc4{color:rgb(84,84,84);}
.fc3{color:rgb(68,66,62);}
.fc2{color:transparent;}
.fc1{color:rgb(216,36,64);}
.fc0{color:rgb(81,112,255);}
.fs19{font-size:50.317709px;}
.fs18{font-size:60.760346px;}
.fs1c{font-size:62.303475px;}
.fs14{font-size:63.023746px;}
.fs10{font-size:65.994864px;}
.fs17{font-size:69.776290px;}
.fse{font-size:72.027138px;}
.fs16{font-size:72.747409px;}
.fsf{font-size:77.924356px;}
.fs1b{font-size:80.310259px;}
.fsb{font-size:82.741170px;}
.fsc{font-size:88.728426px;}
.fs15{font-size:90.844228px;}
.fs11{font-size:96.246259px;}
.fs1a{font-size:104.058858px;}
.fsa{font-size:108.040707px;}
.fs0{font-size:114.352614px;}
.fs9{font-size:132.484917px;}
.fs12{font-size:141.900224px;}
.fs13{font-size:145.516891px;}
.fs1d{font-size:148.327818px;}
.fsd{font-size:172.619283px;}
.fs7{font-size:564.580222px;}
.fs6{font-size:564.580230px;}
.fs1{font-size:564.580233px;}
.fs5{font-size:564.580238px;}
.fs3{font-size:564.580249px;}
.fs2{font-size:564.580258px;}
.fs4{font-size:564.580262px;}
.fs8{font-size:564.580279px;}
.y0{bottom:0.000000px;}
.y10{bottom:0.000021px;}
.ye3{bottom:3.260252px;}
.yab{bottom:3.840434px;}
.y2{bottom:6.019782px;}
.yed{bottom:6.043822px;}
.yf7{bottom:7.495478px;}
.y94{bottom:7.890357px;}
.yaf{bottom:7.975381px;}
.ybd{bottom:8.002220px;}
.y7f{bottom:8.015045px;}
.yce{bottom:8.016744px;}
.y82{bottom:8.082640px;}
.y46{bottom:9.600441px;}
.ye2{bottom:20.032822px;}
.yaa{bottom:26.625564px;}
.yb{bottom:27.747893px;}
.ya{bottom:30.440384px;}
.y9{bottom:35.622782px;}
.ye1{bottom:36.805392px;}
.yec{bottom:41.936086px;}
.yae{bottom:44.409222px;}
.y7e{bottom:44.448887px;}
.y93{bottom:45.252802px;}
.ybc{bottom:45.364665px;}
.ycd{bottom:45.379189px;}
.yf6{bottom:45.426763px;}
.y81{bottom:45.445085px;}
.ya9{bottom:49.410693px;}
.ye0{bottom:53.577962px;}
.y8{bottom:55.724669px;}
.yc{bottom:63.183831px;}
.ydf{bottom:70.350532px;}
.ya8{bottom:72.195823px;}
.ya6{bottom:72.570230px;}
.y44{bottom:74.662769px;}
.yeb{bottom:77.828350px;}
.yad{bottom:80.843064px;}
.yd9{bottom:84.735017px;}
.yde{bottom:87.123101px;}
.y7{bottom:93.460975px;}
.ya5{bottom:97.329559px;}
.yd{bottom:100.701049px;}
.yd8{bottom:100.713358px;}
.ydd{bottom:103.895671px;}
.y43{bottom:105.049218px;}
.yea{bottom:113.720614px;}
.ydc{bottom:120.668241px;}
.ya4{bottom:122.088888px;}
.yd7{bottom:122.096415px;}
.y7c{bottom:124.334704px;}
.y1{bottom:134.415015px;}
.y42{bottom:135.435667px;}
.ydb{bottom:137.440811px;}
.yd6{bottom:143.479471px;}
.y6{bottom:148.058530px;}
.ye9{bottom:149.612878px;}
.y7b{bottom:151.344881px;}
.y96{bottom:155.515103px;}
.ye{bottom:157.517550px;}
.yd5{bottom:164.862528px;}
.y41{bottom:165.822116px;}
.yda{bottom:170.985950px;}
.ya3{bottom:171.607545px;}
.y60{bottom:173.323780px;}
.y7a{bottom:178.355058px;}
.y95{bottom:180.274431px;}
.ye8{bottom:185.505142px;}
.y40{bottom:196.208565px;}
.ya2{bottom:196.366874px;}
.yf4{bottom:197.415007px;}
.yf{bottom:200.202078px;}
.y5f{bottom:200.333957px;}
.y79{bottom:205.365234px;}
.y5{bottom:209.191682px;}
.yf3{bottom:218.798064px;}
.yd4{bottom:220.688925px;}
.ya1{bottom:221.126203px;}
.ye7{bottom:221.397406px;}
.y3f{bottom:226.595014px;}
.y5e{bottom:227.344133px;}
.y78{bottom:232.375411px;}
.yf2{bottom:240.181120px;}
.yd3{bottom:245.448254px;}
.ya0{bottom:245.885532px;}
.y92{bottom:251.055010px;}
.y3e{bottom:256.981463px;}
.ye6{bottom:257.289670px;}
.y3{bottom:257.895010px;}
.y77{bottom:259.385588px;}
.yf1{bottom:261.564177px;}
.y4{bottom:271.637085px;}
.y5d{bottom:281.364487px;}
.y3d{bottom:287.367912px;}
.ye5{bottom:293.181934px;}
.yd2{bottom:294.966911px;}
.y9f{bottom:295.404189px;}
.yf0{bottom:305.455714px;}
.y5c{bottom:308.374664px;}
.y3c{bottom:317.754360px;}
.yd1{bottom:319.726240px;}
.y9e{bottom:320.163518px;}
.y22{bottom:322.535698px;}
.yef{bottom:332.465891px;}
.y5b{bottom:335.384841px;}
.y9d{bottom:344.922847px;}
.y3b{bottom:348.140809px;}
.yee{bottom:359.476068px;}
.y21{bottom:359.674691px;}
.yf5{bottom:365.175005px;}
.y23{bottom:365.501770px;}
.yd0{bottom:369.244898px;}
.y9c{bottom:369.682175px;}
.y3a{bottom:378.527258px;}
.y75{bottom:384.349547px;}
.y5a{bottom:389.405194px;}
.ycf{bottom:394.004226px;}
.y39{bottom:408.913707px;}
.y74{bottom:409.108875px;}
.y59{bottom:416.415371px;}
.yba{bottom:420.046873px;}
.y91{bottom:421.465746px;}
.y1f{bottom:423.636978px;}
.y73{bottom:433.868204px;}
.y38{bottom:439.300156px;}
.y58{bottom:443.425548px;}
.y90{bottom:445.099651px;}
.ycc{bottom:459.135002px;}
.y1e{bottom:460.775971px;}
.y20{bottom:462.414810px;}
.y8f{bottom:468.733555px;}
.y37{bottom:469.686605px;}
.y9b{bottom:473.221186px;}
.y72{bottom:483.386862px;}
.y57{bottom:497.445901px;}
.y9a{bottom:497.980515px;}
.y36{bottom:500.073054px;}
.y71{bottom:508.146190px;}
.y8e{bottom:517.156260px;}
.y99{bottom:522.739844px;}
.y56{bottom:524.456078px;}
.y1c{bottom:525.394574px;}
.y35{bottom:530.459503px;}
.y70{bottom:532.905519px;}
.y1d{bottom:541.713159px;}
.y8d{bottom:541.915589px;}
.y98{bottom:547.499172px;}
.y55{bottom:551.466255px;}
.y6f{bottom:557.664848px;}
.y34{bottom:560.845952px;}
.y1b{bottom:562.533567px;}
.y54{bottom:578.476432px;}
.yac{bottom:585.134996px;}
.y33{bottom:591.232400px;}
.y8c{bottom:591.434246px;}
.y97{bottom:597.017830px;}
.ycb{bottom:602.132505px;}
.y6e{bottom:607.183505px;}
.y8b{bottom:616.193575px;}
.y32{bottom:621.618849px;}
.y19{bottom:622.406030px;}
.yca{bottom:626.891833px;}
.y6d{bottom:631.942834px;}
.y53{bottom:632.496785px;}
.y8a{bottom:640.952903px;}
.yc9{bottom:651.651162px;}
.y31{bottom:652.005298px;}
.y1a{bottom:653.404461px;}
.y52{bottom:659.506962px;}
.y18{bottom:659.545023px;}
.yc8{bottom:676.410491px;}
.y6c{bottom:681.461491px;}
.y30{bottom:682.391747px;}
.y51{bottom:686.517139px;}
.y89{bottom:690.471561px;}
.yc7{bottom:701.169819px;}
.y6b{bottom:706.220820px;}
.y2f{bottom:712.778196px;}
.y88{bottom:715.230890px;}
.y16{bottom:719.417631px;}
.yc6{bottom:725.929148px;}
.y17{bottom:735.736263px;}
.y87{bottom:739.990218px;}
.y50{bottom:740.537493px;}
.y2e{bottom:743.164645px;}
.ye4{bottom:745.334990px;}
.yc5{bottom:750.688477px;}
.y6a{bottom:755.739478px;}
.ya7{bottom:756.134989px;}
.y15{bottom:756.556624px;}
.y4f{bottom:767.547669px;}
.y69{bottom:780.498806px;}
.y4e{bottom:794.557846px;}
.yc4{bottom:800.207134px;}
.y13{bottom:801.417035px;}
.y86{bottom:801.843305px;}
.y2d{bottom:802.812119px;}
.y68{bottom:805.258135px;}
.y4d{bottom:821.568023px;}
.yc3{bottom:824.966463px;}
.y67{bottom:830.017464px;}
.y2c{bottom:830.947720px;}
.y14{bottom:832.415465px;}
.y12{bottom:838.556028px;}
.yc2{bottom:849.725792px;}
.y66{bottom:854.776792px;}
.y2b{bottom:859.083320px;}
.y65{bottom:880.661545px;}
.yb8{bottom:886.383265px;}
.y2a{bottom:887.218921px;}
.y85{bottom:887.304179px;}
.yc1{bottom:897.403591px;}
.y64{bottom:906.546298px;}
.y84{bottom:908.687235px;}
.yb7{bottom:911.142594px;}
.y11{bottom:913.309442px;}
.y29{bottom:915.354522px;}
.y4c{bottom:928.085466px;}
.y83{bottom:930.070292px;}
.y63{bottom:931.305627px;}
.yb6{bottom:935.901923px;}
.y28{bottom:943.490123px;}
.y4b{bottom:952.844794px;}
.y62{bottom:956.064955px;}
.yc0{bottom:967.798804px;}
.y27{bottom:971.625724px;}
.y4a{bottom:977.604123px;}
.yb5{bottom:985.420580px;}
.ybf{bottom:989.181860px;}
.y26{bottom:999.761325px;}
.y49{bottom:1002.363452px;}
.y61{bottom:1005.583613px;}
.yb4{bottom:1010.179909px;}
.ybe{bottom:1010.564917px;}
.y48{bottom:1027.122781px;}
.y25{bottom:1027.896925px;}
.y7d{bottom:1030.094978px;}
.yb3{bottom:1034.939238px;}
.y80{bottom:1037.294977px;}
.y47{bottom:1051.882109px;}
.y24{bottom:1056.032526px;}
.yb2{bottom:1084.457895px;}
.ybb{bottom:1091.294975px;}
.yb1{bottom:1109.217224px;}
.y45{bottom:1127.654974px;}
.yb0{bottom:1133.976553px;}
.y76{bottom:1153.948618px;}
.yb9{bottom:1177.160005px;}
.h2{height:30.959999px;}
.h12{height:42.839998px;}
.h2c{height:46.694834px;}
.h25{height:49.496148px;}
.h18{height:49.760128px;}
.h30{height:50.403512px;}
.h23{height:52.332218px;}
.h16{height:53.257856px;}
.h1a{height:54.020354px;}
.h17{height:54.308462px;}
.h22{height:54.560556px;}
.h27{height:55.595716px;}
.h15{height:58.443267px;}
.h2a{height:58.707159px;}
.h21{height:58.852654px;}
.h1f{height:61.700247px;}
.h2f{height:64.971000px;}
.h10{height:66.854866px;}
.h20{height:68.133171px;}
.h14{height:70.514568px;}
.h11{height:71.692568px;}
.h19{height:72.184694px;}
.h1b{height:72.359997px;}
.h24{height:73.799997px;}
.h1d{height:74.159997px;}
.h31{height:75.239997px;}
.h2e{height:78.044143px;}
.hf{height:81.030530px;}
.h26{height:83.879997px;}
.h3{height:99.143717px;}
.h29{height:106.425168px;}
.h28{height:108.719995px;}
.h1e{height:109.137669px;}
.h1c{height:110.540274px;}
.he{height:126.390611px;}
.h13{height:129.464462px;}
.h32{height:139.576476px;}
.h2b{height:183.599992px;}
.h2d{height:313.559987px;}
.h4{height:335.879986px;}
.hb{height:423.435167px;}
.ha{height:423.435173px;}
.h5{height:423.435175px;}
.h9{height:423.435178px;}
.h7{height:423.435187px;}
.h6{height:423.435194px;}
.h8{height:423.435197px;}
.hc{height:423.435209px;}
.h1{height:1263.000000px;}
.hd{height:1263.374947px;}
.h0{height:1263.374968px;}
.we{width:188.999992px;}
.w1{width:396.359983px;}
.w7{width:413.279983px;}
.w5{width:429.119982px;}
.w8{width:432.359982px;}
.w9{width:438.839982px;}
.w4{width:459.359981px;}
.w6{width:504.719979px;}
.wb{width:586.439976px;}
.wa{width:587.159976px;}
.wd{width:698.039971px;}
.wc{width:752.039969px;}
.w2{width:875.159964px;}
.w3{width:893.249963px;}
.w0{width:893.250000px;}
.x0{left:0.000000px;}
.x2a{left:1.533999px;}
.x15{left:2.667122px;}
.x2{left:11.520000px;}
.x3{left:23.503867px;}
.x2d{left:32.597761px;}
.x24{left:36.237561px;}
.x2b{left:42.121528px;}
.x1f{left:53.543966px;}
.x26{left:56.065416px;}
.x13{left:59.844361px;}
.x4{left:64.954633px;}
.x27{left:70.911965px;}
.x22{left:78.418566px;}
.x1e{left:96.048201px;}
.x29{left:97.559996px;}
.x25{left:98.569652px;}
.x17{left:107.391804px;}
.x16{left:118.736790px;}
.x5{left:122.218420px;}
.x28{left:131.039995px;}
.x20{left:147.212940px;}
.x23{left:159.839993px;}
.x6{left:197.841744px;}
.x14{left:214.919991px;}
.x1d{left:225.359991px;}
.x21{left:234.415718px;}
.x10{left:238.316762px;}
.x11{left:239.776705px;}
.x12{left:241.728203px;}
.x1{left:251.279990px;}
.x1a{left:257.299821px;}
.x18{left:278.785097px;}
.x7{left:280.414350px;}
.x19{left:309.382563px;}
.x1c{left:314.639987px;}
.xf{left:315.867598px;}
.x2c{left:346.679986px;}
.x8{left:360.732398px;}
.x1b{left:390.723381px;}
.x9{left:433.419422px;}
.xa{left:479.350483px;}
.xb{left:614.052157px;}
.xc{left:688.945734px;}
.xd{left:760.812867px;}
.xe{left:802.339462px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:2.930973pt;}
.ws3{word-spacing:-120.449900pt;}
.ws1{word-spacing:-44.514932pt;}
.ws5{word-spacing:-25.226706pt;}
.ws2{word-spacing:-22.184359pt;}
.ws6{word-spacing:-14.549482pt;}
.ws7{word-spacing:-13.550945pt;}
.ws4{word-spacing:-12.495028pt;}
.ws0{word-spacing:0.000000pt;}
._10{margin-left:-5.046945pt;}
._7{margin-left:-3.914118pt;}
._d{margin-left:-2.501226pt;}
._1c{margin-left:-1.219307pt;}
._c{width:0.923291pt;}
._e{width:2.301986pt;}
._f{width:3.879197pt;}
._11{width:5.040245pt;}
._1{width:6.722297pt;}
._0{width:8.233275pt;}
._9{width:9.904670pt;}
._16{width:10.906245pt;}
._14{width:11.854618pt;}
._b{width:13.421582pt;}
._a{width:15.123902pt;}
._2{width:16.643074pt;}
._27{width:17.791418pt;}
._1a{width:18.688479pt;}
._18{width:19.712834pt;}
._17{width:20.737167pt;}
._2b{width:21.682605pt;}
._20{width:23.257300pt;}
._21{width:24.148819pt;}
._26{width:25.174589pt;}
._19{width:26.150246pt;}
._3{width:29.638140pt;}
._22{width:31.231988pt;}
._1e{width:32.539587pt;}
._25{width:33.495414pt;}
._28{width:35.408590pt;}
._13{width:36.301293pt;}
._12{width:37.409828pt;}
._1d{width:39.527393pt;}
._2e{width:42.633257pt;}
._15{width:44.036970pt;}
._2c{width:46.835926pt;}
._2d{width:47.914608pt;}
._6{width:48.976454pt;}
._29{width:50.054777pt;}
._30{width:52.307301pt;}
._31{width:53.429608pt;}
._8{width:56.499509pt;}
._5{width:57.804563pt;}
._4{width:60.055536pt;}
._23{width:62.508521pt;}
._24{width:64.039114pt;}
._2a{width:67.101996pt;}
._2f{width:81.315861pt;}
._1b{width:103.702635pt;}
._1f{width:134.426410pt;}
.fs19{font-size:44.726853pt;}
.fs18{font-size:54.009196pt;}
.fs1c{font-size:55.380867pt;}
.fs14{font-size:56.021107pt;}
.fs10{font-size:58.662102pt;}
.fs17{font-size:62.023369pt;}
.fse{font-size:64.024123pt;}
.fs16{font-size:64.664363pt;}
.fsf{font-size:69.266094pt;}
.fs1b{font-size:71.386897pt;}
.fsb{font-size:73.547707pt;}
.fsc{font-size:78.869712pt;}
.fs15{font-size:80.750425pt;}
.fs11{font-size:85.552230pt;}
.fs1a{font-size:92.496762pt;}
.fsa{font-size:96.036184pt;}
.fs0{font-size:101.646768pt;}
.fs9{font-size:117.764371pt;}
.fs12{font-size:126.133532pt;}
.fs13{font-size:129.348348pt;}
.fs1d{font-size:131.846949pt;}
.fsd{font-size:153.439363pt;}
.fs7{font-size:501.849086pt;}
.fs6{font-size:501.849094pt;}
.fs1{font-size:501.849096pt;}
.fs5{font-size:501.849100pt;}
.fs3{font-size:501.849110pt;}
.fs2{font-size:501.849119pt;}
.fs4{font-size:501.849122pt;}
.fs8{font-size:501.849137pt;}
.y0{bottom:0.000000pt;}
.y10{bottom:0.000018pt;}
.ye3{bottom:2.898002pt;}
.yab{bottom:3.413719pt;}
.y2{bottom:5.350917pt;}
.yed{bottom:5.372286pt;}
.yf7{bottom:6.662647pt;}
.y94{bottom:7.013651pt;}
.yaf{bottom:7.089228pt;}
.ybd{bottom:7.113084pt;}
.y7f{bottom:7.124485pt;}
.yce{bottom:7.125994pt;}
.y82{bottom:7.184569pt;}
.y46{bottom:8.533725pt;}
.ye2{bottom:17.806953pt;}
.yaa{bottom:23.667168pt;}
.yb{bottom:24.664794pt;}
.ya{bottom:27.058119pt;}
.y9{bottom:31.664695pt;}
.ye1{bottom:32.715904pt;}
.yec{bottom:37.276521pt;}
.yae{bottom:39.474864pt;}
.y7e{bottom:39.510122pt;}
.y93{bottom:40.224713pt;}
.ybc{bottom:40.324146pt;}
.ycd{bottom:40.337057pt;}
.yf6{bottom:40.379345pt;}
.y81{bottom:40.395631pt;}
.ya9{bottom:43.920616pt;}
.ye0{bottom:47.624855pt;}
.y8{bottom:49.533039pt;}
.yc{bottom:56.163405pt;}
.ydf{bottom:62.533806pt;}
.ya8{bottom:64.174065pt;}
.ya6{bottom:64.506872pt;}
.y44{bottom:66.366906pt;}
.yeb{bottom:69.180755pt;}
.yad{bottom:71.860501pt;}
.yd9{bottom:75.320015pt;}
.yde{bottom:77.442757pt;}
.y7{bottom:83.076422pt;}
.ya5{bottom:86.515164pt;}
.yd{bottom:89.512044pt;}
.yd8{bottom:89.522985pt;}
.ydd{bottom:92.351708pt;}
.y43{bottom:93.377083pt;}
.yea{bottom:101.084990pt;}
.ydc{bottom:107.260659pt;}
.ya4{bottom:108.523456pt;}
.yd7{bottom:108.530147pt;}
.y7c{bottom:110.519737pt;}
.y1{bottom:119.480013pt;}
.y42{bottom:120.387260pt;}
.ydb{bottom:122.169610pt;}
.yd6{bottom:127.537308pt;}
.y6{bottom:131.607582pt;}
.ye9{bottom:132.989225pt;}
.y7b{bottom:134.528783pt;}
.y96{bottom:138.235647pt;}
.ye{bottom:140.015600pt;}
.yd5{bottom:146.544469pt;}
.y41{bottom:147.397436pt;}
.yda{bottom:151.987511pt;}
.ya3{bottom:152.540040pt;}
.y60{bottom:154.065582pt;}
.y7a{bottom:158.537829pt;}
.y95{bottom:160.243939pt;}
.ye8{bottom:164.893459pt;}
.y40{bottom:174.407613pt;}
.ya2{bottom:174.548333pt;}
.yf4{bottom:175.480006pt;}
.yf{bottom:177.957403pt;}
.y5f{bottom:178.074628pt;}
.y79{bottom:182.546875pt;}
.y5{bottom:185.948162pt;}
.yf3{bottom:194.487168pt;}
.yd4{bottom:196.167934pt;}
.ya1{bottom:196.556625pt;}
.ye7{bottom:196.797694pt;}
.y3f{bottom:201.417790pt;}
.y5e{bottom:202.083674pt;}
.y78{bottom:206.555921pt;}
.yf2{bottom:213.494329pt;}
.yd3{bottom:218.176226pt;}
.ya0{bottom:218.564917pt;}
.y92{bottom:223.160009pt;}
.y3e{bottom:228.427967pt;}
.ye6{bottom:228.701929pt;}
.y3{bottom:229.240009pt;}
.y77{bottom:230.564967pt;}
.yf1{bottom:232.501490pt;}
.y4{bottom:241.455187pt;}
.y5d{bottom:250.101766pt;}
.y3d{bottom:255.438144pt;}
.ye5{bottom:260.606163pt;}
.yd2{bottom:262.192810pt;}
.y9f{bottom:262.581501pt;}
.yf0{bottom:271.516190pt;}
.y5c{bottom:274.110812pt;}
.y3c{bottom:282.448320pt;}
.yd1{bottom:284.201102pt;}
.y9e{bottom:284.589794pt;}
.y22{bottom:286.698398pt;}
.yef{bottom:295.525236pt;}
.y5b{bottom:298.119858pt;}
.y9d{bottom:306.598086pt;}
.y3b{bottom:309.458497pt;}
.yee{bottom:319.534282pt;}
.y21{bottom:319.710837pt;}
.yf5{bottom:324.600005pt;}
.y23{bottom:324.890463pt;}
.yd0{bottom:328.217687pt;}
.y9c{bottom:328.606378pt;}
.y3a{bottom:336.468674pt;}
.y75{bottom:341.644041pt;}
.y5a{bottom:346.137950pt;}
.ycf{bottom:350.225979pt;}
.y39{bottom:363.478851pt;}
.y74{bottom:363.652334pt;}
.y59{bottom:370.146996pt;}
.yba{bottom:373.374998pt;}
.y91{bottom:374.636219pt;}
.y1f{bottom:376.566203pt;}
.y73{bottom:385.660626pt;}
.y38{bottom:390.489028pt;}
.y58{bottom:394.156042pt;}
.y90{bottom:395.644134pt;}
.ycc{bottom:408.120001pt;}
.y1e{bottom:409.578641pt;}
.y20{bottom:411.035387pt;}
.y8f{bottom:416.652049pt;}
.y37{bottom:417.499204pt;}
.y9b{bottom:420.641054pt;}
.y72{bottom:429.677210pt;}
.y57{bottom:442.174135pt;}
.y9a{bottom:442.649347pt;}
.y36{bottom:444.509381pt;}
.y71{bottom:451.685502pt;}
.y8e{bottom:459.694453pt;}
.y99{bottom:464.657639pt;}
.y56{bottom:466.183181pt;}
.y1c{bottom:467.017399pt;}
.y35{bottom:471.519558pt;}
.y70{bottom:473.693795pt;}
.y1d{bottom:481.522808pt;}
.y8d{bottom:481.702745pt;}
.y98{bottom:486.665931pt;}
.y55{bottom:490.192227pt;}
.y6f{bottom:495.702087pt;}
.y34{bottom:498.529735pt;}
.y1b{bottom:500.029837pt;}
.y54{bottom:514.201273pt;}
.yac{bottom:520.119997pt;}
.y33{bottom:525.539912pt;}
.y8c{bottom:525.719330pt;}
.y97{bottom:530.682515pt;}
.ycb{bottom:535.228893pt;}
.y6e{bottom:539.718671pt;}
.y8b{bottom:547.727622pt;}
.y32{bottom:552.550088pt;}
.y19{bottom:553.249805pt;}
.yca{bottom:557.237185pt;}
.y6d{bottom:561.726963pt;}
.y53{bottom:562.219365pt;}
.y8a{bottom:569.735914pt;}
.yc9{bottom:579.245477pt;}
.y31{bottom:579.560265pt;}
.y1a{bottom:580.803966pt;}
.y52{bottom:586.228411pt;}
.y18{bottom:586.262243pt;}
.yc8{bottom:601.253770pt;}
.y6c{bottom:605.743548pt;}
.y30{bottom:606.570442pt;}
.y51{bottom:610.237457pt;}
.y89{bottom:613.752499pt;}
.yc7{bottom:623.262062pt;}
.y6b{bottom:627.751840pt;}
.y2f{bottom:633.580619pt;}
.y88{bottom:635.760791pt;}
.y16{bottom:639.482339pt;}
.yc6{bottom:645.270354pt;}
.y17{bottom:653.987790pt;}
.y87{bottom:657.769083pt;}
.y50{bottom:658.255549pt;}
.y2e{bottom:660.590796pt;}
.ye4{bottom:662.519991pt;}
.yc5{bottom:667.278646pt;}
.y6a{bottom:671.768424pt;}
.ya7{bottom:672.119990pt;}
.y15{bottom:672.494777pt;}
.y4f{bottom:682.264595pt;}
.y69{bottom:693.776717pt;}
.y4e{bottom:706.273641pt;}
.yc4{bottom:711.295231pt;}
.y13{bottom:712.370697pt;}
.y86{bottom:712.749605pt;}
.y2d{bottom:713.610772pt;}
.y68{bottom:715.785009pt;}
.y4d{bottom:730.282687pt;}
.yc3{bottom:733.303523pt;}
.y67{bottom:737.793301pt;}
.y2c{bottom:738.620195pt;}
.y14{bottom:739.924858pt;}
.y12{bottom:745.383136pt;}
.yc2{bottom:755.311815pt;}
.y66{bottom:759.801593pt;}
.y2b{bottom:763.629618pt;}
.y65{bottom:782.810262pt;}
.yb8{bottom:787.896236pt;}
.y2a{bottom:788.639041pt;}
.y85{bottom:788.714825pt;}
.yc1{bottom:797.692081pt;}
.y64{bottom:805.818932pt;}
.y84{bottom:807.721987pt;}
.yb7{bottom:809.904528pt;}
.y11{bottom:811.830615pt;}
.y29{bottom:813.648464pt;}
.y4c{bottom:824.964858pt;}
.y83{bottom:826.729148pt;}
.y63{bottom:827.827224pt;}
.yb6{bottom:831.912820pt;}
.y28{bottom:838.657887pt;}
.y4b{bottom:846.973151pt;}
.y62{bottom:849.835516pt;}
.yc0{bottom:860.265603pt;}
.y27{bottom:863.667310pt;}
.y4a{bottom:868.981443pt;}
.yb5{bottom:875.929405pt;}
.ybf{bottom:879.272765pt;}
.y26{bottom:888.676733pt;}
.y49{bottom:890.989735pt;}
.y61{bottom:893.852100pt;}
.yb4{bottom:897.937697pt;}
.ybe{bottom:898.279926pt;}
.y48{bottom:912.998027pt;}
.y25{bottom:913.686156pt;}
.y7d{bottom:915.639980pt;}
.yb3{bottom:919.945989pt;}
.y80{bottom:922.039980pt;}
.y47{bottom:935.006319pt;}
.y24{bottom:938.695579pt;}
.yb2{bottom:963.962574pt;}
.ybb{bottom:970.039978pt;}
.yb1{bottom:985.970866pt;}
.y45{bottom:1002.359977pt;}
.yb0{bottom:1007.979158pt;}
.y76{bottom:1025.732104pt;}
.yb9{bottom:1046.364449pt;}
.h2{height:27.519999pt;}
.h12{height:38.079998pt;}
.h2c{height:41.506519pt;}
.h25{height:43.996576pt;}
.h18{height:44.231225pt;}
.h30{height:44.803121pt;}
.h23{height:46.517527pt;}
.h16{height:47.340316pt;}
.h1a{height:48.018092pt;}
.h17{height:48.274189pt;}
.h22{height:48.498272pt;}
.h27{height:49.418415pt;}
.h15{height:51.949570pt;}
.h2a{height:52.184141pt;}
.h21{height:52.313470pt;}
.h1f{height:54.844664pt;}
.h2f{height:57.752000pt;}
.h10{height:59.426547pt;}
.h20{height:60.562819pt;}
.h14{height:62.679616pt;}
.h11{height:63.726727pt;}
.h19{height:64.164173pt;}
.h1b{height:64.319997pt;}
.h24{height:65.599997pt;}
.h1d{height:65.919997pt;}
.h31{height:66.879997pt;}
.h2e{height:69.372572pt;}
.hf{height:72.027138pt;}
.h26{height:74.559997pt;}
.h3{height:88.127748pt;}
.h29{height:94.600149pt;}
.h28{height:96.639996pt;}
.h1e{height:97.011261pt;}
.h1c{height:98.258022pt;}
.he{height:112.347210pt;}
.h13{height:115.079522pt;}
.h32{height:124.067979pt;}
.h2b{height:163.199993pt;}
.h2d{height:278.719988pt;}
.h4{height:298.559988pt;}
.hb{height:376.386815pt;}
.ha{height:376.386820pt;}
.h5{height:376.386822pt;}
.h9{height:376.386825pt;}
.h7{height:376.386833pt;}
.h6{height:376.386839pt;}
.h8{height:376.386841pt;}
.hc{height:376.386853pt;}
.h1{height:1122.666667pt;}
.hd{height:1122.999953pt;}
.h0{height:1122.999972pt;}
.we{width:167.999993pt;}
.w1{width:352.319985pt;}
.w7{width:367.359985pt;}
.w5{width:381.439984pt;}
.w8{width:384.319984pt;}
.w9{width:390.079984pt;}
.w4{width:408.319983pt;}
.w6{width:448.639981pt;}
.wb{width:521.279978pt;}
.wa{width:521.919978pt;}
.wd{width:620.479974pt;}
.wc{width:668.479972pt;}
.w2{width:777.919968pt;}
.w3{width:793.999967pt;}
.w0{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2a{left:1.363555pt;}
.x15{left:2.370776pt;}
.x2{left:10.240000pt;}
.x3{left:20.892326pt;}
.x2d{left:28.975788pt;}
.x24{left:32.211166pt;}
.x2b{left:37.441358pt;}
.x1f{left:47.594637pt;}
.x26{left:49.835926pt;}
.x13{left:53.194988pt;}
.x4{left:57.737452pt;}
.x27{left:63.032858pt;}
.x22{left:69.705392pt;}
.x1e{left:85.376179pt;}
.x29{left:86.719996pt;}
.x25{left:87.617468pt;}
.x17{left:95.459382pt;}
.x16{left:105.543813pt;}
.x5{left:108.638595pt;}
.x28{left:116.479995pt;}
.x20{left:130.855947pt;}
.x23{left:142.079994pt;}
.x6{left:175.859328pt;}
.x14{left:191.039992pt;}
.x1d{left:200.319992pt;}
.x21{left:208.369527pt;}
.x10{left:211.837122pt;}
.x11{left:213.134848pt;}
.x12{left:214.869514pt;}
.x1{left:223.359991pt;}
.x1a{left:228.710952pt;}
.x18{left:247.808975pt;}
.x7{left:249.257200pt;}
.x19{left:275.006723pt;}
.x1c{left:279.679988pt;}
.xf{left:280.771198pt;}
.x2c{left:308.159987pt;}
.x8{left:320.651021pt;}
.x1b{left:347.309672pt;}
.x9{left:385.261708pt;}
.xa{left:426.089318pt;}
.xb{left:545.824140pt;}
.xc{left:612.396208pt;}
.xd{left:676.278104pt;}
.xe{left:713.190633pt;}
}




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