
    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_4b0a5beb1c66704d766e6ad9.woff')format("woff");}.ff1{font-family:ff1;line-height:1.000000;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_7f80395b194585db8bf2fd52.woff')format("woff");}.ff2{font-family:ff2;line-height:1.400000;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_204033b22a85c34289dfddd1.woff')format("woff");}.ff3{font-family:ff3;line-height:1.400000;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_7cf5227126941ca498549c80.woff')format("woff");}.ff4{font-family:ff4;line-height:1.400000;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_5399ac5233a18e771ef7b5eb.woff')format("woff");}.ff5{font-family:ff5;line-height:1.400000;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_5c1b52572b381e5a5d253494.woff')format("woff");}.ff6{font-family:ff6;line-height:1.400000;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_d29c92908f3eb088f959ab78.woff')format("woff");}.ff7{font-family:ff7;line-height:1.400000;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_c8b8f66b660c9fe8c3357fcb.woff')format("woff");}.ff8{font-family:ff8;line-height:1.400000;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_4054563081c2e0c8d305fed2.woff')format("woff");}.ff9{font-family:ff9;line-height:1.000000;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_70927391e04f233753a195c6.woff')format("woff");}.ffa{font-family:ffa;line-height:1.400000;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_022fb822d2b02ccd73a23fc6.woff')format("woff");}.ffb{font-family:ffb;line-height:1.000000;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_fb7eb3dc43c82c17feefabc4.woff')format("woff");}.ffc{font-family:ffc;line-height:1.400000;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_07e191c256c5027854745559.woff')format("woff");}.ffd{font-family:ffd;line-height:1.400000;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_5f884915b2285401e801eadf.woff')format("woff");}.ffe{font-family:ffe;line-height:1.400000;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_b6bc3e29c6afc18f6d33a854.woff')format("woff");}.fff{font-family:fff;line-height:1.400000;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_7f80395b194585db8bf2fd52.woff')format("woff");}.ff10{font-family:ff10;line-height:1.400000;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_0c489eed3ebfc15aa89f8f02.woff')format("woff");}.ff11{font-family:ff11;line-height:1.000000;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_7e19eac63993a714a8dbb669.woff')format("woff");}.ff12{font-family:ff12;line-height:1.400000;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_2db1368b68d50e48651fd73e.woff')format("woff");}.ff13{font-family:ff13;line-height:1.000000;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_c9508374497643839cef52ac.woff')format("woff");}.ff14{font-family:ff14;line-height:1.400000;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_d08419d30250c3f9f206c84c.woff')format("woff");}.ff15{font-family:ff15;line-height:1.400000;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_6c0b179371ba04ed8c4b17eb.woff')format("woff");}.ff16{font-family:ff16;line-height:1.400000;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_a7a2eff2ef371103aa94d90c.woff')format("woff");}.ff17{font-family:ff17;line-height:1.400000;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;}
.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);}
.m1{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);}
.v2{vertical-align:-21.978000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:22.668000px;}
.v4{vertical-align:42.000000px;}
.v3{vertical-align:84.000000px;}
.ls5{letter-spacing:-3.455052px;}
.ls6{letter-spacing:-3.300000px;}
.ls8{letter-spacing:-1.650000px;}
.lsa{letter-spacing:-1.200000px;}
.lsd{letter-spacing:-0.660000px;}
.ls10{letter-spacing:-0.462000px;}
.lse{letter-spacing:-0.396000px;}
.lsb{letter-spacing:-0.330000px;}
.lsc{letter-spacing:-0.264000px;}
.ls3{letter-spacing:0.000000px;}
.ls13{letter-spacing:0.264000px;}
.ls12{letter-spacing:0.396000px;}
.ls0{letter-spacing:0.428985px;}
.lsf{letter-spacing:0.528000px;}
.ls2{letter-spacing:1.200000px;}
.ls1{letter-spacing:3.600000px;}
.ls4{letter-spacing:9.590400px;}
.ls11{letter-spacing:15.900000px;}
.ls7{letter-spacing:72.336000px;}
.ls9{letter-spacing:302.400000px;}
.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;}
}
.wsa7{word-spacing:-25.800000px;}
.ws8a{word-spacing:-18.480000px;}
.ws16{word-spacing:-18.216000px;}
.ws1{word-spacing:-16.740000px;}
.ws9d{word-spacing:-16.560000px;}
.ws9{word-spacing:-15.114000px;}
.ws0{word-spacing:-15.066000px;}
.ws22{word-spacing:-14.220000px;}
.ws7{word-spacing:-14.100000px;}
.wsa{word-spacing:-10.735362px;}
.ws8{word-spacing:-9.686400px;}
.ws3c{word-spacing:-6.270000px;}
.ws3d{word-spacing:-6.204000px;}
.ws32{word-spacing:-5.610000px;}
.ws14{word-spacing:-4.290000px;}
.ws84{word-spacing:-3.960000px;}
.ws88{word-spacing:-3.894000px;}
.ws4{word-spacing:-3.834000px;}
.ws87{word-spacing:-3.828000px;}
.wse{word-spacing:-3.762000px;}
.ws91{word-spacing:-3.498000px;}
.ws3b{word-spacing:-3.432000px;}
.ws47{word-spacing:-3.366000px;}
.ws5a{word-spacing:-3.300000px;}
.ws5b{word-spacing:-3.234000px;}
.ws8f{word-spacing:-3.102000px;}
.ws82{word-spacing:-3.036000px;}
.ws92{word-spacing:-2.970000px;}
.ws77{word-spacing:-2.772000px;}
.ws8b{word-spacing:-2.574000px;}
.ws4c{word-spacing:-2.508000px;}
.ws94{word-spacing:-2.442000px;}
.ws99{word-spacing:-2.376000px;}
.ws35{word-spacing:-2.112000px;}
.ws8c{word-spacing:-2.046000px;}
.ws71{word-spacing:-1.980000px;}
.ws9e{word-spacing:-1.914000px;}
.wsad{word-spacing:-1.740000px;}
.ws3a{word-spacing:-1.650000px;}
.ws9c{word-spacing:-1.452000px;}
.ws58{word-spacing:-1.386000px;}
.ws65{word-spacing:-1.320000px;}
.ws3f{word-spacing:-1.254000px;}
.ws20{word-spacing:-1.188000px;}
.ws40{word-spacing:-1.122000px;}
.ws90{word-spacing:-1.056000px;}
.wsd{word-spacing:-0.990000px;}
.ws1d{word-spacing:-0.924000px;}
.ws7c{word-spacing:-0.858000px;}
.ws5e{word-spacing:-0.792000px;}
.ws48{word-spacing:-0.726000px;}
.ws5{word-spacing:-0.600000px;}
.ws34{word-spacing:-0.528000px;}
.ws64{word-spacing:-0.462000px;}
.ws89{word-spacing:-0.396000px;}
.ws1e{word-spacing:-0.330000px;}
.ws8d{word-spacing:-0.264000px;}
.ws4e{word-spacing:-0.198000px;}
.ws12{word-spacing:-0.132000px;}
.ws33{word-spacing:-0.066000px;}
.ws2{word-spacing:0.000000px;}
.ws41{word-spacing:0.066000px;}
.ws56{word-spacing:0.132000px;}
.ws96{word-spacing:0.198000px;}
.ws3e{word-spacing:0.264000px;}
.ws36{word-spacing:0.330000px;}
.ws18{word-spacing:0.396000px;}
.wsaa{word-spacing:0.420000px;}
.ws83{word-spacing:0.462000px;}
.wsab{word-spacing:0.600000px;}
.ws4d{word-spacing:0.660000px;}
.ws7d{word-spacing:0.792000px;}
.ws50{word-spacing:0.858000px;}
.ws5f{word-spacing:1.056000px;}
.ws15{word-spacing:1.122000px;}
.wsa1{word-spacing:1.140000px;}
.ws70{word-spacing:1.254000px;}
.ws9a{word-spacing:1.386000px;}
.ws61{word-spacing:1.452000px;}
.ws6e{word-spacing:1.584000px;}
.ws19{word-spacing:1.650000px;}
.ws38{word-spacing:1.716000px;}
.ws60{word-spacing:1.848000px;}
.ws62{word-spacing:1.980000px;}
.ws1f{word-spacing:2.112000px;}
.wsf{word-spacing:2.178000px;}
.ws67{word-spacing:2.574000px;}
.wsa0{word-spacing:2.700000px;}
.ws8e{word-spacing:2.706000px;}
.ws93{word-spacing:2.772000px;}
.ws9b{word-spacing:3.036000px;}
.ws63{word-spacing:3.102000px;}
.wsa4{word-spacing:3.180000px;}
.ws4b{word-spacing:3.366000px;}
.ws37{word-spacing:3.432000px;}
.wsb{word-spacing:3.455052px;}
.ws5c{word-spacing:3.696000px;}
.ws5d{word-spacing:3.762000px;}
.ws11{word-spacing:3.894000px;}
.ws10{word-spacing:3.960000px;}
.wsac{word-spacing:4.140000px;}
.ws54{word-spacing:4.224000px;}
.ws39{word-spacing:4.290000px;}
.ws86{word-spacing:4.818000px;}
.ws45{word-spacing:4.950000px;}
.ws46{word-spacing:5.016000px;}
.ws7b{word-spacing:5.082000px;}
.ws44{word-spacing:5.148000px;}
.ws6f{word-spacing:5.214000px;}
.ws85{word-spacing:5.280000px;}
.ws53{word-spacing:5.478000px;}
.ws1a{word-spacing:5.544000px;}
.ws1b{word-spacing:5.610000px;}
.ws57{word-spacing:5.676000px;}
.ws95{word-spacing:5.742000px;}
.ws79{word-spacing:5.808000px;}
.ws1c{word-spacing:5.874000px;}
.ws7a{word-spacing:6.072000px;}
.ws6c{word-spacing:6.204000px;}
.ws6b{word-spacing:6.270000px;}
.ws80{word-spacing:6.402000px;}
.wsa9{word-spacing:6.420000px;}
.wsa8{word-spacing:6.480000px;}
.ws31{word-spacing:6.666000px;}
.ws52{word-spacing:6.732000px;}
.ws51{word-spacing:6.798000px;}
.ws4f{word-spacing:6.864000px;}
.ws81{word-spacing:6.930000px;}
.ws59{word-spacing:6.996000px;}
.wsa2{word-spacing:7.020000px;}
.wsa3{word-spacing:7.080000px;}
.ws7f{word-spacing:7.194000px;}
.ws73{word-spacing:7.326000px;}
.ws72{word-spacing:7.392000px;}
.ws3{word-spacing:7.506000px;}
.ws6{word-spacing:7.776000px;}
.ws55{word-spacing:7.788000px;}
.ws7e{word-spacing:7.986000px;}
.ws98{word-spacing:8.052000px;}
.wsa5{word-spacing:8.340000px;}
.ws30{word-spacing:8.448000px;}
.wsa6{word-spacing:8.460000px;}
.ws43{word-spacing:8.514000px;}
.ws6d{word-spacing:8.778000px;}
.ws76{word-spacing:9.240000px;}
.ws13{word-spacing:9.306000px;}
.ws75{word-spacing:9.372000px;}
.ws6a{word-spacing:9.702000px;}
.ws69{word-spacing:10.164000px;}
.ws68{word-spacing:10.230000px;}
.ws78{word-spacing:10.626000px;}
.ws66{word-spacing:11.418000px;}
.ws97{word-spacing:12.078000px;}
.ws17{word-spacing:12.276000px;}
.ws74{word-spacing:13.266000px;}
.ws4a{word-spacing:13.332000px;}
.ws49{word-spacing:13.464000px;}
.ws42{word-spacing:14.982000px;}
.ws9f{word-spacing:15.048000px;}
.wsc{word-spacing:33.000000px;}
.ws2a{word-spacing:228.840000px;}
.ws28{word-spacing:239.820000px;}
.ws26{word-spacing:241.440000px;}
.ws24{word-spacing:244.200000px;}
.ws2b{word-spacing:290.340000px;}
.ws29{word-spacing:290.760000px;}
.ws2f{word-spacing:306.666000px;}
.ws21{word-spacing:324.480000px;}
.ws25{word-spacing:327.960000px;}
.ws23{word-spacing:329.040000px;}
.ws2c{word-spacing:329.706000px;}
.ws2e{word-spacing:356.940000px;}
.ws27{word-spacing:396.486000px;}
.ws2d{word-spacing:454.680000px;}
._12{margin-left:-65.142000px;}
._23{margin-left:-27.000000px;}
._b{margin-left:-9.590400px;}
._5{margin-left:-8.098552px;}
._3{margin-left:-6.319553px;}
._4{margin-left:-4.605210px;}
._2{margin-left:-2.844000px;}
._0{margin-left:-1.501448px;}
._1{width:1.681621px;}
._8{width:2.903226px;}
._d{width:4.041221px;}
._9{width:5.065200px;}
._a{width:6.696495px;}
._c{width:8.411647px;}
._f{width:9.906705px;}
._e{width:11.312400px;}
._10{width:12.595447px;}
._25{width:13.598047px;}
._7{width:14.742000px;}
._26{width:15.875510px;}
._27{width:17.143448px;}
._24{width:19.423695px;}
._11{width:33.000000px;}
._6{width:67.378200px;}
._14{width:98.725447px;}
._1f{width:141.204000px;}
._13{width:149.821448px;}
._17{width:159.384000px;}
._1d{width:196.464000px;}
._18{width:208.981448px;}
._1e{width:213.724343px;}
._1a{width:215.726895px;}
._15{width:224.185448px;}
._16{width:252.182895px;}
._1b{width:265.562895px;}
._20{width:301.464000px;}
._19{width:344.028105px;}
._1c{width:351.840000px;}
._22{width:438.721448px;}
._21{width:512.696895px;}
.fc3{color:rgb(203,196,150);}
.fc2{color:rgb(101,98,99);}
.fc1{color:rgb(181,170,105);}
.fc0{color:rgb(35,31,32);}
.fs1{font-size:36.000000px;}
.fsa{font-size:38.478000px;}
.fs3{font-size:54.000000px;}
.fs6{font-size:60.000000px;}
.fs2{font-size:66.000000px;}
.fs9{font-size:84.000000px;}
.fs0{font-size:85.797000px;}
.fs5{font-size:90.000000px;}
.fs7{font-size:96.000000px;}
.fs4{font-size:120.000000px;}
.fs8{font-size:172.752600px;}
.y0{bottom:0.000000px;}
.y4{bottom:1.767300px;}
.y28{bottom:17.983350px;}
.y27{bottom:26.200200px;}
.y29{bottom:30.614100px;}
.y2{bottom:42.949800px;}
.y26{bottom:47.200200px;}
.ya{bottom:53.999400px;}
.y2a{bottom:55.288350px;}
.y25{bottom:68.200200px;}
.y9{bottom:70.199400px;}
.y8{bottom:86.399400px;}
.y7{bottom:106.851900px;}
.y52{bottom:170.078700px;}
.y135{bottom:173.366400px;}
.y101{bottom:173.382900px;}
.y113{bottom:173.399400px;}
.y167{bottom:173.415900px;}
.ybd{bottom:173.834400px;}
.y1c0{bottom:178.107900px;}
.y155{bottom:179.466900px;}
.y18f{bottom:179.511900px;}
.y1ae{bottom:180.948900px;}
.ydf{bottom:182.534400px;}
.y17c{bottom:184.202250px;}
.y1de{bottom:187.008150px;}
.y134{bottom:195.872400px;}
.y100{bottom:195.888900px;}
.y112{bottom:195.905400px;}
.y166{bottom:195.921900px;}
.ybc{bottom:196.340400px;}
.y1bf{bottom:199.107900px;}
.y154{bottom:201.972900px;}
.y18e{bottom:202.017900px;}
.y1ad{bottom:203.454900px;}
.yde{bottom:205.040400px;}
.y11d{bottom:205.107900px;}
.y17b{bottom:206.708250px;}
.y133{bottom:218.378400px;}
.yff{bottom:218.394900px;}
.y111{bottom:218.411400px;}
.y165{bottom:218.427900px;}
.y1dd{bottom:218.508150px;}
.ybb{bottom:218.846400px;}
.y1be{bottom:220.107900px;}
.y153{bottom:224.478900px;}
.y18d{bottom:224.523900px;}
.y1ac{bottom:225.960900px;}
.y11c{bottom:226.107900px;}
.ydd{bottom:227.546400px;}
.y17a{bottom:229.214250px;}
.y96{bottom:230.111400px;}
.y51{bottom:234.029400px;}
.y132{bottom:240.884400px;}
.yfe{bottom:240.900900px;}
.y110{bottom:240.917400px;}
.y164{bottom:240.933900px;}
.y1bd{bottom:241.107900px;}
.yba{bottom:241.352400px;}
.y152{bottom:246.984900px;}
.y18c{bottom:247.029900px;}
.y11b{bottom:247.107900px;}
.y1ab{bottom:248.466900px;}
.y1dc{bottom:250.008150px;}
.ydc{bottom:250.052400px;}
.y179{bottom:251.720250px;}
.y95{bottom:252.617400px;}
.y50{bottom:256.362900px;}
.y131{bottom:263.390400px;}
.yfd{bottom:263.406900px;}
.y10f{bottom:263.423400px;}
.y163{bottom:263.439900px;}
.yb9{bottom:263.858400px;}
.y11a{bottom:268.107900px;}
.y151{bottom:269.490900px;}
.y18b{bottom:269.535900px;}
.y1aa{bottom:270.972900px;}
.ydb{bottom:272.558400px;}
.y1bc{bottom:272.607900px;}
.y178{bottom:274.226250px;}
.y94{bottom:275.123400px;}
.y4f{bottom:278.868900px;}
.y1db{bottom:281.508150px;}
.y130{bottom:285.896400px;}
.yfc{bottom:285.912900px;}
.y10e{bottom:285.929400px;}
.y162{bottom:285.945900px;}
.yb8{bottom:286.364400px;}
.y119{bottom:289.107900px;}
.y150{bottom:291.996900px;}
.y18a{bottom:292.041900px;}
.y1a9{bottom:293.478900px;}
.y1bb{bottom:293.607900px;}
.yda{bottom:295.064400px;}
.y177{bottom:296.732250px;}
.y93{bottom:297.629400px;}
.y4e{bottom:301.374900px;}
.y12f{bottom:308.402400px;}
.yfb{bottom:308.418900px;}
.y127{bottom:308.435400px;}
.y161{bottom:308.451900px;}
.yb7{bottom:308.870400px;}
.y118{bottom:310.107900px;}
.y1da{bottom:313.008150px;}
.y189{bottom:314.547900px;}
.y1ba{bottom:314.607900px;}
.y1a8{bottom:315.984900px;}
.y72{bottom:315.996900px;}
.y176{bottom:319.238250px;}
.y92{bottom:320.135400px;}
.y4d{bottom:323.880900px;}
.y12e{bottom:330.908400px;}
.yfa{bottom:330.924900px;}
.y126{bottom:330.941400px;}
.y160{bottom:330.957900px;}
.yb6{bottom:331.376400px;}
.y14f{bottom:336.992400px;}
.y188{bottom:337.053900px;}
.y71{bottom:338.502900px;}
.yd9{bottom:340.059900px;}
.y175{bottom:341.744250px;}
.y1d9{bottom:344.508150px;}
.y1b9{bottom:346.107900px;}
.y4c{bottom:346.386900px;}
.y12d{bottom:353.414400px;}
.yf9{bottom:353.430900px;}
.y117{bottom:353.447400px;}
.y15f{bottom:353.463900px;}
.yb5{bottom:353.882400px;}
.y14e{bottom:359.498400px;}
.y187{bottom:359.559900px;}
.y1a7{bottom:360.980400px;}
.y70{bottom:361.008900px;}
.yd8{bottom:362.565900px;}
.y174{bottom:364.250250px;}
.y91{bottom:365.130900px;}
.y1b8{bottom:367.107900px;}
.y4b{bottom:368.892900px;}
.y12c{bottom:375.920400px;}
.yf8{bottom:375.936900px;}
.y116{bottom:375.953400px;}
.y15e{bottom:375.969900px;}
.y1d8{bottom:376.008150px;}
.yb4{bottom:376.388400px;}
.y22{bottom:379.412400px;}
.y14d{bottom:382.004400px;}
.y186{bottom:382.065900px;}
.y1a6{bottom:383.486400px;}
.y6f{bottom:383.514900px;}
.yd7{bottom:385.071900px;}
.y173{bottom:386.756250px;}
.y90{bottom:387.636900px;}
.y4a{bottom:391.398900px;}
.y12b{bottom:398.426400px;}
.yf7{bottom:398.442900px;}
.y115{bottom:398.459400px;}
.y15d{bottom:398.475900px;}
.y1b7{bottom:398.607900px;}
.y21{bottom:400.418400px;}
.y14c{bottom:404.510400px;}
.y185{bottom:404.571900px;}
.y1a5{bottom:405.992400px;}
.y6e{bottom:406.020900px;}
.y1d7{bottom:407.508150px;}
.y1f3{bottom:407.510400px;}
.yd6{bottom:407.577900px;}
.y8f{bottom:410.142900px;}
.y20{bottom:416.915400px;}
.y1b6{bottom:419.607900px;}
.y12a{bottom:420.932400px;}
.yf6{bottom:420.948900px;}
.y114{bottom:420.965400px;}
.yb3{bottom:421.383900px;}
.y14b{bottom:427.016400px;}
.y184{bottom:427.077900px;}
.y1a4{bottom:428.498400px;}
.y6d{bottom:428.526900px;}
.yd5{bottom:430.083900px;}
.y172{bottom:431.751750px;}
.y8e{bottom:432.648900px;}
.y1f{bottom:433.412400px;}
.y49{bottom:436.394400px;}
.y1d6{bottom:439.008150px;}
.y1f2{bottom:439.010400px;}
.y129{bottom:443.438400px;}
.yf5{bottom:443.454900px;}
.y125{bottom:443.471400px;}
.yb2{bottom:443.889900px;}
.y14a{bottom:449.522400px;}
.y183{bottom:449.583900px;}
.y1e{bottom:449.909400px;}
.y1a3{bottom:451.004400px;}
.y1b5{bottom:451.107900px;}
.yd4{bottom:452.589900px;}
.y171{bottom:454.257750px;}
.y8d{bottom:455.154900px;}
.y48{bottom:458.900400px;}
.y128{bottom:465.944400px;}
.y10d{bottom:465.960900px;}
.y15c{bottom:465.977400px;}
.yb1{bottom:466.395900px;}
.y1d{bottom:466.406400px;}
.y1d5{bottom:470.508150px;}
.y1f1{bottom:470.510400px;}
.y149{bottom:472.028400px;}
.y182{bottom:472.089900px;}
.y1b4{bottom:472.107900px;}
.y1a2{bottom:473.510400px;}
.y6c{bottom:473.522400px;}
.yd3{bottom:475.095900px;}
.y170{bottom:476.763750px;}
.y8c{bottom:477.660900px;}
.y47{bottom:481.406400px;}
.y1c{bottom:482.903400px;}
.yf4{bottom:488.450400px;}
.y10c{bottom:488.466900px;}
.y15b{bottom:488.483400px;}
.yb0{bottom:488.901900px;}
.y148{bottom:494.534400px;}
.y181{bottom:494.595900px;}
.y1a1{bottom:496.016400px;}
.yd2{bottom:497.601900px;}
.y16f{bottom:499.269750px;}
.y8b{bottom:500.166900px;}
.y1d4{bottom:502.008150px;}
.y1f0{bottom:502.010400px;}
.y1b3{bottom:503.607900px;}
.y46{bottom:503.912400px;}
.yf3{bottom:510.956400px;}
.y10b{bottom:510.972900px;}
.y15a{bottom:510.989400px;}
.yaf{bottom:511.407900px;}
.y1b{bottom:516.653400px;}
.y147{bottom:517.040400px;}
.y180{bottom:517.101900px;}
.y6b{bottom:518.517900px;}
.y1a0{bottom:518.522400px;}
.yd1{bottom:520.107900px;}
.y16e{bottom:521.775750px;}
.y8a{bottom:522.672900px;}
.y45{bottom:526.418400px;}
.yf2{bottom:533.462400px;}
.y10a{bottom:533.478900px;}
.y159{bottom:533.495400px;}
.y1d3{bottom:533.508150px;}
.y1ef{bottom:533.510400px;}
.yae{bottom:533.913900px;}
.y1b2{bottom:535.107900px;}
.y1a{bottom:537.659400px;}
.y146{bottom:539.546400px;}
.y17f{bottom:539.607900px;}
.y6a{bottom:541.023900px;}
.y19f{bottom:541.028400px;}
.y16d{bottom:544.281750px;}
.y89{bottom:545.178900px;}
.y44{bottom:548.924400px;}
.y1ee{bottom:554.510400px;}
.y19{bottom:554.912400px;}
.yf1{bottom:555.968400px;}
.y109{bottom:555.984900px;}
.y158{bottom:556.001400px;}
.yad{bottom:556.419900px;}
.y145{bottom:562.052400px;}
.y69{bottom:563.529900px;}
.y1d2{bottom:565.008150px;}
.yd0{bottom:565.107900px;}
.y1b1{bottom:566.607900px;}
.y16c{bottom:566.787750px;}
.y88{bottom:567.684900px;}
.y43{bottom:571.430400px;}
.y18{bottom:572.165400px;}
.yf0{bottom:578.474400px;}
.y124{bottom:578.490900px;}
.y157{bottom:578.507400px;}
.yac{bottom:578.925900px;}
.y144{bottom:584.558400px;}
.y17e{bottom:584.607900px;}
.y1ed{bottom:586.010400px;}
.y19e{bottom:586.023900px;}
.y68{bottom:586.035900px;}
.ycf{bottom:586.107900px;}
.y1b0{bottom:587.607900px;}
.y16b{bottom:589.293750px;}
.y17{bottom:589.418400px;}
.y87{bottom:590.190900px;}
.y42{bottom:593.936400px;}
.y1d1{bottom:596.508150px;}
.yef{bottom:600.980400px;}
.y123{bottom:600.996900px;}
.yab{bottom:601.431900px;}
.y17d{bottom:605.607900px;}
.y16{bottom:606.671400px;}
.y143{bottom:607.064400px;}
.yce{bottom:607.107900px;}
.y19d{bottom:608.529900px;}
.y67{bottom:608.541900px;}
.y16a{bottom:611.799750px;}
.y86{bottom:612.696900px;}
.y41{bottom:616.442400px;}
.y1ec{bottom:617.510400px;}
.yee{bottom:623.486400px;}
.y122{bottom:623.502900px;}
.y15{bottom:623.924400px;}
.yaa{bottom:623.937900px;}
.ycd{bottom:628.107900px;}
.y142{bottom:629.570400px;}
.y19c{bottom:631.035900px;}
.y66{bottom:631.047900px;}
.y1af{bottom:631.107900px;}
.y85{bottom:635.202900px;}
.y1d0{bottom:640.008150px;}
.y14{bottom:641.177400px;}
.yed{bottom:645.992400px;}
.y121{bottom:646.008900px;}
.ya9{bottom:646.443900px;}
.y1eb{bottom:649.010400px;}
.ycc{bottom:649.107900px;}
.y141{bottom:652.076400px;}
.y19b{bottom:653.541900px;}
.y65{bottom:653.553900px;}
.y84{bottom:657.708900px;}
.y40{bottom:661.437900px;}
.yec{bottom:668.498400px;}
.y120{bottom:668.514900px;}
.ya8{bottom:668.949900px;}
.y169{bottom:669.555750px;}
.ycb{bottom:670.107900px;}
.y140{bottom:674.582400px;}
.y19a{bottom:676.047900px;}
.y64{bottom:676.059900px;}
.y1ea{bottom:680.510400px;}
.y3f{bottom:683.943900px;}
.y168{bottom:689.055750px;}
.yeb{bottom:691.004400px;}
.y11f{bottom:691.020900px;}
.ya7{bottom:691.455900px;}
.y13{bottom:695.430750px;}
.y13f{bottom:697.088400px;}
.y199{bottom:698.553900px;}
.y63{bottom:698.565900px;}
.y3e{bottom:706.449900px;}
.y83{bottom:711.570600px;}
.y1e9{bottom:712.010400px;}
.y108{bottom:713.510400px;}
.yca{bottom:713.526900px;}
.ya6{bottom:713.961900px;}
.y12{bottom:716.430750px;}
.y13e{bottom:719.594400px;}
.y198{bottom:721.059900px;}
.y62{bottom:721.071900px;}
.y82{bottom:722.070600px;}
.y3d{bottom:728.955900px;}
.y1cf{bottom:733.010400px;}
.yea{bottom:735.999900px;}
.y107{bottom:736.016400px;}
.yc9{bottom:736.032900px;}
.ya5{bottom:736.467900px;}
.y11{bottom:737.430750px;}
.y24{bottom:741.738900px;}
.y1e8{bottom:743.510400px;}
.y197{bottom:743.565900px;}
.y61{bottom:743.577900px;}
.y3c{bottom:751.461900px;}
.y10{bottom:758.430750px;}
.ye9{bottom:758.505900px;}
.y106{bottom:758.522400px;}
.yc8{bottom:758.538900px;}
.y23{bottom:761.232900px;}
.y81{bottom:763.605600px;}
.y1ce{bottom:764.510400px;}
.y13d{bottom:764.589900px;}
.y196{bottom:766.071900px;}
.y60{bottom:766.083900px;}
.y3b{bottom:773.967900px;}
.y1e7{bottom:775.010400px;}
.ye8{bottom:781.011900px;}
.y105{bottom:781.028400px;}
.yc7{bottom:781.044900px;}
.ya4{bottom:781.463400px;}
.y13c{bottom:787.095900px;}
.y195{bottom:788.577900px;}
.y5f{bottom:788.589900px;}
.y80{bottom:794.640600px;}
.y1cd{bottom:796.010400px;}
.y3a{bottom:796.473900px;}
.ye7{bottom:803.517900px;}
.y104{bottom:803.534400px;}
.yc6{bottom:803.550900px;}
.ya3{bottom:803.969400px;}
.y7f{bottom:805.140600px;}
.y1e6{bottom:806.510400px;}
.y13b{bottom:809.601900px;}
.y194{bottom:811.083900px;}
.y5e{bottom:811.095900px;}
.y39{bottom:818.979900px;}
.ye6{bottom:826.023900px;}
.y103{bottom:826.040400px;}
.yc5{bottom:826.056900px;}
.ya2{bottom:826.475400px;}
.y1cc{bottom:827.510400px;}
.y13a{bottom:832.107900px;}
.y193{bottom:833.589900px;}
.y5d{bottom:833.601900px;}
.y1e5{bottom:838.010400px;}
.y38{bottom:841.485900px;}
.y7e{bottom:846.675600px;}
.ye5{bottom:848.529900px;}
.y102{bottom:848.546400px;}
.ya1{bottom:848.981400px;}
.y192{bottom:856.095900px;}
.y5c{bottom:856.107900px;}
.y1cb{bottom:859.010400px;}
.yf{bottom:865.170600px;}
.y7d{bottom:867.675600px;}
.y1e4{bottom:869.510400px;}
.ye4{bottom:871.035900px;}
.yc4{bottom:871.052400px;}
.ya0{bottom:871.487400px;}
.y139{bottom:877.107900px;}
.y191{bottom:878.601900px;}
.y37{bottom:886.481400px;}
.y1ca{bottom:890.510400px;}
.ye{bottom:892.170600px;}
.ye3{bottom:893.541900px;}
.yc3{bottom:893.558400px;}
.y9f{bottom:893.993400px;}
.y138{bottom:898.107900px;}
.y7c{bottom:898.710600px;}
.y5b{bottom:901.107900px;}
.y36{bottom:908.987400px;}
.y7b{bottom:909.210600px;}
.y1c9{bottom:911.510400px;}
.ye2{bottom:916.047900px;}
.yc2{bottom:916.064400px;}
.y9e{bottom:916.499400px;}
.y137{bottom:919.107900px;}
.y1e3{bottom:922.010400px;}
.y35{bottom:931.493400px;}
.yd{bottom:931.926450px;}
.y1c8{bottom:932.510400px;}
.ye1{bottom:938.553900px;}
.yc1{bottom:938.570400px;}
.y9d{bottom:939.005400px;}
.y136{bottom:940.107900px;}
.y190{bottom:946.107900px;}
.y7a{bottom:950.745600px;}
.y1e2{bottom:953.510400px;}
.y34{bottom:953.999400px;}
.ye0{bottom:961.059900px;}
.yc0{bottom:961.076400px;}
.y79{bottom:961.245600px;}
.y9c{bottom:961.511400px;}
.y1c7{bottom:964.010400px;}
.yc{bottom:966.426450px;}
.y33{bottom:976.505400px;}
.y5a{bottom:983.565900px;}
.ybf{bottom:983.582400px;}
.y9b{bottom:984.017400px;}
.y1c6{bottom:985.010400px;}
.y32{bottom:999.011400px;}
.yb{bottom:1000.926450px;}
.y78{bottom:1002.780600px;}
.y59{bottom:1006.071900px;}
.ybe{bottom:1006.088400px;}
.y9a{bottom:1006.523400px;}
.y1c5{bottom:1016.510400px;}
.y31{bottom:1021.517400px;}
.y77{bottom:1023.780600px;}
.y58{bottom:1028.577900px;}
.y11e{bottom:1028.594400px;}
.y99{bottom:1029.029400px;}
.y1c4{bottom:1037.510400px;}
.y30{bottom:1044.023400px;}
.y1e1{bottom:1048.010400px;}
.y57{bottom:1051.083900px;}
.y156{bottom:1051.100400px;}
.y98{bottom:1051.535400px;}
.y76{bottom:1054.815600px;}
.y2f{bottom:1066.529400px;}
.y1c3{bottom:1069.010400px;}
.y56{bottom:1073.589900px;}
.y1e0{bottom:1079.510400px;}
.y75{bottom:1085.850600px;}
.y2e{bottom:1089.035400px;}
.y55{bottom:1096.095900px;}
.y97{bottom:1096.535400px;}
.y6{bottom:1099.267350px;}
.y1c2{bottom:1100.510400px;}
.y74{bottom:1106.850600px;}
.y1df{bottom:1111.010400px;}
.y54{bottom:1118.601900px;}
.y1c1{bottom:1121.510400px;}
.y5{bottom:1131.232500px;}
.y2d{bottom:1134.035400px;}
.y53{bottom:1141.107900px;}
.y73{bottom:1142.510400px;}
.y1{bottom:1146.411000px;}
.y3{bottom:1168.769550px;}
.y2b{bottom:1185.328350px;}
.y2c{bottom:1220.509800px;}
.h4{height:37.800000px;}
.h6{height:56.700000px;}
.h2{height:62.424000px;}
.h9{height:63.000000px;}
.h3{height:64.347750px;}
.h8{height:67.500000px;}
.h5{height:69.300000px;}
.hd{height:69.990000px;}
.ha{height:72.000000px;}
.hc{height:90.000000px;}
.hf{height:105.000000px;}
.h7{height:126.000000px;}
.he{height:147.000000px;}
.hb{height:181.390230px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:354.229500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xa{left:21.259800px;}
.xb{left:52.789050px;}
.x1{left:54.000000px;}
.x5{left:57.401550px;}
.x4{left:60.612150px;}
.xe{left:106.299150px;}
.x17{left:115.148550px;}
.x12{left:135.248550px;}
.x1b{left:144.939150px;}
.xf{left:147.747150px;}
.x2{left:155.902500px;}
.x10{left:165.831150px;}
.x11{left:188.746050px;}
.x3{left:209.902500px;}
.x9{left:212.598450px;}
.x6{left:221.456700px;}
.x7{left:223.378050px;}
.x8{left:236.359200px;}
.x13{left:256.313550px;}
.x1c{left:271.896600px;}
.x1d{left:286.806600px;}
.x19{left:292.028550px;}
.x14{left:404.258550px;}
.x18{left:406.238550px;}
.x1a{left:417.758550px;}
.x15{left:556.928550px;}
.x16{left:679.298550px;}
.xc{left:815.527500px;}
.x1e{left:823.804500px;}
.xd{left:824.968350px;}
@media print{
.v2{vertical-align:-19.536000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:20.149333pt;}
.v4{vertical-align:37.333333pt;}
.v3{vertical-align:74.666667pt;}
.ls5{letter-spacing:-3.071157pt;}
.ls6{letter-spacing:-2.933333pt;}
.ls8{letter-spacing:-1.466667pt;}
.lsa{letter-spacing:-1.066667pt;}
.lsd{letter-spacing:-0.586667pt;}
.ls10{letter-spacing:-0.410667pt;}
.lse{letter-spacing:-0.352000pt;}
.lsb{letter-spacing:-0.293333pt;}
.lsc{letter-spacing:-0.234667pt;}
.ls3{letter-spacing:0.000000pt;}
.ls13{letter-spacing:0.234667pt;}
.ls12{letter-spacing:0.352000pt;}
.ls0{letter-spacing:0.381320pt;}
.lsf{letter-spacing:0.469333pt;}
.ls2{letter-spacing:1.066667pt;}
.ls1{letter-spacing:3.200000pt;}
.ls4{letter-spacing:8.524800pt;}
.ls11{letter-spacing:14.133333pt;}
.ls7{letter-spacing:64.298667pt;}
.ls9{letter-spacing:268.800000pt;}
.wsa7{word-spacing:-22.933333pt;}
.ws8a{word-spacing:-16.426667pt;}
.ws16{word-spacing:-16.192000pt;}
.ws1{word-spacing:-14.880000pt;}
.ws9d{word-spacing:-14.720000pt;}
.ws9{word-spacing:-13.434667pt;}
.ws0{word-spacing:-13.392000pt;}
.ws22{word-spacing:-12.640000pt;}
.ws7{word-spacing:-12.533333pt;}
.wsa{word-spacing:-9.542544pt;}
.ws8{word-spacing:-8.610133pt;}
.ws3c{word-spacing:-5.573333pt;}
.ws3d{word-spacing:-5.514667pt;}
.ws32{word-spacing:-4.986667pt;}
.ws14{word-spacing:-3.813333pt;}
.ws84{word-spacing:-3.520000pt;}
.ws88{word-spacing:-3.461333pt;}
.ws4{word-spacing:-3.408000pt;}
.ws87{word-spacing:-3.402667pt;}
.wse{word-spacing:-3.344000pt;}
.ws91{word-spacing:-3.109333pt;}
.ws3b{word-spacing:-3.050667pt;}
.ws47{word-spacing:-2.992000pt;}
.ws5a{word-spacing:-2.933333pt;}
.ws5b{word-spacing:-2.874667pt;}
.ws8f{word-spacing:-2.757333pt;}
.ws82{word-spacing:-2.698667pt;}
.ws92{word-spacing:-2.640000pt;}
.ws77{word-spacing:-2.464000pt;}
.ws8b{word-spacing:-2.288000pt;}
.ws4c{word-spacing:-2.229333pt;}
.ws94{word-spacing:-2.170667pt;}
.ws99{word-spacing:-2.112000pt;}
.ws35{word-spacing:-1.877333pt;}
.ws8c{word-spacing:-1.818667pt;}
.ws71{word-spacing:-1.760000pt;}
.ws9e{word-spacing:-1.701333pt;}
.wsad{word-spacing:-1.546667pt;}
.ws3a{word-spacing:-1.466667pt;}
.ws9c{word-spacing:-1.290667pt;}
.ws58{word-spacing:-1.232000pt;}
.ws65{word-spacing:-1.173333pt;}
.ws3f{word-spacing:-1.114667pt;}
.ws20{word-spacing:-1.056000pt;}
.ws40{word-spacing:-0.997333pt;}
.ws90{word-spacing:-0.938667pt;}
.wsd{word-spacing:-0.880000pt;}
.ws1d{word-spacing:-0.821333pt;}
.ws7c{word-spacing:-0.762667pt;}
.ws5e{word-spacing:-0.704000pt;}
.ws48{word-spacing:-0.645333pt;}
.ws5{word-spacing:-0.533333pt;}
.ws34{word-spacing:-0.469333pt;}
.ws64{word-spacing:-0.410667pt;}
.ws89{word-spacing:-0.352000pt;}
.ws1e{word-spacing:-0.293333pt;}
.ws8d{word-spacing:-0.234667pt;}
.ws4e{word-spacing:-0.176000pt;}
.ws12{word-spacing:-0.117333pt;}
.ws33{word-spacing:-0.058667pt;}
.ws2{word-spacing:0.000000pt;}
.ws41{word-spacing:0.058667pt;}
.ws56{word-spacing:0.117333pt;}
.ws96{word-spacing:0.176000pt;}
.ws3e{word-spacing:0.234667pt;}
.ws36{word-spacing:0.293333pt;}
.ws18{word-spacing:0.352000pt;}
.wsaa{word-spacing:0.373333pt;}
.ws83{word-spacing:0.410667pt;}
.wsab{word-spacing:0.533333pt;}
.ws4d{word-spacing:0.586667pt;}
.ws7d{word-spacing:0.704000pt;}
.ws50{word-spacing:0.762667pt;}
.ws5f{word-spacing:0.938667pt;}
.ws15{word-spacing:0.997333pt;}
.wsa1{word-spacing:1.013333pt;}
.ws70{word-spacing:1.114667pt;}
.ws9a{word-spacing:1.232000pt;}
.ws61{word-spacing:1.290667pt;}
.ws6e{word-spacing:1.408000pt;}
.ws19{word-spacing:1.466667pt;}
.ws38{word-spacing:1.525333pt;}
.ws60{word-spacing:1.642667pt;}
.ws62{word-spacing:1.760000pt;}
.ws1f{word-spacing:1.877333pt;}
.wsf{word-spacing:1.936000pt;}
.ws67{word-spacing:2.288000pt;}
.wsa0{word-spacing:2.400000pt;}
.ws8e{word-spacing:2.405333pt;}
.ws93{word-spacing:2.464000pt;}
.ws9b{word-spacing:2.698667pt;}
.ws63{word-spacing:2.757333pt;}
.wsa4{word-spacing:2.826667pt;}
.ws4b{word-spacing:2.992000pt;}
.ws37{word-spacing:3.050667pt;}
.wsb{word-spacing:3.071157pt;}
.ws5c{word-spacing:3.285333pt;}
.ws5d{word-spacing:3.344000pt;}
.ws11{word-spacing:3.461333pt;}
.ws10{word-spacing:3.520000pt;}
.wsac{word-spacing:3.680000pt;}
.ws54{word-spacing:3.754667pt;}
.ws39{word-spacing:3.813333pt;}
.ws86{word-spacing:4.282667pt;}
.ws45{word-spacing:4.400000pt;}
.ws46{word-spacing:4.458667pt;}
.ws7b{word-spacing:4.517333pt;}
.ws44{word-spacing:4.576000pt;}
.ws6f{word-spacing:4.634667pt;}
.ws85{word-spacing:4.693333pt;}
.ws53{word-spacing:4.869333pt;}
.ws1a{word-spacing:4.928000pt;}
.ws1b{word-spacing:4.986667pt;}
.ws57{word-spacing:5.045333pt;}
.ws95{word-spacing:5.104000pt;}
.ws79{word-spacing:5.162667pt;}
.ws1c{word-spacing:5.221333pt;}
.ws7a{word-spacing:5.397333pt;}
.ws6c{word-spacing:5.514667pt;}
.ws6b{word-spacing:5.573333pt;}
.ws80{word-spacing:5.690667pt;}
.wsa9{word-spacing:5.706667pt;}
.wsa8{word-spacing:5.760000pt;}
.ws31{word-spacing:5.925333pt;}
.ws52{word-spacing:5.984000pt;}
.ws51{word-spacing:6.042667pt;}
.ws4f{word-spacing:6.101333pt;}
.ws81{word-spacing:6.160000pt;}
.ws59{word-spacing:6.218667pt;}
.wsa2{word-spacing:6.240000pt;}
.wsa3{word-spacing:6.293333pt;}
.ws7f{word-spacing:6.394667pt;}
.ws73{word-spacing:6.512000pt;}
.ws72{word-spacing:6.570667pt;}
.ws3{word-spacing:6.672000pt;}
.ws6{word-spacing:6.912000pt;}
.ws55{word-spacing:6.922667pt;}
.ws7e{word-spacing:7.098667pt;}
.ws98{word-spacing:7.157333pt;}
.wsa5{word-spacing:7.413333pt;}
.ws30{word-spacing:7.509333pt;}
.wsa6{word-spacing:7.520000pt;}
.ws43{word-spacing:7.568000pt;}
.ws6d{word-spacing:7.802667pt;}
.ws76{word-spacing:8.213333pt;}
.ws13{word-spacing:8.272000pt;}
.ws75{word-spacing:8.330667pt;}
.ws6a{word-spacing:8.624000pt;}
.ws69{word-spacing:9.034667pt;}
.ws68{word-spacing:9.093333pt;}
.ws78{word-spacing:9.445333pt;}
.ws66{word-spacing:10.149333pt;}
.ws97{word-spacing:10.736000pt;}
.ws17{word-spacing:10.912000pt;}
.ws74{word-spacing:11.792000pt;}
.ws4a{word-spacing:11.850667pt;}
.ws49{word-spacing:11.968000pt;}
.ws42{word-spacing:13.317333pt;}
.ws9f{word-spacing:13.376000pt;}
.wsc{word-spacing:29.333333pt;}
.ws2a{word-spacing:203.413333pt;}
.ws28{word-spacing:213.173333pt;}
.ws26{word-spacing:214.613333pt;}
.ws24{word-spacing:217.066667pt;}
.ws2b{word-spacing:258.080000pt;}
.ws29{word-spacing:258.453333pt;}
.ws2f{word-spacing:272.592000pt;}
.ws21{word-spacing:288.426667pt;}
.ws25{word-spacing:291.520000pt;}
.ws23{word-spacing:292.480000pt;}
.ws2c{word-spacing:293.072000pt;}
.ws2e{word-spacing:317.280000pt;}
.ws27{word-spacing:352.432000pt;}
.ws2d{word-spacing:404.160000pt;}
._12{margin-left:-57.904000pt;}
._23{margin-left:-24.000000pt;}
._b{margin-left:-8.524800pt;}
._5{margin-left:-7.198713pt;}
._3{margin-left:-5.617380pt;}
._4{margin-left:-4.093520pt;}
._2{margin-left:-2.528000pt;}
._0{margin-left:-1.334620pt;}
._1{width:1.494774pt;}
._8{width:2.580646pt;}
._d{width:3.592196pt;}
._9{width:4.502400pt;}
._a{width:5.952440pt;}
._c{width:7.477020pt;}
._f{width:8.805960pt;}
._e{width:10.055467pt;}
._10{width:11.195953pt;}
._25{width:12.087153pt;}
._7{width:13.104000pt;}
._26{width:14.111565pt;}
._27{width:15.238620pt;}
._24{width:17.265507pt;}
._11{width:29.333333pt;}
._6{width:59.891733pt;}
._14{width:87.755953pt;}
._1f{width:125.514667pt;}
._13{width:133.174620pt;}
._17{width:141.674667pt;}
._1d{width:174.634667pt;}
._18{width:185.761287pt;}
._1e{width:189.977193pt;}
._1a{width:191.757240pt;}
._15{width:199.275953pt;}
._16{width:224.162573pt;}
._1b{width:236.055907pt;}
._20{width:267.968000pt;}
._19{width:305.802760pt;}
._1c{width:312.746667pt;}
._22{width:389.974620pt;}
._21{width:455.730573pt;}
.fs1{font-size:32.000000pt;}
.fsa{font-size:34.202667pt;}
.fs3{font-size:48.000000pt;}
.fs6{font-size:53.333333pt;}
.fs2{font-size:58.666667pt;}
.fs9{font-size:74.666667pt;}
.fs0{font-size:76.264000pt;}
.fs5{font-size:80.000000pt;}
.fs7{font-size:85.333333pt;}
.fs4{font-size:106.666667pt;}
.fs8{font-size:153.557867pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:1.570933pt;}
.y28{bottom:15.985200pt;}
.y27{bottom:23.289067pt;}
.y29{bottom:27.212533pt;}
.y2{bottom:38.177600pt;}
.y26{bottom:41.955733pt;}
.ya{bottom:47.999467pt;}
.y2a{bottom:49.145200pt;}
.y25{bottom:60.622400pt;}
.y9{bottom:62.399467pt;}
.y8{bottom:76.799467pt;}
.y7{bottom:94.979467pt;}
.y52{bottom:151.181067pt;}
.y135{bottom:154.103467pt;}
.y101{bottom:154.118133pt;}
.y113{bottom:154.132800pt;}
.y167{bottom:154.147467pt;}
.ybd{bottom:154.519467pt;}
.y1c0{bottom:158.318133pt;}
.y155{bottom:159.526133pt;}
.y18f{bottom:159.566133pt;}
.y1ae{bottom:160.843467pt;}
.ydf{bottom:162.252800pt;}
.y17c{bottom:163.735333pt;}
.y1de{bottom:166.229467pt;}
.y134{bottom:174.108800pt;}
.y100{bottom:174.123467pt;}
.y112{bottom:174.138133pt;}
.y166{bottom:174.152800pt;}
.ybc{bottom:174.524800pt;}
.y1bf{bottom:176.984800pt;}
.y154{bottom:179.531467pt;}
.y18e{bottom:179.571467pt;}
.y1ad{bottom:180.848800pt;}
.yde{bottom:182.258133pt;}
.y11d{bottom:182.318133pt;}
.y17b{bottom:183.740667pt;}
.y133{bottom:194.114133pt;}
.yff{bottom:194.128800pt;}
.y111{bottom:194.143467pt;}
.y165{bottom:194.158133pt;}
.y1dd{bottom:194.229467pt;}
.ybb{bottom:194.530133pt;}
.y1be{bottom:195.651467pt;}
.y153{bottom:199.536800pt;}
.y18d{bottom:199.576800pt;}
.y1ac{bottom:200.854133pt;}
.y11c{bottom:200.984800pt;}
.ydd{bottom:202.263467pt;}
.y17a{bottom:203.746000pt;}
.y96{bottom:204.543467pt;}
.y51{bottom:208.026133pt;}
.y132{bottom:214.119467pt;}
.yfe{bottom:214.134133pt;}
.y110{bottom:214.148800pt;}
.y164{bottom:214.163467pt;}
.y1bd{bottom:214.318133pt;}
.yba{bottom:214.535467pt;}
.y152{bottom:219.542133pt;}
.y18c{bottom:219.582133pt;}
.y11b{bottom:219.651467pt;}
.y1ab{bottom:220.859467pt;}
.y1dc{bottom:222.229467pt;}
.ydc{bottom:222.268800pt;}
.y179{bottom:223.751333pt;}
.y95{bottom:224.548800pt;}
.y50{bottom:227.878133pt;}
.y131{bottom:234.124800pt;}
.yfd{bottom:234.139467pt;}
.y10f{bottom:234.154133pt;}
.y163{bottom:234.168800pt;}
.yb9{bottom:234.540800pt;}
.y11a{bottom:238.318133pt;}
.y151{bottom:239.547467pt;}
.y18b{bottom:239.587467pt;}
.y1aa{bottom:240.864800pt;}
.ydb{bottom:242.274133pt;}
.y1bc{bottom:242.318133pt;}
.y178{bottom:243.756667pt;}
.y94{bottom:244.554133pt;}
.y4f{bottom:247.883467pt;}
.y1db{bottom:250.229467pt;}
.y130{bottom:254.130133pt;}
.yfc{bottom:254.144800pt;}
.y10e{bottom:254.159467pt;}
.y162{bottom:254.174133pt;}
.yb8{bottom:254.546133pt;}
.y119{bottom:256.984800pt;}
.y150{bottom:259.552800pt;}
.y18a{bottom:259.592800pt;}
.y1a9{bottom:260.870133pt;}
.y1bb{bottom:260.984800pt;}
.yda{bottom:262.279467pt;}
.y177{bottom:263.762000pt;}
.y93{bottom:264.559467pt;}
.y4e{bottom:267.888800pt;}
.y12f{bottom:274.135467pt;}
.yfb{bottom:274.150133pt;}
.y127{bottom:274.164800pt;}
.y161{bottom:274.179467pt;}
.yb7{bottom:274.551467pt;}
.y118{bottom:275.651467pt;}
.y1da{bottom:278.229467pt;}
.y189{bottom:279.598133pt;}
.y1ba{bottom:279.651467pt;}
.y1a8{bottom:280.875467pt;}
.y72{bottom:280.886133pt;}
.y176{bottom:283.767333pt;}
.y92{bottom:284.564800pt;}
.y4d{bottom:287.894133pt;}
.y12e{bottom:294.140800pt;}
.yfa{bottom:294.155467pt;}
.y126{bottom:294.170133pt;}
.y160{bottom:294.184800pt;}
.yb6{bottom:294.556800pt;}
.y14f{bottom:299.548800pt;}
.y188{bottom:299.603467pt;}
.y71{bottom:300.891467pt;}
.yd9{bottom:302.275467pt;}
.y175{bottom:303.772667pt;}
.y1d9{bottom:306.229467pt;}
.y1b9{bottom:307.651467pt;}
.y4c{bottom:307.899467pt;}
.y12d{bottom:314.146133pt;}
.yf9{bottom:314.160800pt;}
.y117{bottom:314.175467pt;}
.y15f{bottom:314.190133pt;}
.yb5{bottom:314.562133pt;}
.y14e{bottom:319.554133pt;}
.y187{bottom:319.608800pt;}
.y1a7{bottom:320.871467pt;}
.y70{bottom:320.896800pt;}
.yd8{bottom:322.280800pt;}
.y174{bottom:323.778000pt;}
.y91{bottom:324.560800pt;}
.y1b8{bottom:326.318133pt;}
.y4b{bottom:327.904800pt;}
.y12c{bottom:334.151467pt;}
.yf8{bottom:334.166133pt;}
.y116{bottom:334.180800pt;}
.y15e{bottom:334.195467pt;}
.y1d8{bottom:334.229467pt;}
.yb4{bottom:334.567467pt;}
.y22{bottom:337.255467pt;}
.y14d{bottom:339.559467pt;}
.y186{bottom:339.614133pt;}
.y1a6{bottom:340.876800pt;}
.y6f{bottom:340.902133pt;}
.yd7{bottom:342.286133pt;}
.y173{bottom:343.783333pt;}
.y90{bottom:344.566133pt;}
.y4a{bottom:347.910133pt;}
.y12b{bottom:354.156800pt;}
.yf7{bottom:354.171467pt;}
.y115{bottom:354.186133pt;}
.y15d{bottom:354.200800pt;}
.y1b7{bottom:354.318133pt;}
.y21{bottom:355.927467pt;}
.y14c{bottom:359.564800pt;}
.y185{bottom:359.619467pt;}
.y1a5{bottom:360.882133pt;}
.y6e{bottom:360.907467pt;}
.y1d7{bottom:362.229467pt;}
.y1f3{bottom:362.231467pt;}
.yd6{bottom:362.291467pt;}
.y8f{bottom:364.571467pt;}
.y20{bottom:370.591467pt;}
.y1b6{bottom:372.984800pt;}
.y12a{bottom:374.162133pt;}
.yf6{bottom:374.176800pt;}
.y114{bottom:374.191467pt;}
.yb3{bottom:374.563467pt;}
.y14b{bottom:379.570133pt;}
.y184{bottom:379.624800pt;}
.y1a4{bottom:380.887467pt;}
.y6d{bottom:380.912800pt;}
.yd5{bottom:382.296800pt;}
.y172{bottom:383.779333pt;}
.y8e{bottom:384.576800pt;}
.y1f{bottom:385.255467pt;}
.y49{bottom:387.906133pt;}
.y1d6{bottom:390.229467pt;}
.y1f2{bottom:390.231467pt;}
.y129{bottom:394.167467pt;}
.yf5{bottom:394.182133pt;}
.y125{bottom:394.196800pt;}
.yb2{bottom:394.568800pt;}
.y14a{bottom:399.575467pt;}
.y183{bottom:399.630133pt;}
.y1e{bottom:399.919467pt;}
.y1a3{bottom:400.892800pt;}
.y1b5{bottom:400.984800pt;}
.yd4{bottom:402.302133pt;}
.y171{bottom:403.784667pt;}
.y8d{bottom:404.582133pt;}
.y48{bottom:407.911467pt;}
.y128{bottom:414.172800pt;}
.y10d{bottom:414.187467pt;}
.y15c{bottom:414.202133pt;}
.yb1{bottom:414.574133pt;}
.y1d{bottom:414.583467pt;}
.y1d5{bottom:418.229467pt;}
.y1f1{bottom:418.231467pt;}
.y149{bottom:419.580800pt;}
.y182{bottom:419.635467pt;}
.y1b4{bottom:419.651467pt;}
.y1a2{bottom:420.898133pt;}
.y6c{bottom:420.908800pt;}
.yd3{bottom:422.307467pt;}
.y170{bottom:423.790000pt;}
.y8c{bottom:424.587467pt;}
.y47{bottom:427.916800pt;}
.y1c{bottom:429.247467pt;}
.yf4{bottom:434.178133pt;}
.y10c{bottom:434.192800pt;}
.y15b{bottom:434.207467pt;}
.yb0{bottom:434.579467pt;}
.y148{bottom:439.586133pt;}
.y181{bottom:439.640800pt;}
.y1a1{bottom:440.903467pt;}
.yd2{bottom:442.312800pt;}
.y16f{bottom:443.795333pt;}
.y8b{bottom:444.592800pt;}
.y1d4{bottom:446.229467pt;}
.y1f0{bottom:446.231467pt;}
.y1b3{bottom:447.651467pt;}
.y46{bottom:447.922133pt;}
.yf3{bottom:454.183467pt;}
.y10b{bottom:454.198133pt;}
.y15a{bottom:454.212800pt;}
.yaf{bottom:454.584800pt;}
.y1b{bottom:459.247467pt;}
.y147{bottom:459.591467pt;}
.y180{bottom:459.646133pt;}
.y6b{bottom:460.904800pt;}
.y1a0{bottom:460.908800pt;}
.yd1{bottom:462.318133pt;}
.y16e{bottom:463.800667pt;}
.y8a{bottom:464.598133pt;}
.y45{bottom:467.927467pt;}
.yf2{bottom:474.188800pt;}
.y10a{bottom:474.203467pt;}
.y159{bottom:474.218133pt;}
.y1d3{bottom:474.229467pt;}
.y1ef{bottom:474.231467pt;}
.yae{bottom:474.590133pt;}
.y1b2{bottom:475.651467pt;}
.y1a{bottom:477.919467pt;}
.y146{bottom:479.596800pt;}
.y17f{bottom:479.651467pt;}
.y6a{bottom:480.910133pt;}
.y19f{bottom:480.914133pt;}
.y16d{bottom:483.806000pt;}
.y89{bottom:484.603467pt;}
.y44{bottom:487.932800pt;}
.y1ee{bottom:492.898133pt;}
.y19{bottom:493.255467pt;}
.yf1{bottom:494.194133pt;}
.y109{bottom:494.208800pt;}
.y158{bottom:494.223467pt;}
.yad{bottom:494.595467pt;}
.y145{bottom:499.602133pt;}
.y69{bottom:500.915467pt;}
.y1d2{bottom:502.229467pt;}
.yd0{bottom:502.318133pt;}
.y1b1{bottom:503.651467pt;}
.y16c{bottom:503.811333pt;}
.y88{bottom:504.608800pt;}
.y43{bottom:507.938133pt;}
.y18{bottom:508.591467pt;}
.yf0{bottom:514.199467pt;}
.y124{bottom:514.214133pt;}
.y157{bottom:514.228800pt;}
.yac{bottom:514.600800pt;}
.y144{bottom:519.607467pt;}
.y17e{bottom:519.651467pt;}
.y1ed{bottom:520.898133pt;}
.y19e{bottom:520.910133pt;}
.y68{bottom:520.920800pt;}
.ycf{bottom:520.984800pt;}
.y1b0{bottom:522.318133pt;}
.y16b{bottom:523.816667pt;}
.y17{bottom:523.927467pt;}
.y87{bottom:524.614133pt;}
.y42{bottom:527.943467pt;}
.y1d1{bottom:530.229467pt;}
.yef{bottom:534.204800pt;}
.y123{bottom:534.219467pt;}
.yab{bottom:534.606133pt;}
.y17d{bottom:538.318133pt;}
.y16{bottom:539.263467pt;}
.y143{bottom:539.612800pt;}
.yce{bottom:539.651467pt;}
.y19d{bottom:540.915467pt;}
.y67{bottom:540.926133pt;}
.y16a{bottom:543.822000pt;}
.y86{bottom:544.619467pt;}
.y41{bottom:547.948800pt;}
.y1ec{bottom:548.898133pt;}
.yee{bottom:554.210133pt;}
.y122{bottom:554.224800pt;}
.y15{bottom:554.599467pt;}
.yaa{bottom:554.611467pt;}
.ycd{bottom:558.318133pt;}
.y142{bottom:559.618133pt;}
.y19c{bottom:560.920800pt;}
.y66{bottom:560.931467pt;}
.y1af{bottom:560.984800pt;}
.y85{bottom:564.624800pt;}
.y1d0{bottom:568.896133pt;}
.y14{bottom:569.935467pt;}
.yed{bottom:574.215467pt;}
.y121{bottom:574.230133pt;}
.ya9{bottom:574.616800pt;}
.y1eb{bottom:576.898133pt;}
.ycc{bottom:576.984800pt;}
.y141{bottom:579.623467pt;}
.y19b{bottom:580.926133pt;}
.y65{bottom:580.936800pt;}
.y84{bottom:584.630133pt;}
.y40{bottom:587.944800pt;}
.yec{bottom:594.220800pt;}
.y120{bottom:594.235467pt;}
.ya8{bottom:594.622133pt;}
.y169{bottom:595.160667pt;}
.ycb{bottom:595.651467pt;}
.y140{bottom:599.628800pt;}
.y19a{bottom:600.931467pt;}
.y64{bottom:600.942133pt;}
.y1ea{bottom:604.898133pt;}
.y3f{bottom:607.950133pt;}
.y168{bottom:612.494000pt;}
.yeb{bottom:614.226133pt;}
.y11f{bottom:614.240800pt;}
.ya7{bottom:614.627467pt;}
.y13{bottom:618.160667pt;}
.y13f{bottom:619.634133pt;}
.y199{bottom:620.936800pt;}
.y63{bottom:620.947467pt;}
.y3e{bottom:627.955467pt;}
.y83{bottom:632.507200pt;}
.y1e9{bottom:632.898133pt;}
.y108{bottom:634.231467pt;}
.yca{bottom:634.246133pt;}
.ya6{bottom:634.632800pt;}
.y12{bottom:636.827333pt;}
.y13e{bottom:639.639467pt;}
.y198{bottom:640.942133pt;}
.y62{bottom:640.952800pt;}
.y82{bottom:641.840533pt;}
.y3d{bottom:647.960800pt;}
.y1cf{bottom:651.564800pt;}
.yea{bottom:654.222133pt;}
.y107{bottom:654.236800pt;}
.yc9{bottom:654.251467pt;}
.ya5{bottom:654.638133pt;}
.y11{bottom:655.494000pt;}
.y24{bottom:659.323467pt;}
.y1e8{bottom:660.898133pt;}
.y197{bottom:660.947467pt;}
.y61{bottom:660.958133pt;}
.y3c{bottom:667.966133pt;}
.y10{bottom:674.160667pt;}
.ye9{bottom:674.227467pt;}
.y106{bottom:674.242133pt;}
.yc8{bottom:674.256800pt;}
.y23{bottom:676.651467pt;}
.y81{bottom:678.760533pt;}
.y1ce{bottom:679.564800pt;}
.y13d{bottom:679.635467pt;}
.y196{bottom:680.952800pt;}
.y60{bottom:680.963467pt;}
.y3b{bottom:687.971467pt;}
.y1e7{bottom:688.898133pt;}
.ye8{bottom:694.232800pt;}
.y105{bottom:694.247467pt;}
.yc7{bottom:694.262133pt;}
.ya4{bottom:694.634133pt;}
.y13c{bottom:699.640800pt;}
.y195{bottom:700.958133pt;}
.y5f{bottom:700.968800pt;}
.y80{bottom:706.347200pt;}
.y1cd{bottom:707.564800pt;}
.y3a{bottom:707.976800pt;}
.ye7{bottom:714.238133pt;}
.y104{bottom:714.252800pt;}
.yc6{bottom:714.267467pt;}
.ya3{bottom:714.639467pt;}
.y7f{bottom:715.680533pt;}
.y1e6{bottom:716.898133pt;}
.y13b{bottom:719.646133pt;}
.y194{bottom:720.963467pt;}
.y5e{bottom:720.974133pt;}
.y39{bottom:727.982133pt;}
.ye6{bottom:734.243467pt;}
.y103{bottom:734.258133pt;}
.yc5{bottom:734.272800pt;}
.ya2{bottom:734.644800pt;}
.y1cc{bottom:735.564800pt;}
.y13a{bottom:739.651467pt;}
.y193{bottom:740.968800pt;}
.y5d{bottom:740.979467pt;}
.y1e5{bottom:744.898133pt;}
.y38{bottom:747.987467pt;}
.y7e{bottom:752.600533pt;}
.ye5{bottom:754.248800pt;}
.y102{bottom:754.263467pt;}
.ya1{bottom:754.650133pt;}
.y192{bottom:760.974133pt;}
.y5c{bottom:760.984800pt;}
.y1cb{bottom:763.564800pt;}
.yf{bottom:769.040533pt;}
.y7d{bottom:771.267200pt;}
.y1e4{bottom:772.898133pt;}
.ye4{bottom:774.254133pt;}
.yc4{bottom:774.268800pt;}
.ya0{bottom:774.655467pt;}
.y139{bottom:779.651467pt;}
.y191{bottom:780.979467pt;}
.y37{bottom:787.983467pt;}
.y1ca{bottom:791.564800pt;}
.ye{bottom:793.040533pt;}
.ye3{bottom:794.259467pt;}
.yc3{bottom:794.274133pt;}
.y9f{bottom:794.660800pt;}
.y138{bottom:798.318133pt;}
.y7c{bottom:798.853867pt;}
.y5b{bottom:800.984800pt;}
.y36{bottom:807.988800pt;}
.y7b{bottom:808.187200pt;}
.y1c9{bottom:810.231467pt;}
.ye2{bottom:814.264800pt;}
.yc2{bottom:814.279467pt;}
.y9e{bottom:814.666133pt;}
.y137{bottom:816.984800pt;}
.y1e3{bottom:819.564800pt;}
.y35{bottom:827.994133pt;}
.yd{bottom:828.379067pt;}
.y1c8{bottom:828.898133pt;}
.ye1{bottom:834.270133pt;}
.yc1{bottom:834.284800pt;}
.y9d{bottom:834.671467pt;}
.y136{bottom:835.651467pt;}
.y190{bottom:840.984800pt;}
.y7a{bottom:845.107200pt;}
.y1e2{bottom:847.564800pt;}
.y34{bottom:847.999467pt;}
.ye0{bottom:854.275467pt;}
.yc0{bottom:854.290133pt;}
.y79{bottom:854.440533pt;}
.y9c{bottom:854.676800pt;}
.y1c7{bottom:856.898133pt;}
.yc{bottom:859.045733pt;}
.y33{bottom:868.004800pt;}
.y5a{bottom:874.280800pt;}
.ybf{bottom:874.295467pt;}
.y9b{bottom:874.682133pt;}
.y1c6{bottom:875.564800pt;}
.y32{bottom:888.010133pt;}
.yb{bottom:889.712400pt;}
.y78{bottom:891.360533pt;}
.y59{bottom:894.286133pt;}
.ybe{bottom:894.300800pt;}
.y9a{bottom:894.687467pt;}
.y1c5{bottom:903.564800pt;}
.y31{bottom:908.015467pt;}
.y77{bottom:910.027200pt;}
.y58{bottom:914.291467pt;}
.y11e{bottom:914.306133pt;}
.y99{bottom:914.692800pt;}
.y1c4{bottom:922.231467pt;}
.y30{bottom:928.020800pt;}
.y1e1{bottom:931.564800pt;}
.y57{bottom:934.296800pt;}
.y156{bottom:934.311467pt;}
.y98{bottom:934.698133pt;}
.y76{bottom:937.613867pt;}
.y2f{bottom:948.026133pt;}
.y1c3{bottom:950.231467pt;}
.y56{bottom:954.302133pt;}
.y1e0{bottom:959.564800pt;}
.y75{bottom:965.200533pt;}
.y2e{bottom:968.031467pt;}
.y55{bottom:974.307467pt;}
.y97{bottom:974.698133pt;}
.y6{bottom:977.126533pt;}
.y1c2{bottom:978.231467pt;}
.y74{bottom:983.867200pt;}
.y1df{bottom:987.564800pt;}
.y54{bottom:994.312800pt;}
.y1c1{bottom:996.898133pt;}
.y5{bottom:1005.540000pt;}
.y2d{bottom:1008.031467pt;}
.y53{bottom:1014.318133pt;}
.y73{bottom:1015.564800pt;}
.y1{bottom:1019.032000pt;}
.y3{bottom:1038.906267pt;}
.y2b{bottom:1053.625200pt;}
.y2c{bottom:1084.897600pt;}
.h4{height:33.600000pt;}
.h6{height:50.400000pt;}
.h2{height:55.488000pt;}
.h9{height:56.000000pt;}
.h3{height:57.198000pt;}
.h8{height:60.000000pt;}
.h5{height:61.600000pt;}
.hd{height:62.213333pt;}
.ha{height:64.000000pt;}
.hc{height:80.000000pt;}
.hf{height:93.333333pt;}
.h7{height:112.000000pt;}
.he{height:130.666667pt;}
.hb{height:161.235760pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:314.870667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xa{left:18.897600pt;}
.xb{left:46.923600pt;}
.x1{left:48.000000pt;}
.x5{left:51.023600pt;}
.x4{left:53.877467pt;}
.xe{left:94.488133pt;}
.x17{left:102.354267pt;}
.x12{left:120.220933pt;}
.x1b{left:128.834800pt;}
.xf{left:131.330800pt;}
.x2{left:138.580000pt;}
.x10{left:147.405467pt;}
.x11{left:167.774267pt;}
.x3{left:186.580000pt;}
.x9{left:188.976400pt;}
.x6{left:196.850400pt;}
.x7{left:198.558267pt;}
.x8{left:210.097067pt;}
.x13{left:227.834267pt;}
.x1c{left:241.685867pt;}
.x1d{left:254.939200pt;}
.x19{left:259.580933pt;}
.x14{left:359.340933pt;}
.x18{left:361.100933pt;}
.x1a{left:371.340933pt;}
.x15{left:495.047600pt;}
.x16{left:603.820933pt;}
.xc{left:724.913333pt;}
.x1e{left:732.270667pt;}
.xd{left:733.305200pt;}
}




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