
    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_8da5f9f6c7d37c3f6ca2ac16.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_ebc5d49c918a9921e682b228.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_361c14e181dc2d411f9ec413.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_435a419f9a63ecbae8fe9dda.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_5e182f6676f22e1f7b533d1b.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_736262201069abbfbdc139c2.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_94c01df982048124ac51f3e0.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_72ae3950c22743674bc6dab1.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_74ed7894a73999c4c578821a.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_b534541486ec051c99958a56.woff')format("woff");}.ffa{font-family:ffa;line-height:1.051275;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_b9deee268ccdb717713e6558.woff')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_cf30366db526c3776b8d8043.woff')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_5e23f3a8bfb4f08a1d9910ba.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_24d2132ea9d4025d0cc2ae8d.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_8d8a25d9f84e7b0379add033.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_b0ad21bdd5516ef96eb28eb4.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_491f3c287beb26b7fee019cf.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_ebc5d49c918a9921e682b228.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_cd8ec66aa8ecc6b447a8200d.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_be3ee54dbd0ac5f6b0004e55.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_6447f4ed5a8eed5b97912338.woff')format("woff");}.ff15{font-family:ff15;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:ff16;src:url('chunks/assets/font_84917b020e1043c696b23fb0.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_b5c28c09799146d70f0a11cd.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;}
@font-face{font-family:ff18;src:url('chunks/assets/font_03af7a2af2c8e29abc376544.woff')format("woff");}.ff18{font-family:ff18;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:ff19;src:url('chunks/assets/font_79a05c6d5d46f1fdc3fec45c.woff')format("woff");}.ff19{font-family:ff19;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:ff1a;src:url('chunks/assets/font_6b1ab1e17410d07ecc934835.woff')format("woff");}.ff1a{font-family:ff1a;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:-19.980600px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:19.980600px;}
.v3{vertical-align:84.000000px;}
.ls1c{letter-spacing:-4.884000px;}
.ls8{letter-spacing:-4.026000px;}
.ls6{letter-spacing:-3.996000px;}
.ls18{letter-spacing:-3.900000px;}
.ls16{letter-spacing:-3.564000px;}
.ls9{letter-spacing:-3.455052px;}
.ls15{letter-spacing:-3.240000px;}
.ls5{letter-spacing:-2.916000px;}
.lsc{letter-spacing:-2.400000px;}
.ls19{letter-spacing:-1.800000px;}
.ls14{letter-spacing:-1.680000px;}
.ls1e{letter-spacing:-1.500000px;}
.ls1f{letter-spacing:-1.440000px;}
.ls10{letter-spacing:-1.320000px;}
.ls13{letter-spacing:-1.200000px;}
.lse{letter-spacing:-1.080000px;}
.lsf{letter-spacing:-0.900000px;}
.lsd{letter-spacing:-0.720000px;}
.lsb{letter-spacing:-0.660000px;}
.ls11{letter-spacing:-0.600000px;}
.ls17{letter-spacing:-0.594000px;}
.ls1d{letter-spacing:-0.396000px;}
.ls12{letter-spacing:-0.360000px;}
.lsa{letter-spacing:-0.330000px;}
.ls4{letter-spacing:-0.324000px;}
.ls20{letter-spacing:-0.120000px;}
.ls3{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.428985px;}
.ls1a{letter-spacing:0.462000px;}
.ls1b{letter-spacing:0.594000px;}
.ls2{letter-spacing:1.080000px;}
.ls1{letter-spacing:3.600000px;}
.ls7{letter-spacing:9.590400px;}
.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;}
}
.ws42{word-spacing:-60.000000px;}
.ws3e{word-spacing:-44.100000px;}
.ws52{word-spacing:-18.216000px;}
.ws6f{word-spacing:-17.820000px;}
.ws1{word-spacing:-16.740000px;}
.ws89{word-spacing:-16.620000px;}
.ws79{word-spacing:-16.560000px;}
.ws23{word-spacing:-16.140000px;}
.ws88{word-spacing:-15.120000px;}
.ws0{word-spacing:-15.066000px;}
.ws7a{word-spacing:-15.060000px;}
.ws4c{word-spacing:-14.940000px;}
.ws32{word-spacing:-14.652000px;}
.wsf{word-spacing:-14.388000px;}
.ws1e{word-spacing:-14.220000px;}
.wse{word-spacing:-14.100000px;}
.ws4{word-spacing:-13.446000px;}
.ws68{word-spacing:-13.332000px;}
.ws78{word-spacing:-13.320000px;}
.ws2{word-spacing:-13.284000px;}
.ws41{word-spacing:-11.520000px;}
.ws3{word-spacing:-10.368000px;}
.ws10{word-spacing:-9.686400px;}
.ws5{word-spacing:-9.450000px;}
.ws44{word-spacing:-8.710020px;}
.ws70{word-spacing:-4.752000px;}
.ws71{word-spacing:-4.290000px;}
.ws84{word-spacing:-3.000000px;}
.ws57{word-spacing:-2.838000px;}
.ws7b{word-spacing:-2.820000px;}
.ws58{word-spacing:-2.772000px;}
.ws7c{word-spacing:-2.580000px;}
.ws80{word-spacing:-2.520000px;}
.ws7d{word-spacing:-2.340000px;}
.ws5e{word-spacing:-2.244000px;}
.ws64{word-spacing:-2.178000px;}
.ws90{word-spacing:-1.620000px;}
.ws82{word-spacing:-1.500000px;}
.ws15{word-spacing:-1.386000px;}
.ws33{word-spacing:-1.320000px;}
.wsd{word-spacing:-1.188000px;}
.ws76{word-spacing:-0.726000px;}
.ws87{word-spacing:-0.660000px;}
.ws5f{word-spacing:-0.594000px;}
.wsa{word-spacing:-0.540000px;}
.ws59{word-spacing:-0.462000px;}
.ws65{word-spacing:-0.396000px;}
.ws7{word-spacing:-0.378000px;}
.ws53{word-spacing:-0.264000px;}
.ws6{word-spacing:0.000000px;}
.ws8f{word-spacing:0.120000px;}
.wsb{word-spacing:0.324000px;}
.ws16{word-spacing:0.330000px;}
.ws6a{word-spacing:0.396000px;}
.ws3d{word-spacing:0.594000px;}
.ws37{word-spacing:0.600000px;}
.ws18{word-spacing:0.660000px;}
.ws85{word-spacing:0.840000px;}
.ws34{word-spacing:0.924000px;}
.ws56{word-spacing:0.990000px;}
.ws8b{word-spacing:1.020000px;}
.ws6e{word-spacing:1.320000px;}
.ws62{word-spacing:1.584000px;}
.ws81{word-spacing:1.680000px;}
.ws74{word-spacing:1.782000px;}
.ws75{word-spacing:1.848000px;}
.ws55{word-spacing:1.914000px;}
.ws8e{word-spacing:2.160000px;}
.ws35{word-spacing:2.640000px;}
.ws83{word-spacing:3.000000px;}
.ws11{word-spacing:3.455052px;}
.ws4e{word-spacing:3.564000px;}
.ws4d{word-spacing:3.900000px;}
.ws6d{word-spacing:4.026000px;}
.ws6c{word-spacing:4.092000px;}
.ws8c{word-spacing:4.140000px;}
.ws8d{word-spacing:4.200000px;}
.ws73{word-spacing:4.290000px;}
.ws72{word-spacing:4.356000px;}
.ws86{word-spacing:4.440000px;}
.ws3f{word-spacing:4.620000px;}
.ws40{word-spacing:4.686000px;}
.ws60{word-spacing:4.884000px;}
.ws8a{word-spacing:4.920000px;}
.ws67{word-spacing:5.016000px;}
.ws13{word-spacing:5.082000px;}
.ws17{word-spacing:5.214000px;}
.ws9{word-spacing:5.400000px;}
.ws14{word-spacing:5.412000px;}
.ws8{word-spacing:5.454000px;}
.ws63{word-spacing:5.544000px;}
.ws38{word-spacing:5.610000px;}
.ws36{word-spacing:5.760000px;}
.ws39{word-spacing:5.874000px;}
.ws3a{word-spacing:5.940000px;}
.ws5b{word-spacing:6.138000px;}
.ws5d{word-spacing:6.204000px;}
.ws5c{word-spacing:6.270000px;}
.ws12{word-spacing:6.798000px;}
.ws61{word-spacing:7.062000px;}
.ws7e{word-spacing:7.140000px;}
.ws7f{word-spacing:7.260000px;}
.ws69{word-spacing:7.524000px;}
.ws5a{word-spacing:7.590000px;}
.ws43{word-spacing:7.854000px;}
.ws51{word-spacing:8.580000px;}
.ws50{word-spacing:8.646000px;}
.ws77{word-spacing:9.174000px;}
.ws4f{word-spacing:9.438000px;}
.ws6b{word-spacing:9.636000px;}
.ws66{word-spacing:10.230000px;}
.ws3c{word-spacing:10.890000px;}
.ws3b{word-spacing:11.022000px;}
.ws54{word-spacing:12.078000px;}
.wsc{word-spacing:14.202000px;}
.ws19{word-spacing:33.000000px;}
.ws4b{word-spacing:42.780000px;}
.ws49{word-spacing:96.840000px;}
.ws46{word-spacing:126.000000px;}
.ws47{word-spacing:135.540000px;}
.ws45{word-spacing:187.440000px;}
.ws27{word-spacing:354.000000px;}
.ws1a{word-spacing:387.420000px;}
.ws1c{word-spacing:410.580000px;}
.ws1d{word-spacing:412.980000px;}
.ws1b{word-spacing:414.540000px;}
.ws30{word-spacing:440.700000px;}
.ws31{word-spacing:442.980000px;}
.ws20{word-spacing:443.160000px;}
.ws2f{word-spacing:443.520000px;}
.ws2c{word-spacing:446.460000px;}
.ws2b{word-spacing:447.480000px;}
.ws2d{word-spacing:449.280000px;}
.ws22{word-spacing:450.660000px;}
.ws21{word-spacing:450.900000px;}
.ws2a{word-spacing:465.180000px;}
.ws26{word-spacing:467.400000px;}
.ws25{word-spacing:470.460000px;}
.ws29{word-spacing:471.780000px;}
.ws28{word-spacing:472.320000px;}
.ws24{word-spacing:472.440000px;}
.ws1f{word-spacing:620.400000px;}
.ws2e{word-spacing:669.660000px;}
.ws4a{word-spacing:1061.700000px;}
.ws48{word-spacing:1195.380000px;}
._1a{margin-left:-24.300000px;}
._b{margin-left:-9.590400px;}
._6{margin-left:-7.138553px;}
._4{margin-left:-5.673105px;}
._5{margin-left:-4.212000px;}
._2{margin-left:-2.844000px;}
._0{margin-left:-1.501448px;}
._1{width:1.681621px;}
._10{width:2.742495px;}
._3{width:3.828600px;}
._a{width:5.373000px;}
._9{width:6.674647px;}
._8{width:8.532000px;}
._d{width:10.520400px;}
._e{width:11.523000px;}
._11{width:13.230600px;}
._7{width:14.742000px;}
._f{width:16.104000px;}
._15{width:17.284695px;}
._1b{width:28.142400px;}
._12{width:29.592000px;}
._c{width:33.000000px;}
._18{width:97.140000px;}
._17{width:162.504000px;}
._19{width:212.404343px;}
._16{width:271.560000px;}
._14{width:358.024342px;}
._13{width:499.704000px;}
.fc3{color:rgb(203,196,150);}
.fc2{color:rgb(101,98,99);}
.fc1{color:rgb(181,170,105);}
.fc0{color:rgb(35,31,32);}
.fsb{font-size:34.980000px;}
.fs1{font-size:36.000000px;}
.fs3{font-size:54.000000px;}
.fs6{font-size:60.000000px;}
.fs2{font-size:66.000000px;}
.fs5{font-size:78.000000px;}
.fs7{font-size:84.000000px;}
.fs0{font-size:85.797000px;}
.fs8{font-size:96.000000px;}
.fs4{font-size:108.000000px;}
.fsa{font-size:120.000000px;}
.fs9{font-size:172.752600px;}
.y0{bottom:0.000000px;}
.y4{bottom:1.767300px;}
.y34{bottom:15.700200px;}
.y37{bottom:17.983350px;}
.y38{bottom:30.614100px;}
.y33{bottom:36.700200px;}
.y2{bottom:42.949800px;}
.yb{bottom:53.999400px;}
.y39{bottom:55.288350px;}
.y32{bottom:57.700200px;}
.ya{bottom:70.199400px;}
.y31{bottom:78.700200px;}
.y9{bottom:86.399400px;}
.y8{bottom:102.599400px;}
.y7{bottom:123.051900px;}
.y2e{bottom:164.689500px;}
.y125{bottom:170.078850px;}
.y84{bottom:170.547900px;}
.ya4{bottom:173.566500px;}
.y1bc{bottom:173.607900px;}
.y17b{bottom:173.751600px;}
.y140{bottom:175.034400px;}
.y1dd{bottom:176.508000px;}
.y18b{bottom:179.573400px;}
.y1a3{bottom:180.986400px;}
.yd2{bottom:181.022400px;}
.y189{bottom:185.589900px;}
.y2d{bottom:185.695500px;}
.y1fa{bottom:187.010400px;}
.y60{bottom:188.844900px;}
.ybf{bottom:189.867600px;}
.y83{bottom:193.053900px;}
.ya3{bottom:196.072500px;}
.y17a{bottom:196.257600px;}
.y1dc{bottom:197.508000px;}
.y13f{bottom:197.540400px;}
.y18a{bottom:199.073400px;}
.y2c{bottom:202.192500px;}
.y1a2{bottom:203.492400px;}
.yd1{bottom:203.528400px;}
.y1bb{bottom:205.107900px;}
.ye9{bottom:207.088500px;}
.y188{bottom:208.095900px;}
.y5f{bottom:211.350900px;}
.ybe{bottom:212.373600px;}
.y82{bottom:215.559900px;}
.y1db{bottom:218.508000px;}
.y1f9{bottom:218.510400px;}
.y2b{bottom:218.689500px;}
.y179{bottom:218.763600px;}
.y13e{bottom:220.046400px;}
.y16a{bottom:220.054950px;}
.y1a1{bottom:225.998400px;}
.yd0{bottom:226.034400px;}
.y20b{bottom:229.010400px;}
.ye8{bottom:229.594500px;}
.y187{bottom:230.601900px;}
.y124{bottom:231.692400px;}
.y5e{bottom:233.856900px;}
.ybd{bottom:234.879600px;}
.y2a{bottom:235.186500px;}
.y1ba{bottom:236.607900px;}
.y81{bottom:238.065900px;}
.y1f8{bottom:239.510400px;}
.ya2{bottom:241.072500px;}
.y178{bottom:241.269600px;}
.y13d{bottom:242.552400px;}
.y169{bottom:242.560950px;}
.y1a0{bottom:248.504400px;}
.ycf{bottom:248.540400px;}
.y1da{bottom:250.008000px;}
.y20a{bottom:250.010400px;}
.y29{bottom:251.683500px;}
.ye7{bottom:252.100500px;}
.y186{bottom:253.107900px;}
.y123{bottom:254.198400px;}
.y5d{bottom:256.362900px;}
.ybc{bottom:257.385600px;}
.y1b9{bottom:257.607900px;}
.y1f7{bottom:260.510400px;}
.y80{bottom:260.571900px;}
.y150{bottom:263.423400px;}
.y177{bottom:263.775600px;}
.y168{bottom:265.066950px;}
.yfe{bottom:266.512650px;}
.y28{bottom:268.180500px;}
.y19f{bottom:271.010400px;}
.yce{bottom:271.046400px;}
.ye6{bottom:274.606500px;}
.y122{bottom:276.704400px;}
.y5c{bottom:278.868900px;}
.y1d9{bottom:281.508000px;}
.y209{bottom:281.510400px;}
.y7f{bottom:283.077900px;}
.y27{bottom:284.677500px;}
.y14f{bottom:285.929400px;}
.y13c{bottom:287.547900px;}
.y167{bottom:287.572950px;}
.yfd{bottom:289.018650px;}
.y1b8{bottom:289.107900px;}
.y1f6{bottom:292.010400px;}
.ycd{bottom:293.552400px;}
.ye5{bottom:297.112500px;}
.y185{bottom:298.107900px;}
.y121{bottom:299.210400px;}
.ybb{bottom:302.381100px;}
.y1d8{bottom:302.508000px;}
.y7e{bottom:305.583900px;}
.y14e{bottom:308.435400px;}
.y13b{bottom:310.053900px;}
.y166{bottom:310.078950px;}
.y1b7{bottom:310.107900px;}
.yfc{bottom:311.524650px;}
.y1f5{bottom:313.010400px;}
.y19e{bottom:316.005900px;}
.ycc{bottom:316.058400px;}
.y26{bottom:318.427500px;}
.ye4{bottom:319.618500px;}
.y176{bottom:321.531600px;}
.ya1{bottom:323.512500px;}
.y5b{bottom:323.864400px;}
.yba{bottom:324.887100px;}
.y7d{bottom:328.089900px;}
.y14d{bottom:330.941400px;}
.y13a{bottom:332.559900px;}
.y165{bottom:332.584950px;}
.y1d7{bottom:334.008000px;}
.yfb{bottom:334.030650px;}
.y19d{bottom:338.511900px;}
.y25{bottom:339.433500px;}
.y175{bottom:341.031600px;}
.y1b6{bottom:341.607900px;}
.ye3{bottom:342.124500px;}
.y120{bottom:344.205900px;}
.y1f4{bottom:344.510400px;}
.ya0{bottom:346.018500px;}
.y5a{bottom:346.370400px;}
.yb9{bottom:347.393100px;}
.y7c{bottom:350.595900px;}
.y14c{bottom:353.447400px;}
.y139{bottom:355.065900px;}
.y164{bottom:355.090950px;}
.yfa{bottom:356.536650px;}
.y24{bottom:356.686500px;}
.y19c{bottom:361.017900px;}
.ycb{bottom:361.053900px;}
.y1b5{bottom:362.607900px;}
.ye2{bottom:364.630500px;}
.y1d6{bottom:365.508000px;}
.y208{bottom:365.510400px;}
.y11f{bottom:366.711900px;}
.y9f{bottom:368.524500px;}
.y59{bottom:368.876400px;}
.yb8{bottom:369.899100px;}
.y7b{bottom:373.101900px;}
.y23{bottom:373.939500px;}
.y14b{bottom:375.953400px;}
.y184{bottom:375.969900px;}
.y1f3{bottom:376.010400px;}
.y138{bottom:377.571900px;}
.y163{bottom:377.596950px;}
.yf9{bottom:379.042650px;}
.y19b{bottom:383.523900px;}
.yca{bottom:383.559900px;}
.y1d5{bottom:386.508000px;}
.ye1{bottom:387.136500px;}
.y11e{bottom:389.217900px;}
.y9e{bottom:391.030500px;}
.y22{bottom:391.192500px;}
.y58{bottom:391.382400px;}
.yb7{bottom:392.405100px;}
.y1b4{bottom:394.107900px;}
.y7a{bottom:395.607900px;}
.y207{bottom:397.010400px;}
.y14a{bottom:398.459400px;}
.y183{bottom:398.475900px;}
.y137{bottom:400.077900px;}
.y162{bottom:400.102950px;}
.yf8{bottom:401.548650px;}
.y19a{bottom:406.029900px;}
.yc9{bottom:406.065900px;}
.y1f2{bottom:407.510400px;}
.y21{bottom:408.445500px;}
.ye0{bottom:409.642500px;}
.y11d{bottom:411.723900px;}
.y9d{bottom:413.536500px;}
.y57{bottom:413.888400px;}
.y1b3{bottom:415.107900px;}
.y1d4{bottom:418.008000px;}
.y206{bottom:418.010400px;}
.y149{bottom:420.965400px;}
.y182{bottom:420.981900px;}
.y136{bottom:422.583900px;}
.y161{bottom:422.608950px;}
.yf7{bottom:424.054650px;}
.y20{bottom:425.698500px;}
.y1f1{bottom:428.510400px;}
.y199{bottom:428.535900px;}
.yc8{bottom:428.571900px;}
.ydf{bottom:432.148500px;}
.y11c{bottom:434.229900px;}
.y9c{bottom:436.042500px;}
.y56{bottom:436.394400px;}
.y1d3{bottom:439.008000px;}
.y79{bottom:440.607900px;}
.y1f{bottom:442.951500px;}
.y135{bottom:445.089900px;}
.y160{bottom:445.114950px;}
.yb6{bottom:446.273250px;}
.yf6{bottom:446.560650px;}
.y1b2{bottom:446.607900px;}
.y205{bottom:449.510400px;}
.y198{bottom:451.041900px;}
.yc7{bottom:451.077900px;}
.yde{bottom:454.654500px;}
.y11b{bottom:456.735900px;}
.y9b{bottom:458.548500px;}
.y55{bottom:458.900400px;}
.y1f0{bottom:460.010400px;}
.y1e{bottom:460.204500px;}
.y148{bottom:465.960900px;}
.y181{bottom:465.977400px;}
.y134{bottom:467.595900px;}
.y1b1{bottom:467.607900px;}
.y15f{bottom:467.620950px;}
.yf5{bottom:469.066650px;}
.y1d2{bottom:470.508000px;}
.y204{bottom:470.510400px;}
.y197{bottom:473.547900px;}
.yc6{bottom:473.583900px;}
.ydd{bottom:477.160500px;}
.yb5{bottom:477.308250px;}
.y11a{bottom:479.241900px;}
.y9a{bottom:481.054500px;}
.y54{bottom:481.406400px;}
.y147{bottom:488.466900px;}
.y180{bottom:488.483400px;}
.y133{bottom:490.101900px;}
.y15e{bottom:490.126950px;}
.y1d1{bottom:491.508000px;}
.y1ef{bottom:491.510400px;}
.yf4{bottom:491.572650px;}
.y196{bottom:496.053900px;}
.yc5{bottom:496.089900px;}
.y78{bottom:496.107900px;}
.y1b0{bottom:499.107900px;}
.ydc{bottom:499.666500px;}
.y119{bottom:501.747900px;}
.y203{bottom:502.010400px;}
.y99{bottom:503.560500px;}
.y53{bottom:503.912400px;}
.yb4{bottom:508.343250px;}
.y146{bottom:510.972900px;}
.y17f{bottom:510.989400px;}
.y1d0{bottom:512.508000px;}
.y132{bottom:512.607900px;}
.y15d{bottom:512.632950px;}
.yf3{bottom:514.078650px;}
.y1d{bottom:514.473000px;}
.y195{bottom:518.559900px;}
.yc4{bottom:518.595900px;}
.ydb{bottom:522.172500px;}
.y1ee{bottom:523.010400px;}
.y118{bottom:524.253900px;}
.y98{bottom:526.066500px;}
.y1af{bottom:530.607900px;}
.y145{bottom:533.478900px;}
.y17e{bottom:533.495400px;}
.y15c{bottom:535.138950px;}
.y1c{bottom:535.473000px;}
.yf2{bottom:536.584650px;}
.yb3{bottom:539.378250px;}
.y194{bottom:541.065900px;}
.yc3{bottom:541.101900px;}
.y1cf{bottom:544.008000px;}
.y117{bottom:546.759900px;}
.y97{bottom:548.572500px;}
.y52{bottom:548.907900px;}
.y1ed{bottom:554.510400px;}
.y144{bottom:555.984900px;}
.y17d{bottom:556.001400px;}
.y1b{bottom:556.473000px;}
.y131{bottom:557.613900px;}
.y15b{bottom:557.644950px;}
.y1ae{bottom:562.107900px;}
.y193{bottom:563.571900px;}
.yc2{bottom:563.607900px;}
.yda{bottom:567.168000px;}
.y116{bottom:569.265900px;}
.yb2{bottom:570.413250px;}
.y51{bottom:571.413900px;}
.y1ec{bottom:575.510400px;}
.y1a{bottom:577.473000px;}
.y143{bottom:578.490900px;}
.y77{bottom:578.507400px;}
.y15a{bottom:580.150950px;}
.yf1{bottom:581.580150px;}
.y192{bottom:586.077900px;}
.y1ce{bottom:587.508000px;}
.yd9{bottom:589.674000px;}
.y130{bottom:590.607900px;}
.y115{bottom:591.771900px;}
.y96{bottom:593.572500px;}
.y1ad{bottom:593.607900px;}
.y50{bottom:593.919900px;}
.y202{bottom:596.510400px;}
.y142{bottom:600.996900px;}
.y76{bottom:601.013400px;}
.yb1{bottom:601.448250px;}
.y159{bottom:602.656950px;}
.yf0{bottom:604.086150px;}
.y19{bottom:604.951950px;}
.y1eb{bottom:607.010400px;}
.y191{bottom:608.583900px;}
.yc1{bottom:608.607900px;}
.yd8{bottom:612.180000px;}
.y114{bottom:614.277900px;}
.y4f{bottom:616.425900px;}
.y141{bottom:623.502900px;}
.y75{bottom:623.519400px;}
.y1ac{bottom:625.107900px;}
.y158{bottom:625.162950px;}
.y18{bottom:625.951950px;}
.yef{bottom:626.592150px;}
.y1ea{bottom:628.010400px;}
.y190{bottom:631.089900px;}
.yd7{bottom:634.686000px;}
.y113{bottom:636.783900px;}
.yb0{bottom:637.107900px;}
.y4e{bottom:638.931900px;}
.y74{bottom:646.025400px;}
.y17{bottom:646.951950px;}
.y157{bottom:647.668950px;}
.y1e9{bottom:649.010400px;}
.yee{bottom:649.098150px;}
.y18f{bottom:653.595900px;}
.y1ab{bottom:656.607900px;}
.yd6{bottom:657.192000px;}
.y201{bottom:659.510400px;}
.y4d{bottom:661.437900px;}
.yaf{bottom:662.607900px;}
.y95{bottom:664.792200px;}
.y16{bottom:667.951950px;}
.y12f{bottom:668.498400px;}
.y73{bottom:668.531400px;}
.y156{bottom:670.174950px;}
.yed{bottom:671.604150px;}
.y18e{bottom:676.101900px;}
.y1cd{bottom:680.510400px;}
.y4c{bottom:683.943900px;}
.y94{bottom:687.298200px;}
.y1aa{bottom:688.107900px;}
.y112{bottom:690.645600px;}
.y12e{bottom:691.004400px;}
.y17c{bottom:691.020900px;}
.y72{bottom:691.037400px;}
.y155{bottom:692.680950px;}
.yec{bottom:694.110150px;}
.y15{bottom:695.430750px;}
.y18d{bottom:698.607900px;}
.y1cc{bottom:701.510400px;}
.yd5{bottom:702.192000px;}
.y4b{bottom:706.449900px;}
.y93{bottom:709.804200px;}
.y200{bottom:712.010400px;}
.y12d{bottom:713.510400px;}
.yae{bottom:713.526900px;}
.y71{bottom:713.543400px;}
.y154{bottom:715.186950px;}
.y14{bottom:716.430750px;}
.y1a9{bottom:719.607900px;}
.y111{bottom:720.150600px;}
.y1e8{bottom:722.510400px;}
.y110{bottom:728.655600px;}
.y4a{bottom:728.955900px;}
.y92{bottom:732.310200px;}
.y1cb{bottom:733.010400px;}
.y12c{bottom:736.016400px;}
.yad{bottom:736.032900px;}
.y70{bottom:736.049400px;}
.y13{bottom:737.430750px;}
.y153{bottom:737.692950px;}
.y30{bottom:741.733500px;}
.y1e7{bottom:743.510400px;}
.y18c{bottom:743.607900px;}
.y10f{bottom:749.655600px;}
.y1a8{bottom:751.107900px;}
.y49{bottom:751.461900px;}
.yeb{bottom:751.866150px;}
.y1ff{bottom:754.010400px;}
.y91{bottom:754.816200px;}
.y12{bottom:758.430750px;}
.y12b{bottom:758.522400px;}
.yac{bottom:758.538900px;}
.y6f{bottom:758.555400px;}
.y2f{bottom:761.227500px;}
.y1ca{bottom:764.510400px;}
.y174{bottom:770.559900px;}
.yea{bottom:771.366150px;}
.y48{bottom:773.967900px;}
.y1e6{bottom:775.010400px;}
.y90{bottom:777.322200px;}
.y10e{bottom:780.690600px;}
.y12a{bottom:781.028400px;}
.yab{bottom:781.044900px;}
.y6e{bottom:781.061400px;}
.y1a7{bottom:782.607900px;}
.yd4{bottom:792.947850px;}
.y173{bottom:793.065900px;}
.y152{bottom:795.448800px;}
.y1c9{bottom:796.010400px;}
.y47{bottom:796.473900px;}
.y8f{bottom:799.828200px;}
.y129{bottom:803.534400px;}
.yaa{bottom:803.550900px;}
.y6d{bottom:803.567400px;}
.y1e5{bottom:806.510400px;}
.y10d{bottom:810.195600px;}
.yd3{bottom:812.447850px;}
.y1a6{bottom:814.107900px;}
.y151{bottom:814.948800px;}
.y172{bottom:815.571900px;}
.y46{bottom:818.979900px;}
.y8e{bottom:822.334200px;}
.y128{bottom:826.040400px;}
.ya9{bottom:826.056900px;}
.y1c8{bottom:827.510400px;}
.y1a5{bottom:835.107900px;}
.y171{bottom:838.077900px;}
.y10c{bottom:841.230600px;}
.y45{bottom:841.485900px;}
.y8d{bottom:844.840200px;}
.y1fe{bottom:848.510400px;}
.y127{bottom:848.546400px;}
.y6c{bottom:848.562900px;}
.y1c7{bottom:859.010400px;}
.y170{bottom:860.583900px;}
.y11{bottom:868.033350px;}
.y10b{bottom:870.735600px;}
.y126{bottom:871.052400px;}
.y6b{bottom:871.068900px;}
.y1a4{bottom:878.607900px;}
.y1c6{bottom:880.010400px;}
.y16f{bottom:883.089900px;}
.y44{bottom:886.481400px;}
.y8c{bottom:889.840200px;}
.y1e4{bottom:890.510400px;}
.y10{bottom:891.433350px;}
.ya8{bottom:893.558400px;}
.y6a{bottom:893.574900px;}
.y10a{bottom:900.240600px;}
.y1fd{bottom:901.010400px;}
.y16e{bottom:905.595900px;}
.y43{bottom:908.987400px;}
.y1c5{bottom:911.510400px;}
.ya7{bottom:916.064400px;}
.y69{bottom:916.080900px;}
.y1e3{bottom:922.010400px;}
.yf{bottom:927.589350px;}
.y16d{bottom:928.101900px;}
.y109{bottom:931.275600px;}
.y42{bottom:931.493400px;}
.y1c4{bottom:932.510400px;}
.ya6{bottom:938.570400px;}
.y68{bottom:938.586900px;}
.y108{bottom:939.780600px;}
.y1e2{bottom:943.010400px;}
.y16c{bottom:950.607900px;}
.y1c3{bottom:953.510400px;}
.y41{bottom:953.999400px;}
.ye{bottom:958.639350px;}
.y107{bottom:960.780600px;}
.y8b{bottom:961.059900px;}
.ya5{bottom:961.076400px;}
.y67{bottom:961.092900px;}
.y1e1{bottom:974.510400px;}
.y40{bottom:976.505400px;}
.y8a{bottom:983.565900px;}
.yc0{bottom:983.582400px;}
.y1c2{bottom:985.010400px;}
.yd{bottom:989.689350px;}
.y106{bottom:991.815600px;}
.y1e0{bottom:995.510400px;}
.y16b{bottom:995.607900px;}
.y3f{bottom:999.011400px;}
.y1c1{bottom:1006.010400px;}
.y89{bottom:1006.071900px;}
.y66{bottom:1006.088400px;}
.y105{bottom:1012.815600px;}
.yc{bottom:1020.739350px;}
.y3e{bottom:1021.517400px;}
.y1c0{bottom:1027.010400px;}
.y88{bottom:1028.577900px;}
.y65{bottom:1028.594400px;}
.y104{bottom:1033.815600px;}
.y1fc{bottom:1037.510400px;}
.y3d{bottom:1044.023400px;}
.y103{bottom:1046.310600px;}
.y87{bottom:1051.083900px;}
.y64{bottom:1051.100400px;}
.y102{bottom:1054.815600px;}
.y1bf{bottom:1058.510400px;}
.y3c{bottom:1066.529400px;}
.y1fb{bottom:1069.010400px;}
.y86{bottom:1073.589900px;}
.y63{bottom:1073.606400px;}
.y101{bottom:1075.815600px;}
.y1df{bottom:1079.510400px;}
.y3b{bottom:1089.035400px;}
.y1be{bottom:1090.010400px;}
.y85{bottom:1096.095900px;}
.y6{bottom:1099.267350px;}
.y100{bottom:1106.850600px;}
.y1de{bottom:1111.010400px;}
.y62{bottom:1118.601900px;}
.y1bd{bottom:1121.510400px;}
.y5{bottom:1131.232500px;}
.y3a{bottom:1134.035400px;}
.y61{bottom:1141.107900px;}
.yff{bottom:1142.510400px;}
.y1{bottom:1146.411000px;}
.y3{bottom:1168.769550px;}
.y35{bottom:1185.328350px;}
.y36{bottom:1220.509800px;}
.h4{height:37.800000px;}
.h6{height:56.700000px;}
.h2{height:62.424000px;}
.h8{height:62.499482px;}
.h9{height:63.000000px;}
.h3{height:64.347750px;}
.h5{height:69.300000px;}
.ha{height:72.000000px;}
.hd{height:81.000000px;}
.hc{height:90.000000px;}
.h7{height:113.400000px;}
.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;}
.xd{left:21.259800px;}
.xe{left:52.789050px;}
.x1{left:54.000000px;}
.x5{left:57.401550px;}
.x4{left:60.612150px;}
.xf{left:106.299150px;}
.x19{left:110.932950px;}
.x12{left:115.171050px;}
.x11{left:154.096050px;}
.x2{left:155.902500px;}
.x1f{left:162.135150px;}
.x14{left:180.518850px;}
.x3{left:209.902500px;}
.xa{left:212.598450px;}
.x1a{left:214.732950px;}
.x6{left:221.456700px;}
.x7{left:223.363050px;}
.x9{left:236.359200px;}
.x8{left:239.130750px;}
.x18{left:254.017950px;}
.x20{left:271.401750px;}
.x15{left:276.908850px;}
.x17{left:283.018500px;}
.x21{left:291.771300px;}
.x22{left:296.241300px;}
.x16{left:300.748500px;}
.x1e{left:328.117950px;}
.x10{left:411.924150px;}
.x1b{left:441.502950px;}
.x1c{left:570.817950px;}
.x1d{left:684.202950px;}
.xb{left:815.527500px;}
.x23{left:822.686850px;}
.x13{left:823.804500px;}
.xc{left:824.958000px;}
@media print{
.v2{vertical-align:-17.760533pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:17.760533pt;}
.v3{vertical-align:74.666667pt;}
.ls1c{letter-spacing:-4.341333pt;}
.ls8{letter-spacing:-3.578667pt;}
.ls6{letter-spacing:-3.552000pt;}
.ls18{letter-spacing:-3.466667pt;}
.ls16{letter-spacing:-3.168000pt;}
.ls9{letter-spacing:-3.071157pt;}
.ls15{letter-spacing:-2.880000pt;}
.ls5{letter-spacing:-2.592000pt;}
.lsc{letter-spacing:-2.133333pt;}
.ls19{letter-spacing:-1.600000pt;}
.ls14{letter-spacing:-1.493333pt;}
.ls1e{letter-spacing:-1.333333pt;}
.ls1f{letter-spacing:-1.280000pt;}
.ls10{letter-spacing:-1.173333pt;}
.ls13{letter-spacing:-1.066667pt;}
.lse{letter-spacing:-0.960000pt;}
.lsf{letter-spacing:-0.800000pt;}
.lsd{letter-spacing:-0.640000pt;}
.lsb{letter-spacing:-0.586667pt;}
.ls11{letter-spacing:-0.533333pt;}
.ls17{letter-spacing:-0.528000pt;}
.ls1d{letter-spacing:-0.352000pt;}
.ls12{letter-spacing:-0.320000pt;}
.lsa{letter-spacing:-0.293333pt;}
.ls4{letter-spacing:-0.288000pt;}
.ls20{letter-spacing:-0.106667pt;}
.ls3{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.381320pt;}
.ls1a{letter-spacing:0.410667pt;}
.ls1b{letter-spacing:0.528000pt;}
.ls2{letter-spacing:0.960000pt;}
.ls1{letter-spacing:3.200000pt;}
.ls7{letter-spacing:8.524800pt;}
.ws42{word-spacing:-53.333333pt;}
.ws3e{word-spacing:-39.200000pt;}
.ws52{word-spacing:-16.192000pt;}
.ws6f{word-spacing:-15.840000pt;}
.ws1{word-spacing:-14.880000pt;}
.ws89{word-spacing:-14.773333pt;}
.ws79{word-spacing:-14.720000pt;}
.ws23{word-spacing:-14.346667pt;}
.ws88{word-spacing:-13.440000pt;}
.ws0{word-spacing:-13.392000pt;}
.ws7a{word-spacing:-13.386667pt;}
.ws4c{word-spacing:-13.280000pt;}
.ws32{word-spacing:-13.024000pt;}
.wsf{word-spacing:-12.789333pt;}
.ws1e{word-spacing:-12.640000pt;}
.wse{word-spacing:-12.533333pt;}
.ws4{word-spacing:-11.952000pt;}
.ws68{word-spacing:-11.850667pt;}
.ws78{word-spacing:-11.840000pt;}
.ws2{word-spacing:-11.808000pt;}
.ws41{word-spacing:-10.240000pt;}
.ws3{word-spacing:-9.216000pt;}
.ws10{word-spacing:-8.610133pt;}
.ws5{word-spacing:-8.400000pt;}
.ws44{word-spacing:-7.742240pt;}
.ws70{word-spacing:-4.224000pt;}
.ws71{word-spacing:-3.813333pt;}
.ws84{word-spacing:-2.666667pt;}
.ws57{word-spacing:-2.522667pt;}
.ws7b{word-spacing:-2.506667pt;}
.ws58{word-spacing:-2.464000pt;}
.ws7c{word-spacing:-2.293333pt;}
.ws80{word-spacing:-2.240000pt;}
.ws7d{word-spacing:-2.080000pt;}
.ws5e{word-spacing:-1.994667pt;}
.ws64{word-spacing:-1.936000pt;}
.ws90{word-spacing:-1.440000pt;}
.ws82{word-spacing:-1.333333pt;}
.ws15{word-spacing:-1.232000pt;}
.ws33{word-spacing:-1.173333pt;}
.wsd{word-spacing:-1.056000pt;}
.ws76{word-spacing:-0.645333pt;}
.ws87{word-spacing:-0.586667pt;}
.ws5f{word-spacing:-0.528000pt;}
.wsa{word-spacing:-0.480000pt;}
.ws59{word-spacing:-0.410667pt;}
.ws65{word-spacing:-0.352000pt;}
.ws7{word-spacing:-0.336000pt;}
.ws53{word-spacing:-0.234667pt;}
.ws6{word-spacing:0.000000pt;}
.ws8f{word-spacing:0.106667pt;}
.wsb{word-spacing:0.288000pt;}
.ws16{word-spacing:0.293333pt;}
.ws6a{word-spacing:0.352000pt;}
.ws3d{word-spacing:0.528000pt;}
.ws37{word-spacing:0.533333pt;}
.ws18{word-spacing:0.586667pt;}
.ws85{word-spacing:0.746667pt;}
.ws34{word-spacing:0.821333pt;}
.ws56{word-spacing:0.880000pt;}
.ws8b{word-spacing:0.906667pt;}
.ws6e{word-spacing:1.173333pt;}
.ws62{word-spacing:1.408000pt;}
.ws81{word-spacing:1.493333pt;}
.ws74{word-spacing:1.584000pt;}
.ws75{word-spacing:1.642667pt;}
.ws55{word-spacing:1.701333pt;}
.ws8e{word-spacing:1.920000pt;}
.ws35{word-spacing:2.346667pt;}
.ws83{word-spacing:2.666667pt;}
.ws11{word-spacing:3.071157pt;}
.ws4e{word-spacing:3.168000pt;}
.ws4d{word-spacing:3.466667pt;}
.ws6d{word-spacing:3.578667pt;}
.ws6c{word-spacing:3.637333pt;}
.ws8c{word-spacing:3.680000pt;}
.ws8d{word-spacing:3.733333pt;}
.ws73{word-spacing:3.813333pt;}
.ws72{word-spacing:3.872000pt;}
.ws86{word-spacing:3.946667pt;}
.ws3f{word-spacing:4.106667pt;}
.ws40{word-spacing:4.165333pt;}
.ws60{word-spacing:4.341333pt;}
.ws8a{word-spacing:4.373333pt;}
.ws67{word-spacing:4.458667pt;}
.ws13{word-spacing:4.517333pt;}
.ws17{word-spacing:4.634667pt;}
.ws9{word-spacing:4.800000pt;}
.ws14{word-spacing:4.810667pt;}
.ws8{word-spacing:4.848000pt;}
.ws63{word-spacing:4.928000pt;}
.ws38{word-spacing:4.986667pt;}
.ws36{word-spacing:5.120000pt;}
.ws39{word-spacing:5.221333pt;}
.ws3a{word-spacing:5.280000pt;}
.ws5b{word-spacing:5.456000pt;}
.ws5d{word-spacing:5.514667pt;}
.ws5c{word-spacing:5.573333pt;}
.ws12{word-spacing:6.042667pt;}
.ws61{word-spacing:6.277333pt;}
.ws7e{word-spacing:6.346667pt;}
.ws7f{word-spacing:6.453333pt;}
.ws69{word-spacing:6.688000pt;}
.ws5a{word-spacing:6.746667pt;}
.ws43{word-spacing:6.981333pt;}
.ws51{word-spacing:7.626667pt;}
.ws50{word-spacing:7.685333pt;}
.ws77{word-spacing:8.154667pt;}
.ws4f{word-spacing:8.389333pt;}
.ws6b{word-spacing:8.565333pt;}
.ws66{word-spacing:9.093333pt;}
.ws3c{word-spacing:9.680000pt;}
.ws3b{word-spacing:9.797333pt;}
.ws54{word-spacing:10.736000pt;}
.wsc{word-spacing:12.624000pt;}
.ws19{word-spacing:29.333333pt;}
.ws4b{word-spacing:38.026667pt;}
.ws49{word-spacing:86.080000pt;}
.ws46{word-spacing:112.000000pt;}
.ws47{word-spacing:120.480000pt;}
.ws45{word-spacing:166.613333pt;}
.ws27{word-spacing:314.666667pt;}
.ws1a{word-spacing:344.373333pt;}
.ws1c{word-spacing:364.960000pt;}
.ws1d{word-spacing:367.093333pt;}
.ws1b{word-spacing:368.480000pt;}
.ws30{word-spacing:391.733333pt;}
.ws31{word-spacing:393.760000pt;}
.ws20{word-spacing:393.920000pt;}
.ws2f{word-spacing:394.240000pt;}
.ws2c{word-spacing:396.853333pt;}
.ws2b{word-spacing:397.760000pt;}
.ws2d{word-spacing:399.360000pt;}
.ws22{word-spacing:400.586667pt;}
.ws21{word-spacing:400.800000pt;}
.ws2a{word-spacing:413.493333pt;}
.ws26{word-spacing:415.466667pt;}
.ws25{word-spacing:418.186667pt;}
.ws29{word-spacing:419.360000pt;}
.ws28{word-spacing:419.840000pt;}
.ws24{word-spacing:419.946667pt;}
.ws1f{word-spacing:551.466667pt;}
.ws2e{word-spacing:595.253333pt;}
.ws4a{word-spacing:943.733333pt;}
.ws48{word-spacing:1062.560000pt;}
._1a{margin-left:-21.600000pt;}
._b{margin-left:-8.524800pt;}
._6{margin-left:-6.345380pt;}
._4{margin-left:-5.042760pt;}
._5{margin-left:-3.744000pt;}
._2{margin-left:-2.528000pt;}
._0{margin-left:-1.334620pt;}
._1{width:1.494774pt;}
._10{width:2.437773pt;}
._3{width:3.403200pt;}
._a{width:4.776000pt;}
._9{width:5.933020pt;}
._8{width:7.584000pt;}
._d{width:9.351467pt;}
._e{width:10.242667pt;}
._11{width:11.760533pt;}
._7{width:13.104000pt;}
._f{width:14.314667pt;}
._15{width:15.364173pt;}
._1b{width:25.015467pt;}
._12{width:26.304000pt;}
._c{width:29.333333pt;}
._18{width:86.346667pt;}
._17{width:144.448000pt;}
._19{width:188.803860pt;}
._16{width:241.386667pt;}
._14{width:318.243860pt;}
._13{width:444.181333pt;}
.fsb{font-size:31.093333pt;}
.fs1{font-size:32.000000pt;}
.fs3{font-size:48.000000pt;}
.fs6{font-size:53.333333pt;}
.fs2{font-size:58.666667pt;}
.fs5{font-size:69.333333pt;}
.fs7{font-size:74.666667pt;}
.fs0{font-size:76.264000pt;}
.fs8{font-size:85.333333pt;}
.fs4{font-size:96.000000pt;}
.fsa{font-size:106.666667pt;}
.fs9{font-size:153.557867pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:1.570933pt;}
.y34{bottom:13.955733pt;}
.y37{bottom:15.985200pt;}
.y38{bottom:27.212533pt;}
.y33{bottom:32.622400pt;}
.y2{bottom:38.177600pt;}
.yb{bottom:47.999467pt;}
.y39{bottom:49.145200pt;}
.y32{bottom:51.289067pt;}
.ya{bottom:62.399467pt;}
.y31{bottom:69.955733pt;}
.y9{bottom:76.799467pt;}
.y8{bottom:91.199467pt;}
.y7{bottom:109.379467pt;}
.y2e{bottom:146.390667pt;}
.y125{bottom:151.181200pt;}
.y84{bottom:151.598133pt;}
.ya4{bottom:154.281333pt;}
.y1bc{bottom:154.318133pt;}
.y17b{bottom:154.445867pt;}
.y140{bottom:155.586133pt;}
.y1dd{bottom:156.896000pt;}
.y18b{bottom:159.620800pt;}
.y1a3{bottom:160.876800pt;}
.yd2{bottom:160.908800pt;}
.y189{bottom:164.968800pt;}
.y2d{bottom:165.062667pt;}
.y1fa{bottom:166.231467pt;}
.y60{bottom:167.862133pt;}
.ybf{bottom:168.771200pt;}
.y83{bottom:171.603467pt;}
.ya3{bottom:174.286667pt;}
.y17a{bottom:174.451200pt;}
.y1dc{bottom:175.562667pt;}
.y13f{bottom:175.591467pt;}
.y18a{bottom:176.954133pt;}
.y2c{bottom:179.726667pt;}
.y1a2{bottom:180.882133pt;}
.yd1{bottom:180.914133pt;}
.y1bb{bottom:182.318133pt;}
.ye9{bottom:184.078667pt;}
.y188{bottom:184.974133pt;}
.y5f{bottom:187.867467pt;}
.ybe{bottom:188.776533pt;}
.y82{bottom:191.608800pt;}
.y1db{bottom:194.229333pt;}
.y1f9{bottom:194.231467pt;}
.y2b{bottom:194.390667pt;}
.y179{bottom:194.456533pt;}
.y13e{bottom:195.596800pt;}
.y16a{bottom:195.604400pt;}
.y1a1{bottom:200.887467pt;}
.yd0{bottom:200.919467pt;}
.y20b{bottom:203.564800pt;}
.ye8{bottom:204.084000pt;}
.y187{bottom:204.979467pt;}
.y124{bottom:205.948800pt;}
.y5e{bottom:207.872800pt;}
.ybd{bottom:208.781867pt;}
.y2a{bottom:209.054667pt;}
.y1ba{bottom:210.318133pt;}
.y81{bottom:211.614133pt;}
.y1f8{bottom:212.898133pt;}
.ya2{bottom:214.286667pt;}
.y178{bottom:214.461867pt;}
.y13d{bottom:215.602133pt;}
.y169{bottom:215.609733pt;}
.y1a0{bottom:220.892800pt;}
.ycf{bottom:220.924800pt;}
.y1da{bottom:222.229333pt;}
.y20a{bottom:222.231467pt;}
.y29{bottom:223.718667pt;}
.ye7{bottom:224.089333pt;}
.y186{bottom:224.984800pt;}
.y123{bottom:225.954133pt;}
.y5d{bottom:227.878133pt;}
.ybc{bottom:228.787200pt;}
.y1b9{bottom:228.984800pt;}
.y1f7{bottom:231.564800pt;}
.y80{bottom:231.619467pt;}
.y150{bottom:234.154133pt;}
.y177{bottom:234.467200pt;}
.y168{bottom:235.615067pt;}
.yfe{bottom:236.900133pt;}
.y28{bottom:238.382667pt;}
.y19f{bottom:240.898133pt;}
.yce{bottom:240.930133pt;}
.ye6{bottom:244.094667pt;}
.y122{bottom:245.959467pt;}
.y5c{bottom:247.883467pt;}
.y1d9{bottom:250.229333pt;}
.y209{bottom:250.231467pt;}
.y7f{bottom:251.624800pt;}
.y27{bottom:253.046667pt;}
.y14f{bottom:254.159467pt;}
.y13c{bottom:255.598133pt;}
.y167{bottom:255.620400pt;}
.yfd{bottom:256.905467pt;}
.y1b8{bottom:256.984800pt;}
.y1f6{bottom:259.564800pt;}
.ycd{bottom:260.935467pt;}
.ye5{bottom:264.100000pt;}
.y185{bottom:264.984800pt;}
.y121{bottom:265.964800pt;}
.ybb{bottom:268.783200pt;}
.y1d8{bottom:268.896000pt;}
.y7e{bottom:271.630133pt;}
.y14e{bottom:274.164800pt;}
.y13b{bottom:275.603467pt;}
.y166{bottom:275.625733pt;}
.y1b7{bottom:275.651467pt;}
.yfc{bottom:276.910800pt;}
.y1f5{bottom:278.231467pt;}
.y19e{bottom:280.894133pt;}
.ycc{bottom:280.940800pt;}
.y26{bottom:283.046667pt;}
.ye4{bottom:284.105333pt;}
.y176{bottom:285.805867pt;}
.ya1{bottom:287.566667pt;}
.y5b{bottom:287.879467pt;}
.yba{bottom:288.788533pt;}
.y7d{bottom:291.635467pt;}
.y14d{bottom:294.170133pt;}
.y13a{bottom:295.608800pt;}
.y165{bottom:295.631067pt;}
.y1d7{bottom:296.896000pt;}
.yfb{bottom:296.916133pt;}
.y19d{bottom:300.899467pt;}
.y25{bottom:301.718667pt;}
.y175{bottom:303.139200pt;}
.y1b6{bottom:303.651467pt;}
.ye3{bottom:304.110667pt;}
.y120{bottom:305.960800pt;}
.y1f4{bottom:306.231467pt;}
.ya0{bottom:307.572000pt;}
.y5a{bottom:307.884800pt;}
.yb9{bottom:308.793867pt;}
.y7c{bottom:311.640800pt;}
.y14c{bottom:314.175467pt;}
.y139{bottom:315.614133pt;}
.y164{bottom:315.636400pt;}
.yfa{bottom:316.921467pt;}
.y24{bottom:317.054667pt;}
.y19c{bottom:320.904800pt;}
.ycb{bottom:320.936800pt;}
.y1b5{bottom:322.318133pt;}
.ye2{bottom:324.116000pt;}
.y1d6{bottom:324.896000pt;}
.y208{bottom:324.898133pt;}
.y11f{bottom:325.966133pt;}
.y9f{bottom:327.577333pt;}
.y59{bottom:327.890133pt;}
.yb8{bottom:328.799200pt;}
.y7b{bottom:331.646133pt;}
.y23{bottom:332.390667pt;}
.y14b{bottom:334.180800pt;}
.y184{bottom:334.195467pt;}
.y1f3{bottom:334.231467pt;}
.y138{bottom:335.619467pt;}
.y163{bottom:335.641733pt;}
.yf9{bottom:336.926800pt;}
.y19b{bottom:340.910133pt;}
.yca{bottom:340.942133pt;}
.y1d5{bottom:343.562667pt;}
.ye1{bottom:344.121333pt;}
.y11e{bottom:345.971467pt;}
.y9e{bottom:347.582667pt;}
.y22{bottom:347.726667pt;}
.y58{bottom:347.895467pt;}
.yb7{bottom:348.804533pt;}
.y1b4{bottom:350.318133pt;}
.y7a{bottom:351.651467pt;}
.y207{bottom:352.898133pt;}
.y14a{bottom:354.186133pt;}
.y183{bottom:354.200800pt;}
.y137{bottom:355.624800pt;}
.y162{bottom:355.647067pt;}
.yf8{bottom:356.932133pt;}
.y19a{bottom:360.915467pt;}
.yc9{bottom:360.947467pt;}
.y1f2{bottom:362.231467pt;}
.y21{bottom:363.062667pt;}
.ye0{bottom:364.126667pt;}
.y11d{bottom:365.976800pt;}
.y9d{bottom:367.588000pt;}
.y57{bottom:367.900800pt;}
.y1b3{bottom:368.984800pt;}
.y1d4{bottom:371.562667pt;}
.y206{bottom:371.564800pt;}
.y149{bottom:374.191467pt;}
.y182{bottom:374.206133pt;}
.y136{bottom:375.630133pt;}
.y161{bottom:375.652400pt;}
.yf7{bottom:376.937467pt;}
.y20{bottom:378.398667pt;}
.y1f1{bottom:380.898133pt;}
.y199{bottom:380.920800pt;}
.yc8{bottom:380.952800pt;}
.ydf{bottom:384.132000pt;}
.y11c{bottom:385.982133pt;}
.y9c{bottom:387.593333pt;}
.y56{bottom:387.906133pt;}
.y1d3{bottom:390.229333pt;}
.y79{bottom:391.651467pt;}
.y1f{bottom:393.734667pt;}
.y135{bottom:395.635467pt;}
.y160{bottom:395.657733pt;}
.yb6{bottom:396.687333pt;}
.yf6{bottom:396.942800pt;}
.y1b2{bottom:396.984800pt;}
.y205{bottom:399.564800pt;}
.y198{bottom:400.926133pt;}
.yc7{bottom:400.958133pt;}
.yde{bottom:404.137333pt;}
.y11b{bottom:405.987467pt;}
.y9b{bottom:407.598667pt;}
.y55{bottom:407.911467pt;}
.y1f0{bottom:408.898133pt;}
.y1e{bottom:409.070667pt;}
.y148{bottom:414.187467pt;}
.y181{bottom:414.202133pt;}
.y134{bottom:415.640800pt;}
.y1b1{bottom:415.651467pt;}
.y15f{bottom:415.663067pt;}
.yf5{bottom:416.948133pt;}
.y1d2{bottom:418.229333pt;}
.y204{bottom:418.231467pt;}
.y197{bottom:420.931467pt;}
.yc6{bottom:420.963467pt;}
.ydd{bottom:424.142667pt;}
.yb5{bottom:424.274000pt;}
.y11a{bottom:425.992800pt;}
.y9a{bottom:427.604000pt;}
.y54{bottom:427.916800pt;}
.y147{bottom:434.192800pt;}
.y180{bottom:434.207467pt;}
.y133{bottom:435.646133pt;}
.y15e{bottom:435.668400pt;}
.y1d1{bottom:436.896000pt;}
.y1ef{bottom:436.898133pt;}
.yf4{bottom:436.953467pt;}
.y196{bottom:440.936800pt;}
.yc5{bottom:440.968800pt;}
.y78{bottom:440.984800pt;}
.y1b0{bottom:443.651467pt;}
.ydc{bottom:444.148000pt;}
.y119{bottom:445.998133pt;}
.y203{bottom:446.231467pt;}
.y99{bottom:447.609333pt;}
.y53{bottom:447.922133pt;}
.yb4{bottom:451.860667pt;}
.y146{bottom:454.198133pt;}
.y17f{bottom:454.212800pt;}
.y1d0{bottom:455.562667pt;}
.y132{bottom:455.651467pt;}
.y15d{bottom:455.673733pt;}
.yf3{bottom:456.958800pt;}
.y1d{bottom:457.309333pt;}
.y195{bottom:460.942133pt;}
.yc4{bottom:460.974133pt;}
.ydb{bottom:464.153333pt;}
.y1ee{bottom:464.898133pt;}
.y118{bottom:466.003467pt;}
.y98{bottom:467.614667pt;}
.y1af{bottom:471.651467pt;}
.y145{bottom:474.203467pt;}
.y17e{bottom:474.218133pt;}
.y15c{bottom:475.679067pt;}
.y1c{bottom:475.976000pt;}
.yf2{bottom:476.964133pt;}
.yb3{bottom:479.447333pt;}
.y194{bottom:480.947467pt;}
.yc3{bottom:480.979467pt;}
.y1cf{bottom:483.562667pt;}
.y117{bottom:486.008800pt;}
.y97{bottom:487.620000pt;}
.y52{bottom:487.918133pt;}
.y1ed{bottom:492.898133pt;}
.y144{bottom:494.208800pt;}
.y17d{bottom:494.223467pt;}
.y1b{bottom:494.642667pt;}
.y131{bottom:495.656800pt;}
.y15b{bottom:495.684400pt;}
.y1ae{bottom:499.651467pt;}
.y193{bottom:500.952800pt;}
.yc2{bottom:500.984800pt;}
.yda{bottom:504.149333pt;}
.y116{bottom:506.014133pt;}
.yb2{bottom:507.034000pt;}
.y51{bottom:507.923467pt;}
.y1ec{bottom:511.564800pt;}
.y1a{bottom:513.309333pt;}
.y143{bottom:514.214133pt;}
.y77{bottom:514.228800pt;}
.y15a{bottom:515.689733pt;}
.yf1{bottom:516.960133pt;}
.y192{bottom:520.958133pt;}
.y1ce{bottom:522.229333pt;}
.yd9{bottom:524.154667pt;}
.y130{bottom:524.984800pt;}
.y115{bottom:526.019467pt;}
.y96{bottom:527.620000pt;}
.y1ad{bottom:527.651467pt;}
.y50{bottom:527.928800pt;}
.y202{bottom:530.231467pt;}
.y142{bottom:534.219467pt;}
.y76{bottom:534.234133pt;}
.yb1{bottom:534.620667pt;}
.y159{bottom:535.695067pt;}
.yf0{bottom:536.965467pt;}
.y19{bottom:537.735067pt;}
.y1eb{bottom:539.564800pt;}
.y191{bottom:540.963467pt;}
.yc1{bottom:540.984800pt;}
.yd8{bottom:544.160000pt;}
.y114{bottom:546.024800pt;}
.y4f{bottom:547.934133pt;}
.y141{bottom:554.224800pt;}
.y75{bottom:554.239467pt;}
.y1ac{bottom:555.651467pt;}
.y158{bottom:555.700400pt;}
.y18{bottom:556.401733pt;}
.yef{bottom:556.970800pt;}
.y1ea{bottom:558.231467pt;}
.y190{bottom:560.968800pt;}
.yd7{bottom:564.165333pt;}
.y113{bottom:566.030133pt;}
.yb0{bottom:566.318133pt;}
.y4e{bottom:567.939467pt;}
.y74{bottom:574.244800pt;}
.y17{bottom:575.068400pt;}
.y157{bottom:575.705733pt;}
.y1e9{bottom:576.898133pt;}
.yee{bottom:576.976133pt;}
.y18f{bottom:580.974133pt;}
.y1ab{bottom:583.651467pt;}
.yd6{bottom:584.170667pt;}
.y201{bottom:586.231467pt;}
.y4d{bottom:587.944800pt;}
.yaf{bottom:588.984800pt;}
.y95{bottom:590.926400pt;}
.y16{bottom:593.735067pt;}
.y12f{bottom:594.220800pt;}
.y73{bottom:594.250133pt;}
.y156{bottom:595.711067pt;}
.yed{bottom:596.981467pt;}
.y18e{bottom:600.979467pt;}
.y1cd{bottom:604.898133pt;}
.y4c{bottom:607.950133pt;}
.y94{bottom:610.931733pt;}
.y1aa{bottom:611.651467pt;}
.y112{bottom:613.907200pt;}
.y12e{bottom:614.226133pt;}
.y17c{bottom:614.240800pt;}
.y72{bottom:614.255467pt;}
.y155{bottom:615.716400pt;}
.yec{bottom:616.986800pt;}
.y15{bottom:618.160667pt;}
.y18d{bottom:620.984800pt;}
.y1cc{bottom:623.564800pt;}
.yd5{bottom:624.170667pt;}
.y4b{bottom:627.955467pt;}
.y93{bottom:630.937067pt;}
.y200{bottom:632.898133pt;}
.y12d{bottom:634.231467pt;}
.yae{bottom:634.246133pt;}
.y71{bottom:634.260800pt;}
.y154{bottom:635.721733pt;}
.y14{bottom:636.827333pt;}
.y1a9{bottom:639.651467pt;}
.y111{bottom:640.133867pt;}
.y1e8{bottom:642.231467pt;}
.y110{bottom:647.693867pt;}
.y4a{bottom:647.960800pt;}
.y92{bottom:650.942400pt;}
.y1cb{bottom:651.564800pt;}
.y12c{bottom:654.236800pt;}
.yad{bottom:654.251467pt;}
.y70{bottom:654.266133pt;}
.y13{bottom:655.494000pt;}
.y153{bottom:655.727067pt;}
.y30{bottom:659.318667pt;}
.y1e7{bottom:660.898133pt;}
.y18c{bottom:660.984800pt;}
.y10f{bottom:666.360533pt;}
.y1a8{bottom:667.651467pt;}
.y49{bottom:667.966133pt;}
.yeb{bottom:668.325467pt;}
.y1ff{bottom:670.231467pt;}
.y91{bottom:670.947733pt;}
.y12{bottom:674.160667pt;}
.y12b{bottom:674.242133pt;}
.yac{bottom:674.256800pt;}
.y6f{bottom:674.271467pt;}
.y2f{bottom:676.646667pt;}
.y1ca{bottom:679.564800pt;}
.y174{bottom:684.942133pt;}
.yea{bottom:685.658800pt;}
.y48{bottom:687.971467pt;}
.y1e6{bottom:688.898133pt;}
.y90{bottom:690.953067pt;}
.y10e{bottom:693.947200pt;}
.y12a{bottom:694.247467pt;}
.yab{bottom:694.262133pt;}
.y6e{bottom:694.276800pt;}
.y1a7{bottom:695.651467pt;}
.yd4{bottom:704.842533pt;}
.y173{bottom:704.947467pt;}
.y152{bottom:707.065600pt;}
.y1c9{bottom:707.564800pt;}
.y47{bottom:707.976800pt;}
.y8f{bottom:710.958400pt;}
.y129{bottom:714.252800pt;}
.yaa{bottom:714.267467pt;}
.y6d{bottom:714.282133pt;}
.y1e5{bottom:716.898133pt;}
.y10d{bottom:720.173867pt;}
.yd3{bottom:722.175867pt;}
.y1a6{bottom:723.651467pt;}
.y151{bottom:724.398933pt;}
.y172{bottom:724.952800pt;}
.y46{bottom:727.982133pt;}
.y8e{bottom:730.963733pt;}
.y128{bottom:734.258133pt;}
.ya9{bottom:734.272800pt;}
.y1c8{bottom:735.564800pt;}
.y1a5{bottom:742.318133pt;}
.y171{bottom:744.958133pt;}
.y10c{bottom:747.760533pt;}
.y45{bottom:747.987467pt;}
.y8d{bottom:750.969067pt;}
.y1fe{bottom:754.231467pt;}
.y127{bottom:754.263467pt;}
.y6c{bottom:754.278133pt;}
.y1c7{bottom:763.564800pt;}
.y170{bottom:764.963467pt;}
.y11{bottom:771.585200pt;}
.y10b{bottom:773.987200pt;}
.y126{bottom:774.268800pt;}
.y6b{bottom:774.283467pt;}
.y1a4{bottom:780.984800pt;}
.y1c6{bottom:782.231467pt;}
.y16f{bottom:784.968800pt;}
.y44{bottom:787.983467pt;}
.y8c{bottom:790.969067pt;}
.y1e4{bottom:791.564800pt;}
.y10{bottom:792.385200pt;}
.ya8{bottom:794.274133pt;}
.y6a{bottom:794.288800pt;}
.y10a{bottom:800.213867pt;}
.y1fd{bottom:800.898133pt;}
.y16e{bottom:804.974133pt;}
.y43{bottom:807.988800pt;}
.y1c5{bottom:810.231467pt;}
.ya7{bottom:814.279467pt;}
.y69{bottom:814.294133pt;}
.y1e3{bottom:819.564800pt;}
.yf{bottom:824.523867pt;}
.y16d{bottom:824.979467pt;}
.y109{bottom:827.800533pt;}
.y42{bottom:827.994133pt;}
.y1c4{bottom:828.898133pt;}
.ya6{bottom:834.284800pt;}
.y68{bottom:834.299467pt;}
.y108{bottom:835.360533pt;}
.y1e2{bottom:838.231467pt;}
.y16c{bottom:844.984800pt;}
.y1c3{bottom:847.564800pt;}
.y41{bottom:847.999467pt;}
.ye{bottom:852.123867pt;}
.y107{bottom:854.027200pt;}
.y8b{bottom:854.275467pt;}
.ya5{bottom:854.290133pt;}
.y67{bottom:854.304800pt;}
.y1e1{bottom:866.231467pt;}
.y40{bottom:868.004800pt;}
.y8a{bottom:874.280800pt;}
.yc0{bottom:874.295467pt;}
.y1c2{bottom:875.564800pt;}
.yd{bottom:879.723867pt;}
.y106{bottom:881.613867pt;}
.y1e0{bottom:884.898133pt;}
.y16b{bottom:884.984800pt;}
.y3f{bottom:888.010133pt;}
.y1c1{bottom:894.231467pt;}
.y89{bottom:894.286133pt;}
.y66{bottom:894.300800pt;}
.y105{bottom:900.280533pt;}
.yc{bottom:907.323867pt;}
.y3e{bottom:908.015467pt;}
.y1c0{bottom:912.898133pt;}
.y88{bottom:914.291467pt;}
.y65{bottom:914.306133pt;}
.y104{bottom:918.947200pt;}
.y1fc{bottom:922.231467pt;}
.y3d{bottom:928.020800pt;}
.y103{bottom:930.053867pt;}
.y87{bottom:934.296800pt;}
.y64{bottom:934.311467pt;}
.y102{bottom:937.613867pt;}
.y1bf{bottom:940.898133pt;}
.y3c{bottom:948.026133pt;}
.y1fb{bottom:950.231467pt;}
.y86{bottom:954.302133pt;}
.y63{bottom:954.316800pt;}
.y101{bottom:956.280533pt;}
.y1df{bottom:959.564800pt;}
.y3b{bottom:968.031467pt;}
.y1be{bottom:968.898133pt;}
.y85{bottom:974.307467pt;}
.y6{bottom:977.126533pt;}
.y100{bottom:983.867200pt;}
.y1de{bottom:987.564800pt;}
.y62{bottom:994.312800pt;}
.y1bd{bottom:996.898133pt;}
.y5{bottom:1005.540000pt;}
.y3a{bottom:1008.031467pt;}
.y61{bottom:1014.318133pt;}
.yff{bottom:1015.564800pt;}
.y1{bottom:1019.032000pt;}
.y3{bottom:1038.906267pt;}
.y35{bottom:1053.625200pt;}
.y36{bottom:1084.897600pt;}
.h4{height:33.600000pt;}
.h6{height:50.400000pt;}
.h2{height:55.488000pt;}
.h8{height:55.555095pt;}
.h9{height:56.000000pt;}
.h3{height:57.198000pt;}
.h5{height:61.600000pt;}
.ha{height:64.000000pt;}
.hd{height:72.000000pt;}
.hc{height:80.000000pt;}
.h7{height:100.800000pt;}
.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;}
.xd{left:18.897600pt;}
.xe{left:46.923600pt;}
.x1{left:48.000000pt;}
.x5{left:51.023600pt;}
.x4{left:53.877467pt;}
.xf{left:94.488133pt;}
.x19{left:98.607067pt;}
.x12{left:102.374267pt;}
.x11{left:136.974267pt;}
.x2{left:138.580000pt;}
.x1f{left:144.120133pt;}
.x14{left:160.461200pt;}
.x3{left:186.580000pt;}
.xa{left:188.976400pt;}
.x1a{left:190.873733pt;}
.x6{left:196.850400pt;}
.x7{left:198.544933pt;}
.x9{left:210.097067pt;}
.x8{left:212.560667pt;}
.x18{left:225.793733pt;}
.x20{left:241.246000pt;}
.x15{left:246.141200pt;}
.x17{left:251.572000pt;}
.x21{left:259.352267pt;}
.x22{left:263.325600pt;}
.x16{left:267.332000pt;}
.x1e{left:291.660400pt;}
.x10{left:366.154800pt;}
.x1b{left:392.447067pt;}
.x1c{left:507.393733pt;}
.x1d{left:608.180400pt;}
.xb{left:724.913333pt;}
.x23{left:731.277200pt;}
.x13{left:732.270667pt;}
.xc{left:733.296000pt;}
}




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