
    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_946accd91e55ad5635b5f1ba.woff')format("woff");}.ff1{font-family:ff1;line-height:0.940000;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_c8383593119ee8e7ff3e0482.woff')format("woff");}.ff2{font-family:ff2;line-height:0.929000;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_b7b10a79a1c6386eab0bc5c4.woff')format("woff");}.ff3{font-family:ff3;line-height:0.910000;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_513ac3b0717bc65217bde4fa.woff')format("woff");}.ff4{font-family:ff4;line-height:0.926000;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_80d02b369a45fa88a75b5d36.woff')format("woff");}.ff5{font-family:ff5;line-height:0.888000;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_aac6168a216a1bebde9cab62.woff')format("woff");}.ff6{font-family:ff6;line-height:0.763000;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_be8408a49ab1dd6835f4fd96.woff')format("woff");}.ff7{font-family:ff7;line-height:0.448000;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_9147fa5b4b87521d4b9196c8.woff')format("woff");}.ff8{font-family:ff8;line-height:0.714000;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_5c307e93b84301d1ebb01979.woff')format("woff");}.ff9{font-family:ff9;line-height:0.926000;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_34219ffab51b0d08e7f1aaf7.woff')format("woff");}.ffa{font-family:ffa;line-height:0.696000;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_1746941155dad57fab1bc575.woff')format("woff");}.ffb{font-family:ffb;line-height:0.958008;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_c06e2f0c26c01cd88c9cbff4.woff')format("woff");}.ffc{font-family:ffc;line-height:0.666504;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_6f7e618e5bfb8c711a38aa08.woff')format("woff");}.ffd{font-family:ffd;line-height:0.948730;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_16af415872781a3805ad403d.woff')format("woff");}.ffe{font-family:ffe;line-height:0.905000;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_b87bbbd628263ecf8702e988.woff')format("woff");}.fff{font-family:fff;line-height:0.958496;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_b318c230133379d416254d25.woff')format("woff");}.ff10{font-family:ff10;line-height:0.911000;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_96edac73f5a4921c28c432c9.woff')format("woff");}.ff11{font-family:ff11;line-height:0.938477;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_a8813260b6132990dd05aa75.woff')format("woff");}.ff12{font-family:ff12;line-height:0.926270;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_4463b9bd0079caa7e631a071.woff')format("woff");}.ff13{font-family:ff13;line-height:0.863770;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_65dbc3c7a733c566decd833e.woff')format("woff");}.ff14{font-family:ff14;line-height:0.865234;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_64ceee61290a985ff788d0c1.woff')format("woff");}.ff15{font-family:ff15;line-height:0.719727;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_1df62f6e89fdb93dc593f57a.woff')format("woff");}.ff16{font-family:ff16;line-height:0.915527;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_34d6ec522f24497be6df95c5.woff')format("woff");}.ff17{font-family:ff17;line-height:0.717285;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_b91af57c3155f9eb7db9b53c.woff')format("woff");}.ff18{font-family:ff18;line-height:0.689453;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;}
.m2{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);}
.m3{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);}
.m1{transform:matrix(0.234923,-0.085505,0.085505,0.234923,0,0);-ms-transform:matrix(0.234923,-0.085505,0.085505,0.234923,0,0);-webkit-transform:matrix(0.234923,-0.085505,0.085505,0.234923,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);}
.v8{vertical-align:-75.000000px;}
.v5{vertical-align:-72.000000px;}
.va{vertical-align:-65.979600px;}
.v0{vertical-align:0.000000px;}
.v9{vertical-align:16.518000px;}
.vc{vertical-align:22.035600px;}
.vb{vertical-align:23.766600px;}
.v1{vertical-align:25.260000px;}
.v4{vertical-align:26.963400px;}
.v3{vertical-align:29.665800px;}
.vf{vertical-align:36.347100px;}
.v10{vertical-align:46.620000px;}
.v6{vertical-align:72.000000px;}
.v7{vertical-align:74.879880px;}
.v2{vertical-align:106.560000px;}
.vd{vertical-align:228.552000px;}
.ve{vertical-align:251.801400px;}
.ls1a{letter-spacing:-0.060000px;}
.ls14{letter-spacing:-0.052800px;}
.ls0{letter-spacing:0.000000px;}
.ls1f{letter-spacing:0.031740px;}
.ls10{letter-spacing:0.034620px;}
.lsc{letter-spacing:0.043200px;}
.ls1e{letter-spacing:0.044400px;}
.ls16{letter-spacing:0.048000px;}
.ls12{letter-spacing:0.052800px;}
.lse{letter-spacing:0.057600px;}
.lsf{letter-spacing:0.086400px;}
.ls17{letter-spacing:0.090000px;}
.ls19{letter-spacing:0.120000px;}
.ls20{letter-spacing:6.552000px;}
.ls13{letter-spacing:6.588000px;}
.ls11{letter-spacing:6.732000px;}
.ls22{letter-spacing:6.999960px;}
.ls21{letter-spacing:7.000020px;}
.lsa{letter-spacing:10.524000px;}
.ls9{letter-spacing:14.976000px;}
.ls4{letter-spacing:14.976060px;}
.ls6{letter-spacing:15.999960px;}
.ls5{letter-spacing:16.000020px;}
.ls2{letter-spacing:19.999980px;}
.ls3{letter-spacing:20.000040px;}
.ls15{letter-spacing:20.850000px;}
.lsd{letter-spacing:72.476662px;}
.ls7{letter-spacing:79.999980px;}
.ls8{letter-spacing:80.000040px;}
.ls18{letter-spacing:80.772050px;}
.lsb{letter-spacing:105.012009px;}
.ls1d{letter-spacing:150.348000px;}
.ls1b{letter-spacing:156.348000px;}
.ls1c{letter-spacing:162.348000px;}
.ls1{letter-spacing:164.016000px;}
.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;}
}
.ws13{word-spacing:-111.600000px;}
.wsd{word-spacing:-83.400000px;}
.ws8{word-spacing:-80.150400px;}
.ws9{word-spacing:-80.064000px;}
.wsc{word-spacing:-78.120000px;}
.wsb{word-spacing:-73.444800px;}
.ws10{word-spacing:-73.392000px;}
.ws11{word-spacing:-50.040000px;}
.wse{word-spacing:-0.363473px;}
.wsf{word-spacing:-0.324720px;}
.ws3{word-spacing:-0.300000px;}
.ws1{word-spacing:-0.288000px;}
.wsa{word-spacing:-0.264000px;}
.ws5{word-spacing:-0.263918px;}
.ws7{word-spacing:-0.260916px;}
.ws4{word-spacing:-0.216000px;}
.ws12{word-spacing:-0.180000px;}
.ws0{word-spacing:0.000000px;}
.ws6{word-spacing:43.312240px;}
.ws2{word-spacing:63.795840px;}
._1{margin-left:-6903.300120px;}
._18{margin-left:-66.000000px;}
._19{margin-left:-60.000000px;}
._11{margin-left:-37.200000px;}
._3{margin-left:-22.560000px;}
._8{margin-left:-21.312000px;}
._f{margin-left:-15.840000px;}
._1a{margin-left:-14.520000px;}
._2{margin-left:-13.320000px;}
._6{margin-left:-11.100000px;}
._c{margin-left:-9.272834px;}
._12{margin-left:-6.900000px;}
._4{margin-left:-5.400000px;}
._17{margin-left:-4.320000px;}
._0{margin-left:-3.240000px;}
._5{margin-left:-2.160000px;}
._9{margin-left:-1.029609px;}
._10{width:1.034400px;}
._d{width:2.609159px;}
._1b{width:5.400000px;}
._e{width:10.800000px;}
._16{width:80.908800px;}
._13{width:179.808000px;}
._b{width:199.756191px;}
._1c{width:340.803480px;}
._a{width:887.025480px;}
._15{width:2848.504860px;}
._14{width:4185.576000px;}
._7{width:10630.020120px;}
.fc9{color:transparent;}
.fc8{color:rgb(104,170,170);}
.fc6{color:rgb(154,183,94);}
.fc7{color:rgb(204,103,69);}
.fc5{color:rgb(202,178,102);}
.fc3{color:rgb(181,23,0);}
.fc2{color:rgb(238,34,12);}
.fc4{color:rgb(17,17,17);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs1c{font-size:89.460000px;}
.fs1d{font-size:114.000000px;}
.fs1b{font-size:126.000000px;}
.fs1e{font-size:156.000000px;}
.fs0{font-size:180.000000px;}
.fs11{font-size:185.250300px;}
.fsf{font-size:187.381980px;}
.fs7{font-size:204.480000px;}
.fsa{font-size:213.000000px;}
.fsd{font-size:216.000000px;}
.fs10{font-size:260.915880px;}
.fse{font-size:263.918280px;}
.fs14{font-size:264.000000px;}
.fsc{font-size:265.680000px;}
.fs18{font-size:270.000000px;}
.fs4{font-size:288.000000px;}
.fs2{font-size:300.000000px;}
.fs13{font-size:324.720000px;}
.fs8{font-size:347.887860px;}
.fs3{font-size:354.240000px;}
.fs5{font-size:360.000000px;}
.fs17{font-size:363.472920px;}
.fs16{font-size:369.000000px;}
.fs19{font-size:373.056000px;}
.fsb{font-size:395.999986px;}
.fs9{font-size:396.000000px;}
.fs15{font-size:420.000000px;}
.fs6{font-size:480.000000px;}
.fs1a{font-size:497.523360px;}
.fs1{font-size:600.000000px;}
.fs12{font-size:900.000000px;}
.y9c{bottom:-18.408450px;}
.y97{bottom:-5.316105px;}
.y5e{bottom:-5.179500px;}
.y63{bottom:-5.179440px;}
.y66{bottom:-5.179410px;}
.y1a{bottom:-4.957410px;}
.y2e{bottom:-3.718050px;}
.y0{bottom:0.000000px;}
.y68{bottom:1.272090px;}
.y76{bottom:1.272210px;}
.ya5{bottom:1.846515px;}
.yd{bottom:2.490075px;}
.ya3{bottom:7.957515px;}
.y30{bottom:16.816650px;}
.y32{bottom:17.010195px;}
.y2c{bottom:17.010255px;}
.yb{bottom:19.950075px;}
.y1{bottom:27.956880px;}
.yf{bottom:88.558950px;}
.y39{bottom:125.484075px;}
.y8f{bottom:128.129445px;}
.y31{bottom:131.488005px;}
.y2a{bottom:142.073100px;}
.y9{bottom:148.569135px;}
.y35{bottom:149.970765px;}
.y8d{bottom:158.849250px;}
.y7b{bottom:161.623500px;}
.y86{bottom:161.681100px;}
.y52{bottom:161.809650px;}
.y75{bottom:164.455950px;}
.y73{bottom:165.728100px;}
.y74{bottom:170.907600px;}
.y61{bottom:180.749250px;}
.y62{bottom:185.928750px;}
.y1d{bottom:200.685750px;}
.y67{bottom:215.881050px;}
.y64{bottom:217.153200px;}
.y65{bottom:222.332550px;}
.y2f{bottom:226.620000px;}
.y42{bottom:227.856750px;}
.y38{bottom:234.984000px;}
.y34{bottom:239.970750px;}
.y29{bottom:243.436650px;}
.y2d{bottom:247.154700px;}
.y95{bottom:247.935900px;}
.y54{bottom:249.106350px;}
.y96{bottom:253.251900px;}
.y8{bottom:260.613450px;}
.y60{bottom:275.544750px;}
.y8e{bottom:286.908750px;}
.y51{bottom:311.929200px;}
.ye{bottom:322.608300px;}
.y41{bottom:337.356750px;}
.y28{bottom:339.391200px;}
.y37{bottom:344.484000px;}
.y77{bottom:344.731185px;}
.y78{bottom:350.480850px;}
.y94{bottom:351.435900px;}
.y8a{bottom:352.871850px;}
.y69{bottom:388.975500px;}
.y85{bottom:411.106350px;}
.y7{bottom:412.320300px;}
.y50{bottom:413.929200px;}
.y2b{bottom:419.130000px;}
.y1c{bottom:423.731700px;}
.y27{bottom:429.715050px;}
.y40{bottom:446.856750px;}
.y36{bottom:459.925650px;}
.y79{bottom:474.412050px;}
.y4f{bottom:521.438100px;}
.y82{bottom:528.821700px;}
.y33{bottom:532.157850px;}
.ya1{bottom:532.984200px;}
.y18{bottom:546.916650px;}
.y6{bottom:548.145000px;}
.y1b{bottom:551.874000px;}
.y3f{bottom:562.298250px;}
.y47{bottom:569.367150px;}
.y8b{bottom:578.684550px;}
.y4e{bottom:623.438100px;}
.y81{bottom:630.821700px;}
.y6c{bottom:632.895000px;}
.y98{bottom:638.395950px;}
.ya0{bottom:640.714350px;}
.y20{bottom:642.716550px;}
.y5{bottom:660.644550px;}
.y93{bottom:664.631550px;}
.y17{bottom:672.826950px;}
.y19{bottom:677.784300px;}
.y46{bottom:678.867150px;}
.y5b{bottom:711.455100px;}
.y4d{bottom:719.929200px;}
.y80{bottom:732.821700px;}
.y24{bottom:736.845300px;}
.y9f{bottom:739.341150px;}
.y8c{bottom:742.060950px;}
.y13{bottom:745.964850px;}
.y3e{bottom:755.568150px;}
.y48{bottom:757.056300px;}
.y92{bottom:760.994250px;}
.y22{bottom:772.845270px;}
.y16{bottom:788.734800px;}
.y21{bottom:790.845270px;}
.y55{bottom:792.489900px;}
.y45{bottom:794.308650px;}
.y5a{bottom:819.455100px;}
.y4c{bottom:827.438100px;}
.y7f{bottom:834.821700px;}
.y23{bottom:841.605270px;}
.y9e{bottom:847.071300px;}
.y1f{bottom:851.263200px;}
.y91{bottom:857.357100px;}
.y4{bottom:861.923400px;}
.y3d{bottom:871.009800px;}
.y44{bottom:875.367150px;}
.y15{bottom:896.734800px;}
.y6b{bottom:904.059300px;}
.y59{bottom:927.455100px;}
.y4b{bottom:929.438100px;}
.y7e{bottom:932.071800px;}
.y9d{bottom:945.698250px;}
.y72{bottom:947.287950px;}
.ya{bottom:949.457250px;}
.y90{bottom:958.157100px;}
.yc{bottom:968.762250px;}
.y3c{bottom:974.568150px;}
.y25{bottom:982.453485px;}
.y43{bottom:990.808650px;}
.y53{bottom:1003.106400px;}
.y14{bottom:1004.419650px;}
.y83{bottom:1019.106450px;}
.y4a{bottom:1025.929200px;}
.y1e{bottom:1034.527200px;}
.y58{bottom:1036.479750px;}
.y89{bottom:1037.414850px;}
.y6f{bottom:1040.286000px;}
.y7d{bottom:1041.178650px;}
.y3b{bottom:1084.068150px;}
.y3{bottom:1094.423400px;}
.ya6{bottom:1128.002400px;}
.y5f{bottom:1130.599800px;}
.y49{bottom:1135.507800px;}
.y7c{bottom:1138.000350px;}
.y71{bottom:1138.644750px;}
.y57{bottom:1138.878450px;}
.y6e{bottom:1142.286000px;}
.y88{bottom:1142.661150px;}
.y12{bottom:1179.765750px;}
.y6a{bottom:1188.853050px;}
.y84{bottom:1192.106400px;}
.y3a{bottom:1199.509800px;}
.y26{bottom:1222.291800px;}
.ya8{bottom:1229.210085px;}
.y70{bottom:1240.644750px;}
.y6d{bottom:1244.286000px;}
.y87{bottom:1247.907450px;}
.y7a{bottom:1249.860750px;}
.y56{bottom:1254.717750px;}
.y9a{bottom:1264.290000px;}
.y9b{bottom:1282.698450px;}
.ya7{bottom:1321.117830px;}
.y2{bottom:1326.923400px;}
.y5c{bottom:1335.018000px;}
.y5d{bottom:1340.197500px;}
.y10{bottom:1372.198650px;}
.y11{bottom:1372.675500px;}
.y99{bottom:1393.588950px;}
.ya2{bottom:1395.446400px;}
.ya4{bottom:1465.156950px;}
.h3d{height:21.397890px;}
.h3b{height:23.349000px;}
.h1b{height:25.504530px;}
.h38{height:26.617500px;}
.h3f{height:30.751500px;}
.he{height:34.006035px;}
.h2a{height:35.529480px;}
.h35{height:36.466230px;}
.h7{height:43.680000px;}
.h1d{height:61.041930px;}
.h19{height:61.744350px;}
.h2d{height:62.699070px;}
.h40{height:77.862000px;}
.h5{height:82.290000px;}
.h3c{height:86.058000px;}
.h3e{height:86.698080px;}
.h41{height:105.768000px;}
.h1c{height:116.890314px;}
.h1{height:131.580000px;}
.hf{height:155.853761px;}
.h18{height:157.896000px;}
.h2b{height:162.835868px;}
.h36{height:167.129088px;}
.h1e{height:176.900967px;}
.h1a{height:178.936594px;}
.h30{height:188.976562px;}
.h34{height:192.984000px;}
.h25{height:194.519531px;}
.h11{height:195.264000px;}
.h3a{height:195.550781px;}
.h17{height:195.757383px;}
.h2f{height:196.567383px;}
.hb{height:196.704000px;}
.ha{height:198.167040px;}
.h32{height:199.951172px;}
.h13{height:201.024000px;}
.h15{height:203.400000px;}
.h8{height:204.000000px;}
.hd{height:210.528000px;}
.h21{height:212.203125px;}
.h14{height:213.108360px;}
.h1f{height:213.328125px;}
.h3{height:215.400000px;}
.h29{height:218.408203px;}
.h27{height:219.300000px;}
.h23{height:222.216797px;}
.h39{height:222.890465px;}
.h33{height:231.850080px;}
.h24{height:239.259023px;}
.h12{height:244.788480px;}
.h6{height:245.880000px;}
.h4{height:252.218880px;}
.hc{height:252.927360px;}
.h37{height:258.480000px;}
.h20{height:261.009844px;}
.h2c{height:268.642090px;}
.h2e{height:282.054794px;}
.h31{height:282.054914px;}
.h16{height:284.327990px;}
.h10{height:284.328000px;}
.h26{height:301.560000px;}
.h9{height:344.640000px;}
.h2{height:430.800000px;}
.h28{height:497.194090px;}
.h22{height:646.200000px;}
.h0{height:1620.000000px;}
.wc{width:20.230500px;}
.wd{width:31.536165px;}
.w2{width:37.290000px;}
.w5{width:47.479875px;}
.we{width:51.261495px;}
.w6{width:51.269970px;}
.w4{width:68.359965px;}
.w8{width:71.422425px;}
.wb{width:73.260315px;}
.wa{width:73.305510px;}
.w1{width:140.890005px;}
.w7{width:200.082900px;}
.w9{width:680.681250px;}
.w3{width:1629.982500px;}
.w0{width:2880.000000px;}
.x41{left:-26.623500px;}
.x14{left:-6.088050px;}
.x24{left:-4.566000px;}
.x26{left:-2.675340px;}
.xc{left:-1.290000px;}
.x0{left:0.000000px;}
.x65{left:3.862500px;}
.xa{left:8.250000px;}
.xe{left:30.000000px;}
.x15{left:31.911465px;}
.x4d{left:47.137440px;}
.x8{left:80.262000px;}
.x54{left:81.499995px;}
.x2c{left:85.722330px;}
.x2{left:110.893260px;}
.x30{left:117.439320px;}
.x63{left:135.000000px;}
.x29{left:156.580050px;}
.x32{left:171.439350px;}
.x4f{left:179.402550px;}
.x59{left:181.787850px;}
.x3a{left:187.855350px;}
.x2a{left:189.542550px;}
.x58{left:215.226000px;}
.x3{left:218.893200px;}
.xf{left:223.155300px;}
.x37{left:225.000000px;}
.x31{left:238.939350px;}
.x3d{left:242.046900px;}
.x3b{left:252.186150px;}
.x5a{left:256.497450px;}
.x3c{left:319.830135px;}
.x4{left:326.893200px;}
.x67{left:603.218250px;}
.x5f{left:663.985200px;}
.x66{left:690.300300px;}
.x53{left:695.430000px;}
.x4e{left:768.874650px;}
.x9{left:855.527700px;}
.x33{left:866.685000px;}
.x6{left:893.166900px;}
.x55{left:999.255750px;}
.x1{left:1131.337500px;}
.x64{left:1180.755900px;}
.x10{left:1211.019300px;}
.x68{left:1214.139900px;}
.x69{left:1227.472050px;}
.x2f{left:1236.813600px;}
.xd{left:1250.017200px;}
.x7{left:1284.554400px;}
.x11{left:1326.997650px;}
.x13{left:1333.085700px;}
.x56{left:1348.792350px;}
.x17{left:1350.876000px;}
.x5{left:1354.379400px;}
.x57{left:1405.482300px;}
.x12{left:1407.533685px;}
.x16{left:1417.110150px;}
.x18{left:1419.804000px;}
.x20{left:1434.728100px;}
.x19{left:1451.940000px;}
.x28{left:1469.174550px;}
.x23{left:1493.294100px;}
.x60{left:1539.153000px;}
.x21{left:1549.130130px;}
.x1f{left:1555.672500px;}
.x4c{left:1593.043500px;}
.x5b{left:1734.754500px;}
.x61{left:1751.073000px;}
.x36{left:1765.516500px;}
.x62{left:1780.353000px;}
.x5c{left:1818.715500px;}
.x5e{left:1825.243500px;}
.x48{left:1858.195500px;}
.x25{left:1892.844000px;}
.x1e{left:1896.970500px;}
.x5d{left:1905.077970px;}
.x46{left:1908.180000px;}
.x47{left:1935.979485px;}
.x2b{left:1966.783500px;}
.x45{left:1979.545500px;}
.x49{left:1983.439500px;}
.x39{left:2014.194000px;}
.x3f{left:2020.491000px;}
.x38{left:2091.977985px;}
.x3e{left:2098.274985px;}
.x4b{left:2101.332000px;}
.x42{left:2108.689500px;}
.x2d{left:2112.072000px;}
.x40{left:2145.735000px;}
.x4a{left:2165.761500px;}
.x50{left:2167.914000px;}
.x1a{left:2170.315500px;}
.x34{left:2171.685000px;}
.x2e{left:2184.072000px;}
.x43{left:2210.850000px;}
.x27{left:2230.381500px;}
.xb{left:2330.311500px;}
.x1b{left:2346.393300px;}
.x51{left:2407.662000px;}
.x35{left:2415.313500px;}
.x52{left:2420.989500px;}
.x1c{left:2491.707600px;}
.x1d{left:2500.112100px;}
.x22{left:2800.731000px;}
.x44{left:2816.375685px;}
@media print{
.v8{vertical-align:-66.666667pt;}
.v5{vertical-align:-64.000000pt;}
.va{vertical-align:-58.648533pt;}
.v0{vertical-align:0.000000pt;}
.v9{vertical-align:14.682667pt;}
.vc{vertical-align:19.587200pt;}
.vb{vertical-align:21.125867pt;}
.v1{vertical-align:22.453333pt;}
.v4{vertical-align:23.967467pt;}
.v3{vertical-align:26.369600pt;}
.vf{vertical-align:32.308533pt;}
.v10{vertical-align:41.440000pt;}
.v6{vertical-align:64.000000pt;}
.v7{vertical-align:66.559893pt;}
.v2{vertical-align:94.720000pt;}
.vd{vertical-align:203.157333pt;}
.ve{vertical-align:223.823467pt;}
.ls1a{letter-spacing:-0.053333pt;}
.ls14{letter-spacing:-0.046933pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1f{letter-spacing:0.028213pt;}
.ls10{letter-spacing:0.030773pt;}
.lsc{letter-spacing:0.038400pt;}
.ls1e{letter-spacing:0.039467pt;}
.ls16{letter-spacing:0.042667pt;}
.ls12{letter-spacing:0.046933pt;}
.lse{letter-spacing:0.051200pt;}
.lsf{letter-spacing:0.076800pt;}
.ls17{letter-spacing:0.080000pt;}
.ls19{letter-spacing:0.106667pt;}
.ls20{letter-spacing:5.824000pt;}
.ls13{letter-spacing:5.856000pt;}
.ls11{letter-spacing:5.984000pt;}
.ls22{letter-spacing:6.222187pt;}
.ls21{letter-spacing:6.222240pt;}
.lsa{letter-spacing:9.354667pt;}
.ls9{letter-spacing:13.312000pt;}
.ls4{letter-spacing:13.312053pt;}
.ls6{letter-spacing:14.222187pt;}
.ls5{letter-spacing:14.222240pt;}
.ls2{letter-spacing:17.777760pt;}
.ls3{letter-spacing:17.777813pt;}
.ls15{letter-spacing:18.533333pt;}
.lsd{letter-spacing:64.423700pt;}
.ls7{letter-spacing:71.111093pt;}
.ls8{letter-spacing:71.111147pt;}
.ls18{letter-spacing:71.797378pt;}
.lsb{letter-spacing:93.344008pt;}
.ls1d{letter-spacing:133.642667pt;}
.ls1b{letter-spacing:138.976000pt;}
.ls1c{letter-spacing:144.309333pt;}
.ls1{letter-spacing:145.792000pt;}
.ws13{word-spacing:-99.200000pt;}
.wsd{word-spacing:-74.133333pt;}
.ws8{word-spacing:-71.244800pt;}
.ws9{word-spacing:-71.168000pt;}
.wsc{word-spacing:-69.440000pt;}
.wsb{word-spacing:-65.284267pt;}
.ws10{word-spacing:-65.237333pt;}
.ws11{word-spacing:-44.480000pt;}
.wse{word-spacing:-0.323087pt;}
.wsf{word-spacing:-0.288640pt;}
.ws3{word-spacing:-0.266667pt;}
.ws1{word-spacing:-0.256000pt;}
.wsa{word-spacing:-0.234667pt;}
.ws5{word-spacing:-0.234594pt;}
.ws7{word-spacing:-0.231925pt;}
.ws4{word-spacing:-0.192000pt;}
.ws12{word-spacing:-0.160000pt;}
.ws0{word-spacing:0.000000pt;}
.ws6{word-spacing:38.499769pt;}
.ws2{word-spacing:56.707413pt;}
._1{margin-left:-6136.266773pt;}
._18{margin-left:-58.666667pt;}
._19{margin-left:-53.333333pt;}
._11{margin-left:-33.066667pt;}
._3{margin-left:-20.053333pt;}
._8{margin-left:-18.944000pt;}
._f{margin-left:-14.080000pt;}
._1a{margin-left:-12.906667pt;}
._2{margin-left:-11.840000pt;}
._6{margin-left:-9.866667pt;}
._c{margin-left:-8.242519pt;}
._12{margin-left:-6.133333pt;}
._4{margin-left:-4.800000pt;}
._17{margin-left:-3.840000pt;}
._0{margin-left:-2.880000pt;}
._5{margin-left:-1.920000pt;}
._9{margin-left:-0.915208pt;}
._10{width:0.919467pt;}
._d{width:2.319252pt;}
._1b{width:4.800000pt;}
._e{width:9.600000pt;}
._16{width:71.918933pt;}
._13{width:159.829333pt;}
._b{width:177.561059pt;}
._1c{width:302.936427pt;}
._a{width:788.467093pt;}
._15{width:2532.004320pt;}
._14{width:3720.512000pt;}
._7{width:9448.906773pt;}
.fs1c{font-size:79.520000pt;}
.fs1d{font-size:101.333333pt;}
.fs1b{font-size:112.000000pt;}
.fs1e{font-size:138.666667pt;}
.fs0{font-size:160.000000pt;}
.fs11{font-size:164.666933pt;}
.fsf{font-size:166.561760pt;}
.fs7{font-size:181.760000pt;}
.fsa{font-size:189.333333pt;}
.fsd{font-size:192.000000pt;}
.fs10{font-size:231.925227pt;}
.fse{font-size:234.594027pt;}
.fs14{font-size:234.666667pt;}
.fsc{font-size:236.160000pt;}
.fs18{font-size:240.000000pt;}
.fs4{font-size:256.000000pt;}
.fs2{font-size:266.666667pt;}
.fs13{font-size:288.640000pt;}
.fs8{font-size:309.233653pt;}
.fs3{font-size:314.880000pt;}
.fs5{font-size:320.000000pt;}
.fs17{font-size:323.087040pt;}
.fs16{font-size:328.000000pt;}
.fs19{font-size:331.605333pt;}
.fsb{font-size:351.999988pt;}
.fs9{font-size:352.000000pt;}
.fs15{font-size:373.333333pt;}
.fs6{font-size:426.666667pt;}
.fs1a{font-size:442.242987pt;}
.fs1{font-size:533.333333pt;}
.fs12{font-size:800.000000pt;}
.y9c{bottom:-16.363067pt;}
.y97{bottom:-4.725427pt;}
.y5e{bottom:-4.604000pt;}
.y63{bottom:-4.603947pt;}
.y66{bottom:-4.603920pt;}
.y1a{bottom:-4.406587pt;}
.y2e{bottom:-3.304933pt;}
.y0{bottom:0.000000pt;}
.y68{bottom:1.130747pt;}
.y76{bottom:1.130853pt;}
.ya5{bottom:1.641347pt;}
.yd{bottom:2.213400pt;}
.ya3{bottom:7.073347pt;}
.y30{bottom:14.948133pt;}
.y32{bottom:15.120173pt;}
.y2c{bottom:15.120227pt;}
.yb{bottom:17.733400pt;}
.y1{bottom:24.850560pt;}
.yf{bottom:78.719067pt;}
.y39{bottom:111.541400pt;}
.y8f{bottom:113.892840pt;}
.y31{bottom:116.878227pt;}
.y2a{bottom:126.287200pt;}
.y9{bottom:132.061453pt;}
.y35{bottom:133.307347pt;}
.y8d{bottom:141.199333pt;}
.y7b{bottom:143.665333pt;}
.y86{bottom:143.716533pt;}
.y52{bottom:143.830800pt;}
.y75{bottom:146.183067pt;}
.y73{bottom:147.313867pt;}
.y74{bottom:151.917867pt;}
.y61{bottom:160.666000pt;}
.y62{bottom:165.270000pt;}
.y1d{bottom:178.387333pt;}
.y67{bottom:191.894267pt;}
.y64{bottom:193.025067pt;}
.y65{bottom:197.628933pt;}
.y2f{bottom:201.440000pt;}
.y42{bottom:202.539333pt;}
.y38{bottom:208.874667pt;}
.y34{bottom:213.307333pt;}
.y29{bottom:216.388133pt;}
.y2d{bottom:219.693067pt;}
.y95{bottom:220.387467pt;}
.y54{bottom:221.427867pt;}
.y96{bottom:225.112800pt;}
.y8{bottom:231.656400pt;}
.y60{bottom:244.928667pt;}
.y8e{bottom:255.030000pt;}
.y51{bottom:277.270400pt;}
.ye{bottom:286.762933pt;}
.y41{bottom:299.872667pt;}
.y28{bottom:301.681067pt;}
.y37{bottom:306.208000pt;}
.y77{bottom:306.427720pt;}
.y78{bottom:311.538533pt;}
.y94{bottom:312.387467pt;}
.y8a{bottom:313.663867pt;}
.y69{bottom:345.756000pt;}
.y85{bottom:365.427867pt;}
.y7{bottom:366.506933pt;}
.y50{bottom:367.937067pt;}
.y2b{bottom:372.560000pt;}
.y1c{bottom:376.650400pt;}
.y27{bottom:381.968933pt;}
.y40{bottom:397.206000pt;}
.y36{bottom:408.822800pt;}
.y79{bottom:421.699600pt;}
.y4f{bottom:463.500533pt;}
.y82{bottom:470.063733pt;}
.y33{bottom:473.029200pt;}
.ya1{bottom:473.763733pt;}
.y18{bottom:486.148133pt;}
.y6{bottom:487.240000pt;}
.y1b{bottom:490.554667pt;}
.y3f{bottom:499.820667pt;}
.y47{bottom:506.104133pt;}
.y8b{bottom:514.386267pt;}
.y4e{bottom:554.167200pt;}
.y81{bottom:560.730400pt;}
.y6c{bottom:562.573333pt;}
.y98{bottom:567.463067pt;}
.ya0{bottom:569.523867pt;}
.y20{bottom:571.303600pt;}
.y5{bottom:587.239600pt;}
.y93{bottom:590.783600pt;}
.y17{bottom:598.068400pt;}
.y19{bottom:602.474933pt;}
.y46{bottom:603.437467pt;}
.y5b{bottom:632.404533pt;}
.y4d{bottom:639.937067pt;}
.y80{bottom:651.397067pt;}
.y24{bottom:654.973600pt;}
.y9f{bottom:657.192133pt;}
.y8c{bottom:659.609733pt;}
.y13{bottom:663.079867pt;}
.y3e{bottom:671.616133pt;}
.y48{bottom:672.938933pt;}
.y92{bottom:676.439333pt;}
.y22{bottom:686.973573pt;}
.y16{bottom:701.097600pt;}
.y21{bottom:702.973573pt;}
.y55{bottom:704.435467pt;}
.y45{bottom:706.052133pt;}
.y5a{bottom:728.404533pt;}
.y4c{bottom:735.500533pt;}
.y7f{bottom:742.063733pt;}
.y23{bottom:748.093573pt;}
.y9e{bottom:752.952267pt;}
.y1f{bottom:756.678400pt;}
.y91{bottom:762.095200pt;}
.y4{bottom:766.154133pt;}
.y3d{bottom:774.230933pt;}
.y44{bottom:778.104133pt;}
.y15{bottom:797.097600pt;}
.y6b{bottom:803.608267pt;}
.y59{bottom:824.404533pt;}
.y4b{bottom:826.167200pt;}
.y7e{bottom:828.508267pt;}
.y9d{bottom:840.620667pt;}
.y72{bottom:842.033733pt;}
.ya{bottom:843.962000pt;}
.y90{bottom:851.695200pt;}
.yc{bottom:861.122000pt;}
.y3c{bottom:866.282800pt;}
.y25{bottom:873.291987pt;}
.y43{bottom:880.718800pt;}
.y53{bottom:891.650133pt;}
.y14{bottom:892.817467pt;}
.y83{bottom:905.872400pt;}
.y4a{bottom:911.937067pt;}
.y1e{bottom:919.579733pt;}
.y58{bottom:921.315333pt;}
.y89{bottom:922.146533pt;}
.y6f{bottom:924.698667pt;}
.y7d{bottom:925.492133pt;}
.y3b{bottom:963.616133pt;}
.y3{bottom:972.820800pt;}
.ya6{bottom:1002.668800pt;}
.y5f{bottom:1004.977600pt;}
.y49{bottom:1009.340267pt;}
.y7c{bottom:1011.555867pt;}
.y71{bottom:1012.128667pt;}
.y57{bottom:1012.336400pt;}
.y6e{bottom:1015.365333pt;}
.y88{bottom:1015.698800pt;}
.y12{bottom:1048.680667pt;}
.y6a{bottom:1056.758267pt;}
.y84{bottom:1059.650133pt;}
.y3a{bottom:1066.230933pt;}
.y26{bottom:1086.481600pt;}
.ya8{bottom:1092.631187pt;}
.y70{bottom:1102.795333pt;}
.y6d{bottom:1106.032000pt;}
.y87{bottom:1109.251067pt;}
.y7a{bottom:1110.987333pt;}
.y56{bottom:1115.304667pt;}
.y9a{bottom:1123.813333pt;}
.y9b{bottom:1140.176400pt;}
.ya7{bottom:1174.326960pt;}
.y2{bottom:1179.487467pt;}
.y5c{bottom:1186.682667pt;}
.y5d{bottom:1191.286667pt;}
.y10{bottom:1219.732133pt;}
.y11{bottom:1220.156000pt;}
.y99{bottom:1238.745733pt;}
.ya2{bottom:1240.396800pt;}
.ya4{bottom:1302.361733pt;}
.h3d{height:19.020347pt;}
.h3b{height:20.754667pt;}
.h1b{height:22.670693pt;}
.h38{height:23.660000pt;}
.h3f{height:27.334667pt;}
.he{height:30.227587pt;}
.h2a{height:31.581760pt;}
.h35{height:32.414427pt;}
.h7{height:38.826667pt;}
.h1d{height:54.259493pt;}
.h19{height:54.883867pt;}
.h2d{height:55.732507pt;}
.h40{height:69.210667pt;}
.h5{height:73.146667pt;}
.h3c{height:76.496000pt;}
.h3e{height:77.064960pt;}
.h41{height:94.016000pt;}
.h1c{height:103.902502pt;}
.h1{height:116.960000pt;}
.hf{height:138.536677pt;}
.h18{height:140.352000pt;}
.h2b{height:144.742994pt;}
.h36{height:148.559189pt;}
.h1e{height:157.245304pt;}
.h1a{height:159.054750pt;}
.h30{height:167.979167pt;}
.h34{height:171.541333pt;}
.h25{height:172.906250pt;}
.h11{height:173.568000pt;}
.h3a{height:173.822917pt;}
.h17{height:174.006563pt;}
.h2f{height:174.726562pt;}
.hb{height:174.848000pt;}
.ha{height:176.148480pt;}
.h32{height:177.734375pt;}
.h13{height:178.688000pt;}
.h15{height:180.800000pt;}
.h8{height:181.333333pt;}
.hd{height:187.136000pt;}
.h21{height:188.625000pt;}
.h14{height:189.429653pt;}
.h1f{height:189.625000pt;}
.h3{height:191.466667pt;}
.h29{height:194.140625pt;}
.h27{height:194.933333pt;}
.h23{height:197.526042pt;}
.h39{height:198.124858pt;}
.h33{height:206.088960pt;}
.h24{height:212.674688pt;}
.h12{height:217.589760pt;}
.h6{height:218.560000pt;}
.h4{height:224.194560pt;}
.hc{height:224.824320pt;}
.h37{height:229.760000pt;}
.h20{height:232.008750pt;}
.h2c{height:238.792969pt;}
.h2e{height:250.715372pt;}
.h31{height:250.715479pt;}
.h16{height:252.735991pt;}
.h10{height:252.736000pt;}
.h26{height:268.053333pt;}
.h9{height:306.346667pt;}
.h2{height:382.933333pt;}
.h28{height:441.950302pt;}
.h22{height:574.400000pt;}
.h0{height:1440.000000pt;}
.wc{width:17.982667pt;}
.wd{width:28.032147pt;}
.w2{width:33.146667pt;}
.w5{width:42.204333pt;}
.we{width:45.565773pt;}
.w6{width:45.573307pt;}
.w4{width:60.764413pt;}
.w8{width:63.486600pt;}
.wb{width:65.120280pt;}
.wa{width:65.160453pt;}
.w1{width:125.235560pt;}
.w7{width:177.851467pt;}
.w9{width:605.050000pt;}
.w3{width:1448.873333pt;}
.w0{width:2560.000000pt;}
.x41{left:-23.665333pt;}
.x14{left:-5.411600pt;}
.x24{left:-4.058667pt;}
.x26{left:-2.378080pt;}
.xc{left:-1.146667pt;}
.x0{left:0.000000pt;}
.x65{left:3.433333pt;}
.xa{left:7.333333pt;}
.xe{left:26.666667pt;}
.x15{left:28.365747pt;}
.x4d{left:41.899947pt;}
.x8{left:71.344000pt;}
.x54{left:72.444440pt;}
.x2c{left:76.197627pt;}
.x2{left:98.571787pt;}
.x30{left:104.390507pt;}
.x63{left:120.000000pt;}
.x29{left:139.182267pt;}
.x32{left:152.390533pt;}
.x4f{left:159.468933pt;}
.x59{left:161.589200pt;}
.x3a{left:166.982533pt;}
.x2a{left:168.482267pt;}
.x58{left:191.312000pt;}
.x3{left:194.571733pt;}
.xf{left:198.360267pt;}
.x37{left:200.000000pt;}
.x31{left:212.390533pt;}
.x3d{left:215.152800pt;}
.x3b{left:224.165467pt;}
.x5a{left:227.997733pt;}
.x3c{left:284.293453pt;}
.x4{left:290.571733pt;}
.x67{left:536.194000pt;}
.x5f{left:590.209067pt;}
.x66{left:613.600267pt;}
.x53{left:618.160000pt;}
.x4e{left:683.444133pt;}
.x9{left:760.469067pt;}
.x33{left:770.386667pt;}
.x6{left:793.926133pt;}
.x55{left:888.227333pt;}
.x1{left:1005.633333pt;}
.x64{left:1049.560800pt;}
.x10{left:1076.461600pt;}
.x68{left:1079.235467pt;}
.x69{left:1091.086267pt;}
.x2f{left:1099.389867pt;}
.xd{left:1111.126400pt;}
.x7{left:1141.826133pt;}
.x11{left:1179.553467pt;}
.x13{left:1184.965067pt;}
.x56{left:1198.926533pt;}
.x17{left:1200.778667pt;}
.x5{left:1203.892800pt;}
.x57{left:1249.317600pt;}
.x12{left:1251.141053pt;}
.x16{left:1259.653467pt;}
.x18{left:1262.048000pt;}
.x20{left:1275.313867pt;}
.x19{left:1290.613333pt;}
.x28{left:1305.932933pt;}
.x23{left:1327.372533pt;}
.x60{left:1368.136000pt;}
.x21{left:1377.004560pt;}
.x1f{left:1382.820000pt;}
.x4c{left:1416.038667pt;}
.x5b{left:1542.004000pt;}
.x61{left:1556.509333pt;}
.x36{left:1569.348000pt;}
.x62{left:1582.536000pt;}
.x5c{left:1616.636000pt;}
.x5e{left:1622.438667pt;}
.x48{left:1651.729333pt;}
.x25{left:1682.528000pt;}
.x1e{left:1686.196000pt;}
.x5d{left:1693.402640pt;}
.x46{left:1696.160000pt;}
.x47{left:1720.870653pt;}
.x2b{left:1748.252000pt;}
.x45{left:1759.596000pt;}
.x49{left:1763.057333pt;}
.x39{left:1790.394667pt;}
.x3f{left:1795.992000pt;}
.x38{left:1859.535987pt;}
.x3e{left:1865.133320pt;}
.x4b{left:1867.850667pt;}
.x42{left:1874.390667pt;}
.x2d{left:1877.397333pt;}
.x40{left:1907.320000pt;}
.x4a{left:1925.121333pt;}
.x50{left:1927.034667pt;}
.x1a{left:1929.169333pt;}
.x34{left:1930.386667pt;}
.x2e{left:1941.397333pt;}
.x43{left:1965.200000pt;}
.x27{left:1982.561333pt;}
.xb{left:2071.388000pt;}
.x1b{left:2085.682933pt;}
.x51{left:2140.144000pt;}
.x35{left:2146.945333pt;}
.x52{left:2151.990667pt;}
.x1c{left:2214.851200pt;}
.x1d{left:2222.321867pt;}
.x22{left:2489.538667pt;}
.x44{left:2503.445053pt;}
}




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