
    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_9dde357bd97ee6fce0580f06.woff')format("woff");}.ff1{font-family:ff1;line-height:1.003906;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_e8f88e4c2f0d09f087ab072b.woff')format("woff");}.ff2{font-family:ff2;line-height:1.049000;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_7ac5546079789b8dbc5e2de5.woff')format("woff");}.ff3{font-family:ff3;line-height:0.900391;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_ec975071da8e7f0015e6db68.woff')format("woff");}.ff4{font-family:ff4;line-height:1.009000;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_99dde8e9e7ea9ce42893bbc3.woff')format("woff");}.ff5{font-family:ff5;line-height:1.046000;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_2a9df440c8a5afe3505ac18d.woff')format("woff");}.ff6{font-family:ff6;line-height:1.046000;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_b9ea3ae2495b36877a09aae4.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_8a66a0751036d4857e7ccfda.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_59a8b84f30ac5ae86c0c4322.woff')format("woff");}.ff9{font-family:ff9;line-height:1.178000;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_e4827de518ef25d58ac2adb5.woff')format("woff");}.ffa{font-family:ffa;line-height:1.178000;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_e5efe345895295f6bf165ccc.woff')format("woff");}.ffb{font-family:ffb;line-height:1.402354;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_c2823af2a08a933608b145f0.woff')format("woff");}.ffc{font-family:ffc;line-height:1.046000;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_a7ae776605fe40752b74ca18.woff')format("woff");}.ffd{font-family:ffd;line-height:1.046000;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_5576e839fbaa2413aeb37c64.woff')format("woff");}.ffe{font-family:ffe;line-height:1.284668;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_e5efe345895295f6bf165ccc.woff')format("woff");}.fff{font-family:fff;line-height:1.402354;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_a88bbe05889b2101b40ff16a.woff')format("woff");}.ff10{font-family:ff10;line-height:1.009000;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_b63e0be398127d7688844d4b.woff')format("woff");}.ff11{font-family:ff11;line-height:0.916992;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_4124ecf67c5f73bfcf826c34.woff')format("woff");}.ff12{font-family:ff12;line-height:1.284668;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.000000,0.250000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);}
.m4{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);}
.m6{transform:matrix(0.240385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240385,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.243243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243243,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.250360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250360,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3{vertical-align:-81.360000px;}
.v2{vertical-align:-23.760000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:20.880000px;}
.v1{vertical-align:23.760000px;}
.ls1b{letter-spacing:-0.392400px;}
.ls19{letter-spacing:-0.385800px;}
.ls8{letter-spacing:-0.288000px;}
.ls7{letter-spacing:-0.216000px;}
.ls20{letter-spacing:-0.144000px;}
.ls17{letter-spacing:-0.136800px;}
.ls1c{letter-spacing:-0.103200px;}
.ls18{letter-spacing:-0.067200px;}
.lse{letter-spacing:-0.013680px;}
.ls5{letter-spacing:0.000000px;}
.ls1d{letter-spacing:0.040320px;}
.ls1f{letter-spacing:0.144000px;}
.ls6{letter-spacing:0.150000px;}
.ls1e{letter-spacing:0.180000px;}
.ls0{letter-spacing:0.206640px;}
.ls12{letter-spacing:0.216000px;}
.ls14{letter-spacing:0.227682px;}
.ls10{letter-spacing:0.252000px;}
.ls1{letter-spacing:0.256320px;}
.lsf{letter-spacing:0.271440px;}
.ls9{letter-spacing:0.288000px;}
.ls1a{letter-spacing:0.406800px;}
.ls13{letter-spacing:11.016000px;}
.lsc{letter-spacing:17.496000px;}
.ls11{letter-spacing:24.241680px;}
.lsb{letter-spacing:26.856000px;}
.ls3{letter-spacing:29.016000px;}
.ls2{letter-spacing:32.616000px;}
.ls15{letter-spacing:43.416000px;}
.ls4{letter-spacing:64.200000px;}
.ls16{letter-spacing:69.336000px;}
.lsa{letter-spacing:116.136000px;}
.lsd{letter-spacing:521.796000px;}
.sc_{text-shadow:none;}
.sc3{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.sc2{text-shadow:-0.015em 0 rgb(26,26,26),0 0.015em rgb(26,26,26),0.015em 0 rgb(26,26,26),0 -0.015em  rgb(26,26,26);}
.sc1{text-shadow:-0.015em 0 rgb(145,25,56),0 0.015em rgb(145,25,56),0.015em 0 rgb(145,25,56),0 -0.015em  rgb(145,25,56);}
.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;}
.sc3{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc2{-webkit-text-stroke:0.015em rgb(26,26,26);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(145,25,56);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2{word-spacing:-72.000000px;}
.ws1{word-spacing:-71.784000px;}
.ws3{word-spacing:-66.240000px;}
.ws17{word-spacing:-21.649680px;}
.ws7{word-spacing:-19.872000px;}
.ws12{word-spacing:-19.732415px;}
.ws11{word-spacing:-19.504734px;}
.wsb{word-spacing:-19.051200px;}
.ws9{word-spacing:-18.792000px;}
.ws18{word-spacing:-18.648000px;}
.ws8{word-spacing:-18.504000px;}
.ws19{word-spacing:-18.360000px;}
.ws16{word-spacing:-18.288000px;}
.ws4{word-spacing:-18.282240px;}
.wse{word-spacing:-18.216000px;}
.ws10{word-spacing:-18.018216px;}
.wsa{word-spacing:-18.000000px;}
.wsf{word-spacing:-17.980834px;}
.ws6{word-spacing:-17.023680px;}
.ws14{word-spacing:-16.188929px;}
.ws13{word-spacing:-15.358320px;}
.ws5{word-spacing:-10.732320px;}
.ws15{word-spacing:-9.252000px;}
.ws0{word-spacing:-0.156240px;}
.wsd{word-spacing:-0.142560px;}
.wsc{word-spacing:0.000000px;}
._18{margin-left:-4.176000px;}
._19{margin-left:-2.580000px;}
._1{margin-left:-1.157760px;}
._2{width:1.169280px;}
._3{width:2.898240px;}
._f{width:3.990240px;}
._2b{width:5.112000px;}
._4{width:6.655680px;}
._13{width:8.640000px;}
._14{width:9.863520px;}
._32{width:10.927200px;}
._5{width:12.254400px;}
._6{width:13.412160px;}
._a{width:15.266880px;}
._1d{width:17.285760px;}
._31{width:19.601280px;}
._15{width:20.880000px;}
._1e{width:22.332480px;}
._10{width:24.408000px;}
._1a{width:25.848000px;}
._1f{width:27.576000px;}
._e{width:28.656000px;}
._21{width:29.808000px;}
._9{width:30.833280px;}
._c{width:32.027040px;}
._b{width:33.240000px;}
._22{width:34.320000px;}
._29{width:37.800000px;}
._2a{width:38.880000px;}
._39{width:40.176000px;}
._34{width:41.903520px;}
._28{width:43.128000px;}
._7{width:44.380800px;}
._8{width:45.671040px;}
._16{width:46.800000px;}
._1b{width:48.288000px;}
._d{width:50.472000px;}
._12{width:52.686720px;}
._33{width:54.288000px;}
._3a{width:56.520000px;}
._38{width:58.536000px;}
._30{width:60.477120px;}
._35{width:61.848000px;}
._36{width:62.856000px;}
._26{width:64.080000px;}
._27{width:65.232000px;}
._17{width:67.104000px;}
._3c{width:68.400000px;}
._25{width:69.552000px;}
._20{width:71.136000px;}
._37{width:75.096000px;}
._11{width:78.336000px;}
._3d{width:80.136000px;}
._23{width:98.640000px;}
._24{width:99.774720px;}
._2e{width:100.841040px;}
._3b{width:102.548880px;}
._1c{width:115.752000px;}
._2c{width:278.242560px;}
._2d{width:372.868560px;}
._2f{width:1231.235280px;}
._0{width:1481.489760px;}
.fc7{color:rgb(21,27,28);}
.fc5{color:rgb(254,255,255);}
.fc4{color:transparent;}
.fc3{color:rgb(5,99,193);}
.fc2{color:rgb(0,32,96);}
.fc1{color:rgb(145,25,56);}
.fc6{color:rgb(26,26,26);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:18.000000px;}
.fs9{font-size:30.240000px;}
.fs5{font-size:36.000000px;}
.fs4{font-size:41.760000px;}
.fs2{font-size:48.240000px;}
.fse{font-size:59.760000px;}
.fsf{font-size:62.991941px;}
.fs8{font-size:63.360000px;}
.fs0{font-size:66.240000px;}
.fsb{font-size:71.923336px;}
.fs7{font-size:72.000000px;}
.fsa{font-size:72.072864px;}
.fsd{font-size:75.893905px;}
.fs6{font-size:77.760000px;}
.fsc{font-size:84.240000px;}
.fs1{font-size:156.240000px;}
.yd{bottom:-5.940000px;}
.y0{bottom:0.000000px;}
.y8{bottom:4.320000px;}
.yc{bottom:5.400000px;}
.y80{bottom:6.300000px;}
.y89{bottom:6.480000px;}
.y93{bottom:6.510000px;}
.y42{bottom:6.660000px;}
.y75{bottom:11.047174px;}
.y6f{bottom:14.299417px;}
.y69{bottom:15.533620px;}
.yb{bottom:16.740000px;}
.y6{bottom:19.650000px;}
.ya{bottom:24.156000px;}
.y7{bottom:26.820000px;}
.y88{bottom:27.540000px;}
.y92{bottom:27.570000px;}
.y41{bottom:30.450000px;}
.y74{bottom:32.654679px;}
.y6e{bottom:34.972368px;}
.y68{bottom:36.243355px;}
.y43{bottom:39.450000px;}
.y9{bottom:47.520000px;}
.y87{bottom:48.420000px;}
.y91{bottom:48.450000px;}
.y40{bottom:54.210000px;}
.y73{bottom:54.261586px;}
.y6d{bottom:55.682102px;}
.y67{bottom:56.915708px;}
.y4{bottom:58.320000px;}
.y8c{bottom:59.070000px;}
.y86{bottom:69.480000px;}
.y90{bottom:69.510000px;}
.y72{bottom:75.868492px;}
.y6c{bottom:76.391836px;}
.y66{bottom:77.625440px;}
.y3{bottom:78.156000px;}
.y81{bottom:80.100000px;}
.y8b{bottom:80.130000px;}
.y85{bottom:90.540000px;}
.y8f{bottom:90.570000px;}
.y6b{bottom:97.101569px;}
.y71{bottom:97.475399px;}
.y65{bottom:98.335175px;}
.y2{bottom:98.676000px;}
.y84{bottom:111.600000px;}
.y8e{bottom:111.630000px;}
.y6a{bottom:117.773921px;}
.y64{bottom:119.044909px;}
.y70{bottom:119.082305px;}
.y7e{bottom:124.056000px;}
.y3e{bottom:126.036000px;}
.yc1{bottom:127.656000px;}
.y5{bottom:131.220000px;}
.yef{bottom:132.156000px;}
.y8d{bottom:132.690000px;}
.y83{bottom:132.705000px;}
.ya8{bottom:140.616000px;}
.y7d{bottom:146.016000px;}
.y3d{bottom:147.996000px;}
.yc0{bottom:149.616000px;}
.y82{bottom:153.585000px;}
.yee{bottom:154.110000px;}
.ya7{bottom:162.570000px;}
.y7c{bottom:167.970000px;}
.y3c{bottom:169.950000px;}
.ybf{bottom:171.570000px;}
.yed{bottom:176.070000px;}
.ya6{bottom:184.530000px;}
.y7b{bottom:189.930000px;}
.y3b{bottom:191.910000px;}
.y5f{bottom:194.450783px;}
.y63{bottom:195.123649px;}
.y61{bottom:195.123655px;}
.ybe{bottom:196.410000px;}
.yec{bottom:200.910000px;}
.ya5{bottom:206.490000px;}
.y7a{bottom:211.890000px;}
.y3a{bottom:213.690000px;}
.y62{bottom:215.833381px;}
.y60{bottom:215.833388px;}
.y5e{bottom:216.057689px;}
.ybd{bottom:218.370000px;}
.yeb{bottom:222.870000px;}
.ya4{bottom:228.450000px;}
.y79{bottom:233.850000px;}
.y39{bottom:235.650000px;}
.ybc{bottom:240.330000px;}
.yea{bottom:247.710000px;}
.ya3{bottom:250.230000px;}
.y78{bottom:255.810000px;}
.y38{bottom:257.610000px;}
.ybb{bottom:265.170000px;}
.ye9{bottom:269.670000px;}
.ya2{bottom:272.190000px;}
.y37{bottom:279.570000px;}
.yba{bottom:287.130000px;}
.ye8{bottom:291.630000px;}
.ya1{bottom:294.150000px;}
.y77{bottom:297.750000px;}
.y36{bottom:301.530000px;}
.yb9{bottom:309.090000px;}
.y5d{bottom:312.055149px;}
.ye7{bottom:313.590000px;}
.ya0{bottom:316.110000px;}
.y76{bottom:317.550000px;}
.y5b{bottom:318.174724px;}
.y35{bottom:323.490000px;}
.y5c{bottom:332.764882px;}
.yb8{bottom:333.930000px;}
.y9f{bottom:338.115000px;}
.ye6{bottom:338.475000px;}
.y34{bottom:345.495000px;}
.yb7{bottom:355.935000px;}
.y9e{bottom:360.075000px;}
.ye5{bottom:360.435000px;}
.y33{bottom:367.455000px;}
.yb6{bottom:377.715000px;}
.y9d{bottom:382.035000px;}
.ye4{bottom:382.395000px;}
.y32{bottom:389.415000px;}
.yb5{bottom:402.555000px;}
.y9c{bottom:403.995000px;}
.ye3{bottom:407.235000px;}
.y31{bottom:411.375000px;}
.yb4{bottom:424.515000px;}
.y9b{bottom:425.955000px;}
.ye2{bottom:429.015000px;}
.y30{bottom:433.155000px;}
.yb3{bottom:446.475000px;}
.y9a{bottom:447.915000px;}
.ye1{bottom:450.975000px;}
.y2f{bottom:455.115000px;}
.y99{bottom:469.695000px;}
.yb2{bottom:471.315000px;}
.ye0{bottom:475.815000px;}
.y2e{bottom:477.075000px;}
.y98{bottom:491.655000px;}
.yb1{bottom:493.275000px;}
.ydf{bottom:497.775000px;}
.y2d{bottom:499.035000px;}
.y97{bottom:513.615000px;}
.yb0{bottom:515.235000px;}
.yde{bottom:519.735000px;}
.y2c{bottom:520.995000px;}
.y96{bottom:535.575000px;}
.yaf{bottom:540.075000px;}
.y2b{bottom:542.955000px;}
.ydd{bottom:544.575000px;}
.y95{bottom:557.535000px;}
.yae{bottom:562.035000px;}
.y2a{bottom:564.915000px;}
.ydc{bottom:566.535000px;}
.y94{bottom:579.495000px;}
.yad{bottom:583.995000px;}
.y29{bottom:586.875000px;}
.ydb{bottom:588.495000px;}
.y8a{bottom:597.675000px;}
.yac{bottom:605.985000px;}
.y28{bottom:608.865000px;}
.yda{bottom:613.365000px;}
.y27{bottom:630.825000px;}
.yd9{bottom:635.325000px;}
.y26{bottom:652.245000px;}
.yab{bottom:652.785000px;}
.yd8{bottom:657.285000px;}
.y25{bottom:673.845000px;}
.yaa{bottom:674.745000px;}
.y5a{bottom:677.625000px;}
.yd7{bottom:682.125000px;}
.y24{bottom:685.365000px;}
.ya9{bottom:696.705000px;}
.y59{bottom:699.585000px;}
.yd6{bottom:704.085000px;}
.y23{bottom:705.525000px;}
.y58{bottom:721.545000px;}
.y22{bottom:725.505000px;}
.yd5{bottom:726.045000px;}
.y57{bottom:743.505000px;}
.y21{bottom:745.665000px;}
.yd4{bottom:750.885000px;}
.y56{bottom:765.285000px;}
.y20{bottom:765.825000px;}
.yd3{bottom:772.845000px;}
.y1f{bottom:785.805000px;}
.y55{bottom:787.245000px;}
.yd2{bottom:794.805000px;}
.y1e{bottom:805.965000px;}
.y54{bottom:809.205000px;}
.yd1{bottom:816.585000px;}
.y1d{bottom:826.125000px;}
.y53{bottom:831.165000px;}
.yd0{bottom:841.425000px;}
.y1c{bottom:846.285000px;}
.y52{bottom:853.125000px;}
.ycf{bottom:863.385000px;}
.y1b{bottom:866.265000px;}
.y51{bottom:875.130000px;}
.yce{bottom:885.390000px;}
.y1a{bottom:886.470000px;}
.y50{bottom:897.090000px;}
.y19{bottom:903.570000px;}
.ycd{bottom:907.350000px;}
.y18{bottom:912.390000px;}
.y7f{bottom:914.730000px;}
.y4f{bottom:919.050000px;}
.y17{bottom:931.650000px;}
.ycc{bottom:932.190000px;}
.y4e{bottom:941.010000px;}
.y16{bottom:944.610000px;}
.ycb{bottom:954.150000px;}
.y15{bottom:956.490000px;}
.y4d{bottom:962.970000px;}
.yca{bottom:976.110000px;}
.y14{bottom:978.450000px;}
.y4c{bottom:984.750000px;}
.yc9{bottom:998.070000px;}
.y13{bottom:1000.410000px;}
.y4b{bottom:1006.710000px;}
.yf0{bottom:1020.030000px;}
.yc8{bottom:1022.910000px;}
.y4a{bottom:1028.670000px;}
.y12{bottom:1043.610000px;}
.yc7{bottom:1044.870000px;}
.y49{bottom:1050.630000px;}
.yc6{bottom:1066.830000px;}
.y11{bottom:1067.370000px;}
.y48{bottom:1072.590000px;}
.yc5{bottom:1088.790000px;}
.y47{bottom:1094.550000px;}
.yc4{bottom:1113.630000px;}
.y3f{bottom:1114.710000px;}
.y46{bottom:1116.510000px;}
.y10{bottom:1121.910000px;}
.yc3{bottom:1135.590000px;}
.y45{bottom:1138.500000px;}
.yf{bottom:1142.100000px;}
.yc2{bottom:1157.580000px;}
.y44{bottom:1160.460000px;}
.ye{bottom:1162.260000px;}
.y1{bottom:1193.220000px;}
.h13{height:13.482000px;}
.ha{height:15.336000px;}
.h6{height:17.280000px;}
.h1f{height:20.880000px;}
.h11{height:22.649760px;}
.h14{height:29.604960px;}
.hc{height:30.672000px;}
.hb{height:35.579520px;}
.h8{height:35.676000px;}
.h7{height:39.315600px;}
.h9{height:43.657200px;}
.h1a{height:50.430620px;}
.h19{height:50.535465px;}
.h24{height:53.928000px;}
.h3{height:56.436480px;}
.h20{height:58.505040px;}
.h22{height:61.669110px;}
.h17{height:63.374400px;}
.h12{height:64.224000px;}
.h10{height:64.848960px;}
.hf{height:65.124096px;}
.h2{height:65.884219px;}
.hd{height:70.372800px;}
.he{height:70.488000px;}
.h1b{height:70.588821px;}
.h1c{height:70.735575px;}
.h16{height:73.116000px;}
.h15{height:74.004654px;}
.h1e{height:74.300133px;}
.h25{height:82.470960px;}
.h1d{height:82.676953px;}
.h26{height:86.585445px;}
.h5{height:121.070742px;}
.h23{height:147.276000px;}
.h21{height:168.150000px;}
.h4{height:210.420000px;}
.h18{height:354.383191px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:43.380000px;}
.w8{width:198.750000px;}
.w4{width:317.415000px;}
.w6{width:438.195000px;}
.w9{width:517.575000px;}
.w7{width:652.509857px;}
.w5{width:797.400000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:5.910000px;}
.x25{left:7.132063px;}
.x26{left:9.303353px;}
.x27{left:12.859775px;}
.x28{left:15.892094px;}
.x10{left:17.640000px;}
.x15{left:26.224431px;}
.x11{left:28.080000px;}
.x32{left:43.374000px;}
.x2f{left:46.434000px;}
.x29{left:51.980419px;}
.x14{left:54.189139px;}
.x6{left:70.740000px;}
.x1{left:80.999987px;}
.xa{left:100.115987px;}
.x5{left:105.165000px;}
.x2e{left:113.436000px;}
.x33{left:123.515987px;}
.xc{left:127.475987px;}
.xd{left:134.135987px;}
.x35{left:138.995987px;}
.x36{left:140.975987px;}
.xb{left:146.015987px;}
.x38{left:147.095987px;}
.x37{left:148.175987px;}
.x39{left:150.509987px;}
.x2c{left:152.309987px;}
.x34{left:153.389987px;}
.xe{left:161.129987px;}
.x31{left:178.590000px;}
.x9{left:227.595000px;}
.x23{left:247.067011px;}
.x22{left:253.685699px;}
.x20{left:259.076485px;}
.x17{left:263.089624px;}
.x13{left:267.656815px;}
.x21{left:279.816041px;}
.xf{left:285.735000px;}
.x24{left:291.570954px;}
.x12{left:298.728712px;}
.x16{left:308.941262px;}
.x30{left:312.915000px;}
.x1d{left:461.410693px;}
.x1a{left:462.758388px;}
.x19{left:480.817522px;}
.x1b{left:486.867186px;}
.x1e{left:490.580841px;}
.x1c{left:494.579007px;}
.x1f{left:518.582986px;}
.x18{left:524.497871px;}
.x4{left:554.145000px;}
.x2d{left:639.824987px;}
.x7{left:721.770000px;}
.x2b{left:747.149987px;}
.x2a{left:781.169987px;}
.x8{left:786.600000px;}
.x2{left:829.260000px;}
@media print{
.v3{vertical-align:-72.320000pt;}
.v2{vertical-align:-21.120000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:18.560000pt;}
.v1{vertical-align:21.120000pt;}
.ls1b{letter-spacing:-0.348800pt;}
.ls19{letter-spacing:-0.342933pt;}
.ls8{letter-spacing:-0.256000pt;}
.ls7{letter-spacing:-0.192000pt;}
.ls20{letter-spacing:-0.128000pt;}
.ls17{letter-spacing:-0.121600pt;}
.ls1c{letter-spacing:-0.091733pt;}
.ls18{letter-spacing:-0.059733pt;}
.lse{letter-spacing:-0.012160pt;}
.ls5{letter-spacing:0.000000pt;}
.ls1d{letter-spacing:0.035840pt;}
.ls1f{letter-spacing:0.128000pt;}
.ls6{letter-spacing:0.133333pt;}
.ls1e{letter-spacing:0.160000pt;}
.ls0{letter-spacing:0.183680pt;}
.ls12{letter-spacing:0.192000pt;}
.ls14{letter-spacing:0.202384pt;}
.ls10{letter-spacing:0.224000pt;}
.ls1{letter-spacing:0.227840pt;}
.lsf{letter-spacing:0.241280pt;}
.ls9{letter-spacing:0.256000pt;}
.ls1a{letter-spacing:0.361600pt;}
.ls13{letter-spacing:9.792000pt;}
.lsc{letter-spacing:15.552000pt;}
.ls11{letter-spacing:21.548160pt;}
.lsb{letter-spacing:23.872000pt;}
.ls3{letter-spacing:25.792000pt;}
.ls2{letter-spacing:28.992000pt;}
.ls15{letter-spacing:38.592000pt;}
.ls4{letter-spacing:57.066667pt;}
.ls16{letter-spacing:61.632000pt;}
.lsa{letter-spacing:103.232000pt;}
.lsd{letter-spacing:463.818667pt;}
.ws2{word-spacing:-64.000000pt;}
.ws1{word-spacing:-63.808000pt;}
.ws3{word-spacing:-58.880000pt;}
.ws17{word-spacing:-19.244160pt;}
.ws7{word-spacing:-17.664000pt;}
.ws12{word-spacing:-17.539925pt;}
.ws11{word-spacing:-17.337541pt;}
.wsb{word-spacing:-16.934400pt;}
.ws9{word-spacing:-16.704000pt;}
.ws18{word-spacing:-16.576000pt;}
.ws8{word-spacing:-16.448000pt;}
.ws19{word-spacing:-16.320000pt;}
.ws16{word-spacing:-16.256000pt;}
.ws4{word-spacing:-16.250880pt;}
.wse{word-spacing:-16.192000pt;}
.ws10{word-spacing:-16.016192pt;}
.wsa{word-spacing:-16.000000pt;}
.wsf{word-spacing:-15.982963pt;}
.ws6{word-spacing:-15.132160pt;}
.ws14{word-spacing:-14.390159pt;}
.ws13{word-spacing:-13.651840pt;}
.ws5{word-spacing:-9.539840pt;}
.ws15{word-spacing:-8.224000pt;}
.ws0{word-spacing:-0.138880pt;}
.wsd{word-spacing:-0.126720pt;}
.wsc{word-spacing:0.000000pt;}
._18{margin-left:-3.712000pt;}
._19{margin-left:-2.293333pt;}
._1{margin-left:-1.029120pt;}
._2{width:1.039360pt;}
._3{width:2.576213pt;}
._f{width:3.546880pt;}
._2b{width:4.544000pt;}
._4{width:5.916160pt;}
._13{width:7.680000pt;}
._14{width:8.767573pt;}
._32{width:9.713067pt;}
._5{width:10.892800pt;}
._6{width:11.921920pt;}
._a{width:13.570560pt;}
._1d{width:15.365120pt;}
._31{width:17.423360pt;}
._15{width:18.560000pt;}
._1e{width:19.851093pt;}
._10{width:21.696000pt;}
._1a{width:22.976000pt;}
._1f{width:24.512000pt;}
._e{width:25.472000pt;}
._21{width:26.496000pt;}
._9{width:27.407360pt;}
._c{width:28.468480pt;}
._b{width:29.546667pt;}
._22{width:30.506667pt;}
._29{width:33.600000pt;}
._2a{width:34.560000pt;}
._39{width:35.712000pt;}
._34{width:37.247573pt;}
._28{width:38.336000pt;}
._7{width:39.449600pt;}
._8{width:40.596480pt;}
._16{width:41.600000pt;}
._1b{width:42.922667pt;}
._d{width:44.864000pt;}
._12{width:46.832640pt;}
._33{width:48.256000pt;}
._3a{width:50.240000pt;}
._38{width:52.032000pt;}
._30{width:53.757440pt;}
._35{width:54.976000pt;}
._36{width:55.872000pt;}
._26{width:56.960000pt;}
._27{width:57.984000pt;}
._17{width:59.648000pt;}
._3c{width:60.800000pt;}
._25{width:61.824000pt;}
._20{width:63.232000pt;}
._37{width:66.752000pt;}
._11{width:69.632000pt;}
._3d{width:71.232000pt;}
._23{width:87.680000pt;}
._24{width:88.688640pt;}
._2e{width:89.636480pt;}
._3b{width:91.154560pt;}
._1c{width:102.890667pt;}
._2c{width:247.326720pt;}
._2d{width:331.438720pt;}
._2f{width:1094.431360pt;}
._0{width:1316.879787pt;}
.fs3{font-size:16.000000pt;}
.fs9{font-size:26.880000pt;}
.fs5{font-size:32.000000pt;}
.fs4{font-size:37.120000pt;}
.fs2{font-size:42.880000pt;}
.fse{font-size:53.120000pt;}
.fsf{font-size:55.992837pt;}
.fs8{font-size:56.320000pt;}
.fs0{font-size:58.880000pt;}
.fsb{font-size:63.931854pt;}
.fs7{font-size:64.000000pt;}
.fsa{font-size:64.064768pt;}
.fsd{font-size:67.461249pt;}
.fs6{font-size:69.120000pt;}
.fsc{font-size:74.880000pt;}
.fs1{font-size:138.880000pt;}
.yd{bottom:-5.280000pt;}
.y0{bottom:0.000000pt;}
.y8{bottom:3.840000pt;}
.yc{bottom:4.800000pt;}
.y80{bottom:5.600000pt;}
.y89{bottom:5.760000pt;}
.y93{bottom:5.786667pt;}
.y42{bottom:5.920000pt;}
.y75{bottom:9.819710pt;}
.y6f{bottom:12.710593pt;}
.y69{bottom:13.807663pt;}
.yb{bottom:14.880000pt;}
.y6{bottom:17.466667pt;}
.ya{bottom:21.472000pt;}
.y7{bottom:23.840000pt;}
.y88{bottom:24.480000pt;}
.y92{bottom:24.506667pt;}
.y41{bottom:27.066667pt;}
.y74{bottom:29.026382pt;}
.y6e{bottom:31.086549pt;}
.y68{bottom:32.216316pt;}
.y43{bottom:35.066667pt;}
.y9{bottom:42.240000pt;}
.y87{bottom:43.040000pt;}
.y91{bottom:43.066667pt;}
.y40{bottom:48.186667pt;}
.y73{bottom:48.232521pt;}
.y6d{bottom:49.495202pt;}
.y67{bottom:50.591740pt;}
.y4{bottom:51.840000pt;}
.y8c{bottom:52.506667pt;}
.y86{bottom:61.760000pt;}
.y90{bottom:61.786667pt;}
.y72{bottom:67.438660pt;}
.y6c{bottom:67.903854pt;}
.y66{bottom:69.000392pt;}
.y3{bottom:69.472000pt;}
.y81{bottom:71.200000pt;}
.y8b{bottom:71.226667pt;}
.y85{bottom:80.480000pt;}
.y8f{bottom:80.506667pt;}
.y6b{bottom:86.312505pt;}
.y71{bottom:86.644799pt;}
.y65{bottom:87.409044pt;}
.y2{bottom:87.712000pt;}
.y84{bottom:99.200000pt;}
.y8e{bottom:99.226667pt;}
.y6a{bottom:104.687930pt;}
.y64{bottom:105.817697pt;}
.y70{bottom:105.850938pt;}
.y7e{bottom:110.272000pt;}
.y3e{bottom:112.032000pt;}
.yc1{bottom:113.472000pt;}
.y5{bottom:116.640000pt;}
.yef{bottom:117.472000pt;}
.y8d{bottom:117.946667pt;}
.y83{bottom:117.960000pt;}
.ya8{bottom:124.992000pt;}
.y7d{bottom:129.792000pt;}
.y3d{bottom:131.552000pt;}
.yc0{bottom:132.992000pt;}
.y82{bottom:136.520000pt;}
.yee{bottom:136.986667pt;}
.ya7{bottom:144.506667pt;}
.y7c{bottom:149.306667pt;}
.y3c{bottom:151.066667pt;}
.ybf{bottom:152.506667pt;}
.yed{bottom:156.506667pt;}
.ya6{bottom:164.026667pt;}
.y7b{bottom:168.826667pt;}
.y3b{bottom:170.586667pt;}
.y5f{bottom:172.845141pt;}
.y63{bottom:173.443243pt;}
.y61{bottom:173.443249pt;}
.ybe{bottom:174.586667pt;}
.yec{bottom:178.586667pt;}
.ya5{bottom:183.546667pt;}
.y7a{bottom:188.346667pt;}
.y3a{bottom:189.946667pt;}
.y62{bottom:191.851894pt;}
.y60{bottom:191.851900pt;}
.y5e{bottom:192.051279pt;}
.ybd{bottom:194.106667pt;}
.yeb{bottom:198.106667pt;}
.ya4{bottom:203.066667pt;}
.y79{bottom:207.866667pt;}
.y39{bottom:209.466667pt;}
.ybc{bottom:213.626667pt;}
.yea{bottom:220.186667pt;}
.ya3{bottom:222.426667pt;}
.y78{bottom:227.386667pt;}
.y38{bottom:228.986667pt;}
.ybb{bottom:235.706667pt;}
.ye9{bottom:239.706667pt;}
.ya2{bottom:241.946667pt;}
.y37{bottom:248.506667pt;}
.yba{bottom:255.226667pt;}
.ye8{bottom:259.226667pt;}
.ya1{bottom:261.466667pt;}
.y77{bottom:264.666667pt;}
.y36{bottom:268.026667pt;}
.yb9{bottom:274.746667pt;}
.y5d{bottom:277.382354pt;}
.ye7{bottom:278.746667pt;}
.ya0{bottom:280.986667pt;}
.y76{bottom:282.266667pt;}
.y5b{bottom:282.821977pt;}
.y35{bottom:287.546667pt;}
.y5c{bottom:295.791006pt;}
.yb8{bottom:296.826667pt;}
.y9f{bottom:300.546667pt;}
.ye6{bottom:300.866667pt;}
.y34{bottom:307.106667pt;}
.yb7{bottom:316.386667pt;}
.y9e{bottom:320.066667pt;}
.ye5{bottom:320.386667pt;}
.y33{bottom:326.626667pt;}
.yb6{bottom:335.746667pt;}
.y9d{bottom:339.586667pt;}
.ye4{bottom:339.906667pt;}
.y32{bottom:346.146667pt;}
.yb5{bottom:357.826667pt;}
.y9c{bottom:359.106667pt;}
.ye3{bottom:361.986667pt;}
.y31{bottom:365.666667pt;}
.yb4{bottom:377.346667pt;}
.y9b{bottom:378.626667pt;}
.ye2{bottom:381.346667pt;}
.y30{bottom:385.026667pt;}
.yb3{bottom:396.866667pt;}
.y9a{bottom:398.146667pt;}
.ye1{bottom:400.866667pt;}
.y2f{bottom:404.546667pt;}
.y99{bottom:417.506667pt;}
.yb2{bottom:418.946667pt;}
.ye0{bottom:422.946667pt;}
.y2e{bottom:424.066667pt;}
.y98{bottom:437.026667pt;}
.yb1{bottom:438.466667pt;}
.ydf{bottom:442.466667pt;}
.y2d{bottom:443.586667pt;}
.y97{bottom:456.546667pt;}
.yb0{bottom:457.986667pt;}
.yde{bottom:461.986667pt;}
.y2c{bottom:463.106667pt;}
.y96{bottom:476.066667pt;}
.yaf{bottom:480.066667pt;}
.y2b{bottom:482.626667pt;}
.ydd{bottom:484.066667pt;}
.y95{bottom:495.586667pt;}
.yae{bottom:499.586667pt;}
.y2a{bottom:502.146667pt;}
.ydc{bottom:503.586667pt;}
.y94{bottom:515.106667pt;}
.yad{bottom:519.106667pt;}
.y29{bottom:521.666667pt;}
.ydb{bottom:523.106667pt;}
.y8a{bottom:531.266667pt;}
.yac{bottom:538.653333pt;}
.y28{bottom:541.213333pt;}
.yda{bottom:545.213333pt;}
.y27{bottom:560.733333pt;}
.yd9{bottom:564.733333pt;}
.y26{bottom:579.773333pt;}
.yab{bottom:580.253333pt;}
.yd8{bottom:584.253333pt;}
.y25{bottom:598.973333pt;}
.yaa{bottom:599.773333pt;}
.y5a{bottom:602.333333pt;}
.yd7{bottom:606.333333pt;}
.y24{bottom:609.213333pt;}
.ya9{bottom:619.293333pt;}
.y59{bottom:621.853333pt;}
.yd6{bottom:625.853333pt;}
.y23{bottom:627.133333pt;}
.y58{bottom:641.373333pt;}
.y22{bottom:644.893333pt;}
.yd5{bottom:645.373333pt;}
.y57{bottom:660.893333pt;}
.y21{bottom:662.813333pt;}
.yd4{bottom:667.453333pt;}
.y56{bottom:680.253333pt;}
.y20{bottom:680.733333pt;}
.yd3{bottom:686.973333pt;}
.y1f{bottom:698.493333pt;}
.y55{bottom:699.773333pt;}
.yd2{bottom:706.493333pt;}
.y1e{bottom:716.413333pt;}
.y54{bottom:719.293333pt;}
.yd1{bottom:725.853333pt;}
.y1d{bottom:734.333333pt;}
.y53{bottom:738.813333pt;}
.yd0{bottom:747.933333pt;}
.y1c{bottom:752.253333pt;}
.y52{bottom:758.333333pt;}
.ycf{bottom:767.453333pt;}
.y1b{bottom:770.013333pt;}
.y51{bottom:777.893333pt;}
.yce{bottom:787.013333pt;}
.y1a{bottom:787.973333pt;}
.y50{bottom:797.413333pt;}
.y19{bottom:803.173333pt;}
.ycd{bottom:806.533333pt;}
.y18{bottom:811.013333pt;}
.y7f{bottom:813.093333pt;}
.y4f{bottom:816.933333pt;}
.y17{bottom:828.133333pt;}
.ycc{bottom:828.613333pt;}
.y4e{bottom:836.453333pt;}
.y16{bottom:839.653333pt;}
.ycb{bottom:848.133333pt;}
.y15{bottom:850.213333pt;}
.y4d{bottom:855.973333pt;}
.yca{bottom:867.653333pt;}
.y14{bottom:869.733333pt;}
.y4c{bottom:875.333333pt;}
.yc9{bottom:887.173333pt;}
.y13{bottom:889.253333pt;}
.y4b{bottom:894.853333pt;}
.yf0{bottom:906.693333pt;}
.yc8{bottom:909.253333pt;}
.y4a{bottom:914.373333pt;}
.y12{bottom:927.653333pt;}
.yc7{bottom:928.773333pt;}
.y49{bottom:933.893333pt;}
.yc6{bottom:948.293333pt;}
.y11{bottom:948.773333pt;}
.y48{bottom:953.413333pt;}
.yc5{bottom:967.813333pt;}
.y47{bottom:972.933333pt;}
.yc4{bottom:989.893333pt;}
.y3f{bottom:990.853333pt;}
.y46{bottom:992.453333pt;}
.y10{bottom:997.253333pt;}
.yc3{bottom:1009.413333pt;}
.y45{bottom:1012.000000pt;}
.yf{bottom:1015.200000pt;}
.yc2{bottom:1028.960000pt;}
.y44{bottom:1031.520000pt;}
.ye{bottom:1033.120000pt;}
.y1{bottom:1060.640000pt;}
.h13{height:11.984000pt;}
.ha{height:13.632000pt;}
.h6{height:15.360000pt;}
.h1f{height:18.560000pt;}
.h11{height:20.133120pt;}
.h14{height:26.315520pt;}
.hc{height:27.264000pt;}
.hb{height:31.626240pt;}
.h8{height:31.712000pt;}
.h7{height:34.947200pt;}
.h9{height:38.806400pt;}
.h1a{height:44.827218pt;}
.h19{height:44.920414pt;}
.h24{height:47.936000pt;}
.h3{height:50.165760pt;}
.h20{height:52.004480pt;}
.h22{height:54.816987pt;}
.h17{height:56.332800pt;}
.h12{height:57.088000pt;}
.h10{height:57.643520pt;}
.hf{height:57.888085pt;}
.h2{height:58.563750pt;}
.hd{height:62.553600pt;}
.he{height:62.656000pt;}
.h1b{height:62.745618pt;}
.h1c{height:62.876067pt;}
.h16{height:64.992000pt;}
.h15{height:65.781915pt;}
.h1e{height:66.044563pt;}
.h25{height:73.307520pt;}
.h1d{height:73.490625pt;}
.h26{height:76.964840pt;}
.h5{height:107.618438pt;}
.h23{height:130.912000pt;}
.h21{height:149.466667pt;}
.h4{height:187.040000pt;}
.h18{height:315.007281pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:38.560000pt;}
.w8{width:176.666667pt;}
.w4{width:282.146667pt;}
.w6{width:389.506667pt;}
.w9{width:460.066667pt;}
.w7{width:580.008762pt;}
.w5{width:708.800000pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:5.253333pt;}
.x25{left:6.339611pt;}
.x26{left:8.269647pt;}
.x27{left:11.430911pt;}
.x28{left:14.126305pt;}
.x10{left:15.680000pt;}
.x15{left:23.310606pt;}
.x11{left:24.960000pt;}
.x32{left:38.554667pt;}
.x2f{left:41.274667pt;}
.x29{left:46.204817pt;}
.x14{left:48.168123pt;}
.x6{left:62.880000pt;}
.x1{left:71.999988pt;}
.xa{left:88.991988pt;}
.x5{left:93.480000pt;}
.x2e{left:100.832000pt;}
.x33{left:109.791988pt;}
.xc{left:113.311988pt;}
.xd{left:119.231988pt;}
.x35{left:123.551988pt;}
.x36{left:125.311988pt;}
.xb{left:129.791988pt;}
.x38{left:130.751988pt;}
.x37{left:131.711988pt;}
.x39{left:133.786655pt;}
.x2c{left:135.386655pt;}
.x34{left:136.346655pt;}
.xe{left:143.226655pt;}
.x31{left:158.746667pt;}
.x9{left:202.306667pt;}
.x23{left:219.615121pt;}
.x22{left:225.498399pt;}
.x20{left:230.290209pt;}
.x17{left:233.857443pt;}
.x13{left:237.917169pt;}
.x21{left:248.725370pt;}
.xf{left:253.986667pt;}
.x24{left:259.174181pt;}
.x12{left:265.536633pt;}
.x16{left:274.614455pt;}
.x30{left:278.146667pt;}
.x1d{left:410.142838pt;}
.x1a{left:411.340789pt;}
.x19{left:427.393353pt;}
.x1b{left:432.770832pt;}
.x1e{left:436.071859pt;}
.x1c{left:439.625784pt;}
.x1f{left:460.962654pt;}
.x18{left:466.220330pt;}
.x4{left:492.573333pt;}
.x2d{left:568.733322pt;}
.x7{left:641.573333pt;}
.x2b{left:664.133322pt;}
.x2a{left:694.373322pt;}
.x8{left:699.200000pt;}
.x2{left:737.120000pt;}
}




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