
    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_a0c0456caf06a5c5c7f01e7b.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.002930;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_e22eff774dcc2271dc68e097.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.039551;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_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.432129;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_a58f81a6ba1107bdd252eff0.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_f997029f9d9d3a24b2723d20.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.936523;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_5d126beb2964d9f34725e915.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.878906;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_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.432129;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_ce526a9d22ed6a30106be9ae.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.862793;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_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_44a11a83579c28cd11a487c6.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.703613;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_4c04bbe477875bb639d7b0e3.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_f389403560025c5644ae758d.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.709961;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_d1aee50b655c96821ea0d72e.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.039551;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_7585a3f0088b7112ff8c7b5c.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_1a791642cb37e89686da11d0.woff2')format("woff");}.fff{font-family:fff;line-height:0.871094;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.249150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249150,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249732,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249732,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249732,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.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);}
.v1{vertical-align:-23.760000px;}
.v3{vertical-align:-18.000000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:18.000000px;}
.ls14{letter-spacing:-1.368000px;}
.lsb{letter-spacing:-0.864000px;}
.ls21{letter-spacing:-0.792000px;}
.ls7{letter-spacing:-0.720000px;}
.ls12{letter-spacing:-0.648000px;}
.ls11{letter-spacing:-0.576000px;}
.lsd{letter-spacing:-0.504000px;}
.ls9{letter-spacing:-0.432000px;}
.ls20{letter-spacing:-0.396000px;}
.lsa{letter-spacing:-0.360000px;}
.ls28{letter-spacing:-0.292200px;}
.ls24{letter-spacing:-0.252000px;}
.ls18{letter-spacing:-0.216000px;}
.ls26{letter-spacing:-0.178800px;}
.ls4{letter-spacing:-0.144000px;}
.lsc{letter-spacing:-0.072000px;}
.ls1{letter-spacing:0.000000px;}
.ls1e{letter-spacing:0.036000px;}
.lsf{letter-spacing:0.072000px;}
.ls1a{letter-spacing:0.126600px;}
.ls1b{letter-spacing:0.132600px;}
.ls16{letter-spacing:0.144000px;}
.ls13{letter-spacing:0.162000px;}
.ls29{letter-spacing:0.186600px;}
.ls5{letter-spacing:0.216000px;}
.ls17{letter-spacing:0.256320px;}
.ls6{letter-spacing:0.288000px;}
.ls19{letter-spacing:0.313800px;}
.ls22{letter-spacing:0.324000px;}
.ls8{letter-spacing:0.360000px;}
.ls1c{letter-spacing:0.393600px;}
.ls27{letter-spacing:0.396000px;}
.ls15{letter-spacing:0.906000px;}
.ls2b{letter-spacing:1.466211px;}
.ls2a{letter-spacing:54.144000px;}
.ls1f{letter-spacing:54.864000px;}
.ls23{letter-spacing:62.136000px;}
.ls3{letter-spacing:116.069760px;}
.ls1d{letter-spacing:125.472000px;}
.ls25{letter-spacing:196.104000px;}
.ls2{letter-spacing:830.729280px;}
.ls0{letter-spacing:842.538720px;}
.ls10{letter-spacing:844.140000px;}
.lse{letter-spacing:847.884000px;}
.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;}
}
.ws14{word-spacing:-72.000000px;}
.ws1{word-spacing:-58.104000px;}
.ws1a{word-spacing:-29.448000px;}
.ws18{word-spacing:-29.340000px;}
.ws10{word-spacing:-29.088000px;}
.ws16{word-spacing:-28.800000px;}
.ws12{word-spacing:-28.656000px;}
.ws1b{word-spacing:-19.436044px;}
.ws5{word-spacing:-16.632000px;}
.ws3{word-spacing:-16.488000px;}
.ws13{word-spacing:-16.416000px;}
.ws9{word-spacing:-16.344000px;}
.ws4{word-spacing:-16.272000px;}
.ws8{word-spacing:-16.200000px;}
.ws2{word-spacing:-16.128000px;}
.wsf{word-spacing:-16.056000px;}
.ws7{word-spacing:-15.912000px;}
.ws6{word-spacing:-15.840000px;}
.ws11{word-spacing:-15.768000px;}
.ws17{word-spacing:-15.696000px;}
.ws19{word-spacing:-15.480000px;}
.wsd{word-spacing:-15.284040px;}
.wsc{word-spacing:-14.754240px;}
.ws15{word-spacing:-13.505760px;}
.wsa{word-spacing:-12.366000px;}
.wsb{word-spacing:-12.204000px;}
.wse{word-spacing:-0.041760px;}
.ws0{word-spacing:0.000000px;}
._6{margin-left:-15.468000px;}
._2b{margin-left:-13.702080px;}
._7{margin-left:-8.628000px;}
._29{margin-left:-7.488000px;}
._2a{margin-left:-5.868000px;}
._8{margin-left:-4.812000px;}
._5{margin-left:-3.228000px;}
._14{margin-left:-2.108160px;}
._2{margin-left:-1.059840px;}
._0{width:1.321920px;}
._1{width:2.564160px;}
._3{width:3.843840px;}
._c{width:5.256960px;}
._12{width:6.600000px;}
._e{width:8.568000px;}
._d{width:9.720000px;}
._f{width:11.256000px;}
._17{width:13.248000px;}
._1c{width:14.350080px;}
._b{width:18.144000px;}
._a{width:19.152000px;}
._13{width:20.376000px;}
._1e{width:21.936000px;}
._23{width:23.460000px;}
._15{width:24.624000px;}
._16{width:25.932000px;}
._1f{width:27.188160px;}
._2c{width:28.309920px;}
._11{width:29.603520px;}
._10{width:30.888000px;}
._18{width:32.628960px;}
._19{width:33.735600px;}
._1a{width:35.928000px;}
._1b{width:37.700160px;}
._21{width:38.880000px;}
._20{width:40.104000px;}
._28{width:46.368000px;}
._27{width:47.520000px;}
._24{width:49.536000px;}
._25{width:50.582400px;}
._1d{width:131.856000px;}
._2d{width:159.840000px;}
._22{width:196.104000px;}
._9{width:468.372000px;}
._2e{width:697.496160px;}
._4{width:846.006240px;}
._26{width:847.884000px;}
._2f{width:1657.376160px;}
.fca{color:rgb(255,0,0);}
.fc9{color:rgb(112,159,219);}
.fc8{color:rgb(55,86,35);}
.fc7{color:rgb(31,73,125);}
.fc6{color:rgb(32,55,100);}
.fc2{color:transparent;}
.fc1{color:rgb(0,40,85);}
.fcb{color:rgb(255,255,255);}
.fc5{color:rgb(64,64,64);}
.fc4{color:rgb(89,89,89);}
.fc3{color:rgb(0,0,0);}
.fc0{color:rgb(38,38,38);}
.fsb{font-size:38.880000px;}
.fs7{font-size:41.760000px;}
.fs6{font-size:48.240000px;}
.fsa{font-size:54.000000px;}
.fs8{font-size:59.760000px;}
.fs3{font-size:66.240000px;}
.fs10{font-size:66.484254px;}
.fs0{font-size:72.000000px;}
.fs11{font-size:72.252953px;}
.fse{font-size:72.506858px;}
.fs2{font-size:77.760000px;}
.fsd{font-size:84.240000px;}
.fsc{font-size:108.000000px;}
.fs4{font-size:120.240000px;}
.fs9{font-size:144.000000px;}
.fsf{font-size:145.158440px;}
.fs5{font-size:216.000000px;}
.fs1{font-size:288.000000px;}
.y232{bottom:-9.443239px;}
.y0{bottom:0.000000px;}
.ya8{bottom:3.600000px;}
.ydb{bottom:4.500000px;}
.ya2{bottom:5.040000px;}
.yae{bottom:5.220000px;}
.yd3{bottom:5.400000px;}
.ya3{bottom:11.160000px;}
.y23a{bottom:11.176854px;}
.yac{bottom:11.340000px;}
.yea{bottom:14.220000px;}
.yb3{bottom:14.580000px;}
.yaa{bottom:14.760000px;}
.yb8{bottom:19.980000px;}
.ya7{bottom:20.160000px;}
.ya5{bottom:21.420000px;}
.y231{bottom:21.781775px;}
.yee{bottom:24.300000px;}
.ye5{bottom:24.345000px;}
.yda{bottom:25.200000px;}
.yb2{bottom:30.960000px;}
.ya9{bottom:31.140000px;}
.yd5{bottom:34.380000px;}
.ye3{bottom:34.425000px;}
.yd7{bottom:34.920000px;}
.y239{bottom:36.090422px;}
.yb7{bottom:36.540000px;}
.yb4{bottom:37.800000px;}
.ya6{bottom:37.980000px;}
.yed{bottom:44.460000px;}
.ye4{bottom:44.505000px;}
.yf0{bottom:45.180000px;}
.yd9{bottom:45.360000px;}
.ye2{bottom:45.405000px;}
.yb1{bottom:47.520000px;}
.yb6{bottom:53.100000px;}
.y22f{bottom:53.130389px;}
.ye9{bottom:54.540000px;}
.y46{bottom:57.780000px;}
.y2{bottom:57.960000px;}
.y238{bottom:61.003990px;}
.yb0{bottom:64.080000px;}
.yd8{bottom:65.340000px;}
.yf2{bottom:65.520000px;}
.ye1{bottom:65.565000px;}
.yb5{bottom:70.740000px;}
.ye8{bottom:74.700000px;}
.y45{bottom:79.776000px;}
.y1{bottom:79.956000px;}
.yf1{bottom:85.680000px;}
.ye0{bottom:85.725000px;}
.y237{bottom:85.881504px;}
.ye7{bottom:94.860000px;}
.ydf{bottom:105.885000px;}
.y6c{bottom:110.196000px;}
.y236{bottom:110.795072px;}
.y1ab{bottom:112.896000px;}
.y139{bottom:114.516000px;}
.y1cd{bottom:114.696000px;}
.y16d{bottom:117.216000px;}
.y22d{bottom:120.276000px;}
.y233{bottom:120.365957px;}
.y234{bottom:124.892395px;}
.yde{bottom:126.045000px;}
.y235{bottom:126.351048px;}
.y6b{bottom:128.376000px;}
.y1cc{bottom:130.356000px;}
.yf9{bottom:132.876000px;}
.y1cb{bottom:134.856000px;}
.y1aa{bottom:138.096000px;}
.y138{bottom:139.176000px;}
.ydd{bottom:146.025000px;}
.y6a{bottom:146.736000px;}
.yf8{bottom:148.716000px;}
.y11c{bottom:149.616000px;}
.y1ca{bottom:150.690000px;}
.ycf{bottom:151.230000px;}
.y1c9{bottom:155.190000px;}
.y16c{bottom:159.330000px;}
.y137{bottom:163.830000px;}
.y69{bottom:165.090000px;}
.y9f{bottom:166.890000px;}
.yf7{bottom:167.070000px;}
.yce{bottom:167.970000px;}
.y1c8{bottom:171.030000px;}
.yf6{bottom:171.570000px;}
.y1c7{bottom:175.530000px;}
.y1a9{bottom:180.210000px;}
.y68{bottom:183.270000px;}
.y16b{bottom:184.530000px;}
.y67{bottom:187.770000px;}
.yf5{bottom:188.310000px;}
.y136{bottom:188.490000px;}
.y1c6{bottom:191.370000px;}
.y1c5{bottom:195.870000px;}
.y1e3{bottom:201.630000px;}
.y66{bottom:204.510000px;}
.y1a8{bottom:205.590000px;}
.y9e{bottom:209.730000px;}
.y16a{bottom:209.910000px;}
.y11b{bottom:212.430000px;}
.y1c4{bottom:212.610000px;}
.y135{bottom:213.150000px;}
.y205{bottom:219.630000px;}
.y1e2{bottom:219.990000px;}
.y17d{bottom:225.030000px;}
.y1a7{bottom:230.790000px;}
.y9d{bottom:234.930000px;}
.y169{bottom:235.110000px;}
.y11a{bottom:237.810000px;}
.y1e1{bottom:238.350000px;}
.y204{bottom:244.830000px;}
.y65{bottom:245.550000px;}
.y1a6{bottom:255.990000px;}
.y1e0{bottom:256.530000px;}
.y9c{bottom:260.130000px;}
.y119{bottom:263.010000px;}
.y19a{bottom:264.450000px;}
.y17c{bottom:267.330000px;}
.y203{bottom:270.030000px;}
.y64{bottom:270.750000px;}
.y168{bottom:272.370000px;}
.y1df{bottom:274.890000px;}
.y1de{bottom:279.390000px;}
.y158{bottom:281.010000px;}
.y22e{bottom:281.145000px;}
.y134{bottom:281.190000px;}
.y1a5{bottom:281.370000px;}
.y9b{bottom:285.510000px;}
.y230{bottom:287.637220px;}
.y118{bottom:288.210000px;}
.ycd{bottom:291.810000px;}
.y17b{bottom:292.530000px;}
.y202{bottom:295.410000px;}
.y63{bottom:296.130000px;}
.y43{bottom:305.850000px;}
.y157{bottom:306.390000px;}
.y199{bottom:306.570000px;}
.y9a{bottom:310.710000px;}
.y117{bottom:313.590000px;}
.y17a{bottom:317.730000px;}
.y201{bottom:320.610000px;}
.y133{bottom:323.310000px;}
.y1c3{bottom:327.810000px;}
.y1dd{bottom:331.410000px;}
.y156{bottom:331.590000px;}
.y198{bottom:331.770000px;}
.ycc{bottom:333.930000px;}
.y99{bottom:336.090000px;}
.y62{bottom:338.295000px;}
.y116{bottom:338.835000px;}
.y2f{bottom:342.435000px;}
.y179{bottom:343.155000px;}
.yf4{bottom:345.855000px;}
.y200{bottom:346.035000px;}
.y1c2{bottom:353.055000px;}
.y155{bottom:356.835000px;}
.y197{bottom:357.195000px;}
.ycb{bottom:359.175000px;}
.y61{bottom:363.495000px;}
.y115{bottom:364.035000px;}
.y132{bottom:365.475000px;}
.y178{bottom:368.355000px;}
.y1ff{bottom:371.235000px;}
.y22c{bottom:376.455000px;}
.y98{bottom:378.255000px;}
.y1c1{bottom:378.435000px;}
.y1dc{bottom:382.035000px;}
.y154{bottom:382.215000px;}
.y1a4{bottom:382.395000px;}
.yca{bottom:384.375000px;}
.y60{bottom:388.875000px;}
.y131{bottom:390.675000px;}
.y196{bottom:399.315000px;}
.y2e{bottom:400.575000px;}
.y97{bottom:403.455000px;}
.y1c0{bottom:405.975000px;}
.yf3{bottom:406.695000px;}
.y114{bottom:407.055000px;}
.y153{bottom:407.415000px;}
.y1a3{bottom:407.775000px;}
.yc9{bottom:409.755000px;}
.y177{bottom:410.475000px;}
.y1fe{bottom:412.995000px;}
.y1ea{bottom:413.895000px;}
.y5f{bottom:414.075000px;}
.y130{bottom:416.055000px;}
.y42{bottom:416.595000px;}
.y22b{bottom:418.575000px;}
.y25{bottom:418.755000px;}
.y1db{bottom:424.155000px;}
.yef{bottom:424.515000px;}
.y96{bottom:428.655000px;}
.y113{bottom:429.015000px;}
.y152{bottom:432.615000px;}
.yc8{bottom:434.955000px;}
.y176{bottom:435.855000px;}
.y1fd{bottom:436.575000px;}
.y5e{bottom:439.275000px;}
.y24{bottom:440.715000px;}
.y12f{bottom:441.255000px;}
.y1da{bottom:449.355000px;}
.y195{bottom:449.895000px;}
.y112{bottom:450.975000px;}
.y95{bottom:454.035000px;}
.y1bf{bottom:457.815000px;}
.y2d{bottom:458.895000px;}
.yc7{bottom:460.335000px;}
.y22a{bottom:460.695000px;}
.y175{bottom:461.055000px;}
.y23{bottom:463.395000px;}
.y5d{bottom:464.655000px;}
.y111{bottom:472.935000px;}
.y151{bottom:474.915000px;}
.y194{bottom:475.095000px;}
.y1a2{bottom:477.435000px;}
.y94{bottom:479.235000px;}
.y1fc{bottom:479.415000px;}
.y1e9{bottom:480.315000px;}
.y12e{bottom:483.375000px;}
.y22{bottom:484.635000px;}
.y5b{bottom:489.855000px;}
.y1d9{bottom:491.655000px;}
.y1be{bottom:493.455000px;}
.y5c{bottom:495.795000px;}
.y150{bottom:500.115000px;}
.y193{bottom:500.475000px;}
.yc5{bottom:502.455000px;}
.y229{bottom:502.815000px;}
.y1fb{bottom:502.995000px;}
.y174{bottom:503.175000px;}
.y93{bottom:504.615000px;}
.y21{bottom:507.315000px;}
.yc6{bottom:508.395000px;}
.y12d{bottom:508.755000px;}
.y41{bottom:514.335000px;}
.y5a{bottom:515.235000px;}
.y110{bottom:515.955000px;}
.y1d8{bottom:516.855000px;}
.y1bd{bottom:517.035000px;}
.y2c{bottom:517.215000px;}
.y14f{bottom:525.315000px;}
.y192{bottom:525.675000px;}
.yec{bottom:526.575000px;}
.yc4{bottom:527.655000px;}
.y173{bottom:528.375000px;}
.y20{bottom:529.275000px;}
.y12c{bottom:533.955000px;}
.y10f{bottom:537.915000px;}
.y1e8{bottom:541.335000px;}
.y1bc{bottom:541.875000px;}
.y1d7{bottom:542.055000px;}
.y228{bottom:544.935000px;}
.y92{bottom:546.735000px;}
.y40{bottom:547.095000px;}
.y1f{bottom:550.515000px;}
.y14e{bottom:550.695000px;}
.y191{bottom:550.875000px;}
.yc3{bottom:552.855000px;}
.y172{bottom:553.755000px;}
.y12b{bottom:559.155000px;}
.y10e{bottom:559.875000px;}
.y59{bottom:561.495000px;}
.y2b{bottom:565.275000px;}
.y1bb{bottom:565.455000px;}
.y1e7{bottom:566.535000px;}
.y1d6{bottom:567.435000px;}
.y1f9{bottom:569.415000px;}
.y1a1{bottom:571.395000px;}
.y91{bottom:571.935000px;}
.y1e{bottom:573.195000px;}
.y1fa{bottom:573.915000px;}
.yc2{bottom:578.235000px;}
.y171{bottom:578.955000px;}
.y3f{bottom:579.855000px;}
.y7f{bottom:580.575000px;}
.y10d{bottom:581.835000px;}
.y12a{bottom:584.535000px;}
.y58{bottom:586.695000px;}
.y227{bottom:587.235000px;}
.y1e6{bottom:591.735000px;}
.y1d5{bottom:592.635000px;}
.y14d{bottom:592.815000px;}
.y190{bottom:592.995000px;}
.y1f8{bottom:593.175000px;}
.y1d{bottom:595.155000px;}
.y1a0{bottom:596.595000px;}
.y90{bottom:597.315000px;}
.y21a{bottom:598.395000px;}
.y10c{bottom:603.825000px;}
.yeb{bottom:607.245000px;}
.y1ba{bottom:608.685000px;}
.y163{bottom:608.865000px;}
.y129{bottom:609.765000px;}
.y57{bottom:611.925000px;}
.y3e{bottom:612.645000px;}
.y2a{bottom:613.185000px;}
.y1f7{bottom:616.785000px;}
.y1c{bottom:617.145000px;}
.y1d4{bottom:617.865000px;}
.y14c{bottom:618.045000px;}
.yc1{bottom:620.385000px;}
.y18f{bottom:620.565000px;}
.y170{bottom:621.105000px;}
.y19f{bottom:622.005000px;}
.y8f{bottom:622.545000px;}
.y10b{bottom:625.785000px;}
.y226{bottom:629.385000px;}
.y1b9{bottom:633.885000px;}
.y128{bottom:634.965000px;}
.y56{bottom:637.305000px;}
.y1b{bottom:639.285000px;}
.y219{bottom:640.005000px;}
.y1e5{bottom:642.345000px;}
.y1d3{bottom:643.245000px;}
.y14b{bottom:643.425000px;}
.y3d{bottom:645.405000px;}
.y19e{bottom:647.205000px;}
.y8e{bottom:647.745000px;}
.y10a{bottom:647.925000px;}
.yc0{bottom:651.345000px;}
.y162{bottom:651.705000px;}
.y16f{bottom:658.545000px;}
.y7e{bottom:659.265000px;}
.y1f6{bottom:661.065000px;}
.y1a{bottom:661.245000px;}
.y55{bottom:662.505000px;}
.y218{bottom:664.305000px;}
.y1d2{bottom:668.445000px;}
.y14a{bottom:668.625000px;}
.y225{bottom:671.505000px;}
.y18e{bottom:672.585000px;}
.y8d{bottom:673.125000px;}
.y1b8{bottom:676.185000px;}
.y161{bottom:676.905000px;}
.y127{bottom:677.265000px;}
.y167{bottom:677.625000px;}
.y3c{bottom:678.165000px;}
.y19{bottom:683.205000px;}
.y7d{bottom:684.465000px;}
.y217{bottom:686.265000px;}
.y1f5{bottom:686.445000px;}
.y54{bottom:687.885000px;}
.y108{bottom:690.765000px;}
.y149{bottom:693.825000px;}
.y109{bottom:695.265000px;}
.y29{bottom:697.245000px;}
.y19d{bottom:697.785000px;}
.y8c{bottom:698.325000px;}
.y1b7{bottom:701.385000px;}
.y160{bottom:702.285000px;}
.y126{bottom:702.465000px;}
.y18{bottom:704.985000px;}
.y216{bottom:708.225000px;}
.y7c{bottom:709.845000px;}
.y3b{bottom:710.925000px;}
.y1f4{bottom:711.645000px;}
.ybf{bottom:712.185000px;}
.y107{bottom:712.725000px;}
.y53{bottom:713.085000px;}
.y224{bottom:713.625000px;}
.y18d{bottom:714.705000px;}
.y148{bottom:719.205000px;}
.y166{bottom:720.465000px;}
.y1b6{bottom:726.585000px;}
.y17{bottom:726.765000px;}
.y15f{bottom:727.485000px;}
.y125{bottom:727.665000px;}
.y215{bottom:730.185000px;}
.y106{bottom:734.685000px;}
.y7b{bottom:735.045000px;}
.y1d1{bottom:735.945000px;}
.y52{bottom:738.285000px;}
.y18c{bottom:739.905000px;}
.y8b{bottom:740.445000px;}
.y3a{bottom:743.685000px;}
.y214{bottom:752.145000px;}
.y15e{bottom:752.865000px;}
.y124{bottom:753.045000px;}
.y16{bottom:753.765000px;}
.ybe{bottom:754.305000px;}
.y223{bottom:755.745000px;}
.y105{bottom:756.645000px;}
.y165{bottom:757.725000px;}
.y7a{bottom:760.245000px;}
.y146{bottom:761.685000px;}
.y18b{bottom:765.105000px;}
.y1d0{bottom:766.905000px;}
.y147{bottom:767.625000px;}
.ye6{bottom:768.525000px;}
.y1b5{bottom:768.885000px;}
.y8a{bottom:771.405000px;}
.y28{bottom:771.765000px;}
.y213{bottom:774.105000px;}
.ybd{bottom:776.265000px;}
.y39{bottom:776.445000px;}
.y1e4{bottom:777.165000px;}
.y15{bottom:778.065000px;}
.y123{bottom:778.245000px;}
.y104{bottom:778.605000px;}
.y51{bottom:784.545000px;}
.y1f3{bottom:784.725000px;}
.y18a{bottom:790.485000px;}
.y1b4{bottom:794.085000px;}
.y222{bottom:797.865000px;}
.ybc{bottom:798.225000px;}
.y14{bottom:799.305000px;}
.y79{bottom:802.545000px;}
.y122{bottom:803.445000px;}
.y145{bottom:807.765000px;}
.y38{bottom:809.205000px;}
.y50{bottom:809.925000px;}
.y189{bottom:815.685000px;}
.y212{bottom:816.225000px;}
.y1b3{bottom:819.285000px;}
.ybb{bottom:820.185000px;}
.y13{bottom:821.985000px;}
.y103{bottom:827.205000px;}
.y78{bottom:827.745000px;}
.y89{bottom:832.245000px;}
.y4f{bottom:835.125000px;}
.y221{bottom:839.985000px;}
.y19c{bottom:841.065000px;}
.y37{bottom:841.965000px;}
.yba{bottom:842.325000px;}
.y12{bottom:843.945000px;}
.y1b2{bottom:844.665000px;}
.y121{bottom:845.565000px;}
.y1f2{bottom:846.465000px;}
.ydc{bottom:849.165000px;}
.y144{bottom:849.885000px;}
.y77{bottom:852.945000px;}
.y188{bottom:857.805000px;}
.y211{bottom:858.345000px;}
.y4e{bottom:860.325000px;}
.y11{bottom:865.905000px;}
.y15d{bottom:866.085000px;}
.y19b{bottom:866.265000px;}
.y1b1{bottom:869.865000px;}
.y88{bottom:874.410000px;}
.y36{bottom:874.770000px;}
.y143{bottom:875.130000px;}
.y76{bottom:878.370000px;}
.y102{bottom:879.090000px;}
.y210{bottom:880.530000px;}
.y220{bottom:882.150000px;}
.y187{bottom:883.230000px;}
.yb9{bottom:884.490000px;}
.y4d{bottom:885.750000px;}
.y27{bottom:886.110000px;}
.y10{bottom:887.910000px;}
.y120{bottom:891.510000px;}
.y1f1{bottom:892.770000px;}
.y1b0{bottom:895.110000px;}
.y87{bottom:899.790000px;}
.y142{bottom:900.330000px;}
.yaf{bottom:902.310000px;}
.y20f{bottom:902.490000px;}
.y75{bottom:903.570000px;}
.y35{bottom:907.530000px;}
.y15c{bottom:908.250000px;}
.y186{bottom:908.430000px;}
.yf{bottom:909.870000px;}
.y4c{bottom:910.950000px;}
.y1f0{bottom:917.970000px;}
.y11f{bottom:919.050000px;}
.y1af{bottom:920.490000px;}
.y101{bottom:921.390000px;}
.y20e{bottom:924.450000px;}
.y86{bottom:924.990000px;}
.y141{bottom:925.710000px;}
.y74{bottom:928.770000px;}
.yd6{bottom:929.850000px;}
.ye{bottom:931.830000px;}
.y15b{bottom:933.450000px;}
.y185{bottom:933.810000px;}
.y4b{bottom:936.330000px;}
.y34{bottom:940.470000px;}
.y1ef{bottom:943.350000px;}
.y1cf{bottom:945.690000px;}
.y100{bottom:946.590000px;}
.y85{bottom:950.370000px;}
.y140{bottom:950.910000px;}
.yd{bottom:953.070000px;}
.yd1{bottom:953.430000px;}
.y15a{bottom:958.830000px;}
.y184{bottom:959.010000px;}
.y4a{bottom:961.530000px;}
.y1ae{bottom:962.610000px;}
.y20d{bottom:966.570000px;}
.y1ee{bottom:968.550000px;}
.y73{bottom:971.070000px;}
.yff{bottom:971.790000px;}
.y33{bottom:973.230000px;}
.y84{bottom:975.570000px;}
.yc{bottom:975.750000px;}
.y159{bottom:984.030000px;}
.y183{bottom:984.210000px;}
.y26{bottom:985.470000px;}
.y13f{bottom:986.550000px;}
.y49{bottom:986.730000px;}
.y1ad{bottom:987.810000px;}
.y20c{bottom:988.350000px;}
.yad{bottom:990.870000px;}
.y1ed{bottom:993.750000px;}
.y72{bottom:996.270000px;}
.yfe{bottom:997.170000px;}
.yb{bottom:997.710000px;}
.y83{bottom:1000.770000px;}
.y32{bottom:1005.990000px;}
.y20b{bottom:1007.610000px;}
.y21f{bottom:1008.690000px;}
.y182{bottom:1009.590000px;}
.y13e{bottom:1011.210000px;}
.yd4{bottom:1011.570000px;}
.y11e{bottom:1013.190000px;}
.yab{bottom:1013.370000px;}
.ya{bottom:1019.670000px;}
.y71{bottom:1021.470000px;}
.yfd{bottom:1022.370000px;}
.y4{bottom:1022.730000px;}
.y82{bottom:1026.150000px;}
.y48{bottom:1029.030000px;}
.y20a{bottom:1029.570000px;}
.y181{bottom:1034.790000px;}
.y13d{bottom:1035.870000px;}
.ya4{bottom:1036.590000px;}
.y11d{bottom:1038.390000px;}
.y1ec{bottom:1040.010000px;}
.y9{bottom:1041.630000px;}
.y70{bottom:1046.850000px;}
.yfc{bottom:1047.570000px;}
.y31{bottom:1048.110000px;}
.y21e{bottom:1050.810000px;}
.y209{bottom:1051.530000px;}
.y21c{bottom:1054.770000px;}
.y180{bottom:1059.990000px;}
.y8{bottom:1063.590000px;}
.y47{bottom:1067.010000px;}
.y81{bottom:1067.730000px;}
.y1eb{bottom:1071.150000px;}
.y6f{bottom:1072.050000px;}
.y208{bottom:1073.490000px;}
.y13c{bottom:1079.070000px;}
.y3{bottom:1085.010000px;}
.y7{bottom:1085.730000px;}
.yd0{bottom:1088.970000px;}
.yfb{bottom:1089.870000px;}
.yd2{bottom:1092.210000px;}
.ya1{bottom:1092.390000px;}
.y21d{bottom:1092.930000px;}
.y207{bottom:1095.450000px;}
.y16e{bottom:1096.530000px;}
.y21b{bottom:1099.230000px;}
.y17f{bottom:1102.290000px;}
.y80{bottom:1102.830000px;}
.y30{bottom:1103.010000px;}
.y6{bottom:1110.210000px;}
.y164{bottom:1113.990000px;}
.y6e{bottom:1114.170000px;}
.y13b{bottom:1114.890000px;}
.y1ce{bottom:1120.110000px;}
.yfa{bottom:1120.830000px;}
.y17e{bottom:1129.830000px;}
.y206{bottom:1135.770000px;}
.y5{bottom:1137.210000px;}
.y13a{bottom:1138.500000px;}
.ya0{bottom:1138.860000px;}
.y6d{bottom:1139.580000px;}
.y1ac{bottom:1144.080000px;}
.y44{bottom:1192.680000px;}
.h1a{height:21.960000px;}
.h14{height:22.500000px;}
.hf{height:28.811953px;}
.h19{height:34.171875px;}
.h25{height:34.439766px;}
.he{height:39.783867px;}
.h17{height:44.534180px;}
.h10{height:49.284492px;}
.hc{height:49.289062px;}
.h6{height:49.359375px;}
.h1b{height:54.628594px;}
.h2b{height:54.830032px;}
.h16{height:55.080000px;}
.h28{height:57.853546px;}
.h8{height:58.218750px;}
.h15{height:58.651172px;}
.h2{height:59.378906px;}
.h13{height:59.625000px;}
.h27{height:59.796915px;}
.h2d{height:59.834477px;}
.h7{height:61.259062px;}
.h5{height:64.395000px;}
.h24{height:69.761250px;}
.h26{height:70.350000px;}
.hd{height:70.664062px;}
.h12{height:75.093750px;}
.h1f{height:79.776000px;}
.h1c{height:79.920000px;}
.h21{height:79.956000px;}
.h1d{height:81.000000px;}
.h4{height:81.101250px;}
.h18{height:87.840000px;}
.h9{height:99.573750px;}
.h22{height:101.340000px;}
.h23{height:112.640625px;}
.h11{height:119.250000px;}
.h29{height:120.209333px;}
.ha{height:125.406562px;}
.h2c{height:128.678038px;}
.h2a{height:140.610043px;}
.h20{height:160.560000px;}
.h1e{height:161.670000px;}
.hb{height:178.875000px;}
.h3{height:238.500000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w11{width:49.320000px;}
.w9{width:105.660000px;}
.wa{width:105.696000px;}
.w8{width:105.876000px;}
.wc{width:106.020000px;}
.wd{width:106.056000px;}
.we{width:106.236000px;}
.w5{width:106.416000px;}
.w7{width:106.560000px;}
.w6{width:106.596000px;}
.w14{width:173.439304px;}
.w13{width:174.525000px;}
.wb{width:212.970000px;}
.w4{width:213.150000px;}
.w10{width:260.895000px;}
.w12{width:326.235000px;}
.wf{width:376.275000px;}
.w16{width:413.535331px;}
.w15{width:414.450000px;}
.w3{width:892.979973px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x12{left:5.220000px;}
.x50{left:7.379973px;}
.x2e{left:9.720000px;}
.x31{left:10.980000px;}
.x18{left:13.680000px;}
.x29{left:16.020000px;}
.x2b{left:17.820000px;}
.x1b{left:19.800000px;}
.x2a{left:21.960000px;}
.x1c{left:23.400000px;}
.x34{left:27.360000px;}
.x16{left:31.500000px;}
.x1d{left:34.560000px;}
.x26{left:37.980000px;}
.x27{left:39.600000px;}
.x32{left:43.020000px;}
.x19{left:46.080000px;}
.x1a{left:52.740000px;}
.x30{left:54.540000px;}
.x2c{left:58.365000px;}
.x2f{left:59.625000px;}
.x51{left:64.320000px;}
.x33{left:82.305000px;}
.x28{left:94.545000px;}
.x2d{left:100.665000px;}
.x23{left:111.465000px;}
.x25{left:117.585000px;}
.x3{left:127.655987px;}
.x7{left:129.275987px;}
.x11{left:133.415987px;}
.x41{left:138.275987px;}
.xc{left:145.655987px;}
.x4e{left:148.895987px;}
.xa{left:153.569987px;}
.x37{left:154.649987px;}
.x5{left:155.729987px;}
.x3f{left:157.349987px;}
.xd{left:163.649987px;}
.x21{left:166.179000px;}
.x8{left:168.869987px;}
.x24{left:177.690000px;}
.x4{left:180.749987px;}
.x42{left:182.909973px;}
.x43{left:188.669987px;}
.x38{left:207.749987px;}
.x3d{left:212.789987px;}
.x39{left:234.749987px;}
.x6{left:239.114987px;}
.x17{left:287.175000px;}
.x9{left:307.694987px;}
.x10{left:343.694987px;}
.x44{left:359.894973px;}
.x3a{left:362.054973px;}
.x45{left:365.654987px;}
.x3b{left:368.174987px;}
.x13{left:393.375000px;}
.x35{left:401.504973px;}
.x36{left:407.264987px;}
.xb{left:414.644987px;}
.x4b{left:424.724987px;}
.x4f{left:444.704973px;}
.x2{left:446.504987px;}
.x46{left:479.084973px;}
.x47{left:484.844987px;}
.x14{left:499.785000px;}
.x22{left:504.645000px;}
.x4c{left:532.724973px;}
.x4d{left:544.244987px;}
.x1e{left:560.489973px;}
.x1f{left:565.169987px;}
.xe{left:568.409973px;}
.xf{left:574.529987px;}
.x48{left:595.769973px;}
.x15{left:606.390000px;}
.x49{left:716.369973px;}
.x4a{left:727.919987px;}
.x40{left:741.419987px;}
.x20{left:747.359987px;}
.x1{left:756.359987px;}
.x3e{left:775.799987px;}
.x3c{left:843.119987px;}
@media print{
.v1{vertical-align:-21.120000pt;}
.v3{vertical-align:-16.000000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:16.000000pt;}
.ls14{letter-spacing:-1.216000pt;}
.lsb{letter-spacing:-0.768000pt;}
.ls21{letter-spacing:-0.704000pt;}
.ls7{letter-spacing:-0.640000pt;}
.ls12{letter-spacing:-0.576000pt;}
.ls11{letter-spacing:-0.512000pt;}
.lsd{letter-spacing:-0.448000pt;}
.ls9{letter-spacing:-0.384000pt;}
.ls20{letter-spacing:-0.352000pt;}
.lsa{letter-spacing:-0.320000pt;}
.ls28{letter-spacing:-0.259733pt;}
.ls24{letter-spacing:-0.224000pt;}
.ls18{letter-spacing:-0.192000pt;}
.ls26{letter-spacing:-0.158933pt;}
.ls4{letter-spacing:-0.128000pt;}
.lsc{letter-spacing:-0.064000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls1e{letter-spacing:0.032000pt;}
.lsf{letter-spacing:0.064000pt;}
.ls1a{letter-spacing:0.112533pt;}
.ls1b{letter-spacing:0.117867pt;}
.ls16{letter-spacing:0.128000pt;}
.ls13{letter-spacing:0.144000pt;}
.ls29{letter-spacing:0.165867pt;}
.ls5{letter-spacing:0.192000pt;}
.ls17{letter-spacing:0.227840pt;}
.ls6{letter-spacing:0.256000pt;}
.ls19{letter-spacing:0.278933pt;}
.ls22{letter-spacing:0.288000pt;}
.ls8{letter-spacing:0.320000pt;}
.ls1c{letter-spacing:0.349867pt;}
.ls27{letter-spacing:0.352000pt;}
.ls15{letter-spacing:0.805333pt;}
.ls2b{letter-spacing:1.303299pt;}
.ls2a{letter-spacing:48.128000pt;}
.ls1f{letter-spacing:48.768000pt;}
.ls23{letter-spacing:55.232000pt;}
.ls3{letter-spacing:103.173120pt;}
.ls1d{letter-spacing:111.530667pt;}
.ls25{letter-spacing:174.314667pt;}
.ls2{letter-spacing:738.426027pt;}
.ls0{letter-spacing:748.923307pt;}
.ls10{letter-spacing:750.346667pt;}
.lse{letter-spacing:753.674667pt;}
.ws14{word-spacing:-64.000000pt;}
.ws1{word-spacing:-51.648000pt;}
.ws1a{word-spacing:-26.176000pt;}
.ws18{word-spacing:-26.080000pt;}
.ws10{word-spacing:-25.856000pt;}
.ws16{word-spacing:-25.600000pt;}
.ws12{word-spacing:-25.472000pt;}
.ws1b{word-spacing:-17.276484pt;}
.ws5{word-spacing:-14.784000pt;}
.ws3{word-spacing:-14.656000pt;}
.ws13{word-spacing:-14.592000pt;}
.ws9{word-spacing:-14.528000pt;}
.ws4{word-spacing:-14.464000pt;}
.ws8{word-spacing:-14.400000pt;}
.ws2{word-spacing:-14.336000pt;}
.wsf{word-spacing:-14.272000pt;}
.ws7{word-spacing:-14.144000pt;}
.ws6{word-spacing:-14.080000pt;}
.ws11{word-spacing:-14.016000pt;}
.ws17{word-spacing:-13.952000pt;}
.ws19{word-spacing:-13.760000pt;}
.wsd{word-spacing:-13.585813pt;}
.wsc{word-spacing:-13.114880pt;}
.ws15{word-spacing:-12.005120pt;}
.wsa{word-spacing:-10.992000pt;}
.wsb{word-spacing:-10.848000pt;}
.wse{word-spacing:-0.037120pt;}
.ws0{word-spacing:0.000000pt;}
._6{margin-left:-13.749333pt;}
._2b{margin-left:-12.179627pt;}
._7{margin-left:-7.669333pt;}
._29{margin-left:-6.656000pt;}
._2a{margin-left:-5.216000pt;}
._8{margin-left:-4.277333pt;}
._5{margin-left:-2.869333pt;}
._14{margin-left:-1.873920pt;}
._2{margin-left:-0.942080pt;}
._0{width:1.175040pt;}
._1{width:2.279253pt;}
._3{width:3.416747pt;}
._c{width:4.672853pt;}
._12{width:5.866667pt;}
._e{width:7.616000pt;}
._d{width:8.640000pt;}
._f{width:10.005333pt;}
._17{width:11.776000pt;}
._1c{width:12.755627pt;}
._b{width:16.128000pt;}
._a{width:17.024000pt;}
._13{width:18.112000pt;}
._1e{width:19.498667pt;}
._23{width:20.853333pt;}
._15{width:21.888000pt;}
._16{width:23.050667pt;}
._1f{width:24.167253pt;}
._2c{width:25.164373pt;}
._11{width:26.314240pt;}
._10{width:27.456000pt;}
._18{width:29.003520pt;}
._19{width:29.987200pt;}
._1a{width:31.936000pt;}
._1b{width:33.511253pt;}
._21{width:34.560000pt;}
._20{width:35.648000pt;}
._28{width:41.216000pt;}
._27{width:42.240000pt;}
._24{width:44.032000pt;}
._25{width:44.962133pt;}
._1d{width:117.205333pt;}
._2d{width:142.080000pt;}
._22{width:174.314667pt;}
._9{width:416.330667pt;}
._2e{width:619.996587pt;}
._4{width:752.005547pt;}
._26{width:753.674667pt;}
._2f{width:1473.223253pt;}
.fsb{font-size:34.560000pt;}
.fs7{font-size:37.120000pt;}
.fs6{font-size:42.880000pt;}
.fsa{font-size:48.000000pt;}
.fs8{font-size:53.120000pt;}
.fs3{font-size:58.880000pt;}
.fs10{font-size:59.097115pt;}
.fs0{font-size:64.000000pt;}
.fs11{font-size:64.224847pt;}
.fse{font-size:64.450540pt;}
.fs2{font-size:69.120000pt;}
.fsd{font-size:74.880000pt;}
.fsc{font-size:96.000000pt;}
.fs4{font-size:106.880000pt;}
.fs9{font-size:128.000000pt;}
.fsf{font-size:129.029724pt;}
.fs5{font-size:192.000000pt;}
.fs1{font-size:256.000000pt;}
.y232{bottom:-8.393991pt;}
.y0{bottom:0.000000pt;}
.ya8{bottom:3.200000pt;}
.ydb{bottom:4.000000pt;}
.ya2{bottom:4.480000pt;}
.yae{bottom:4.640000pt;}
.yd3{bottom:4.800000pt;}
.ya3{bottom:9.920000pt;}
.y23a{bottom:9.934981pt;}
.yac{bottom:10.080000pt;}
.yea{bottom:12.640000pt;}
.yb3{bottom:12.960000pt;}
.yaa{bottom:13.120000pt;}
.yb8{bottom:17.760000pt;}
.ya7{bottom:17.920000pt;}
.ya5{bottom:19.040000pt;}
.y231{bottom:19.361578pt;}
.yee{bottom:21.600000pt;}
.ye5{bottom:21.640000pt;}
.yda{bottom:22.400000pt;}
.yb2{bottom:27.520000pt;}
.ya9{bottom:27.680000pt;}
.yd5{bottom:30.560000pt;}
.ye3{bottom:30.600000pt;}
.yd7{bottom:31.040000pt;}
.y239{bottom:32.080375pt;}
.yb7{bottom:32.480000pt;}
.yb4{bottom:33.600000pt;}
.ya6{bottom:33.760000pt;}
.yed{bottom:39.520000pt;}
.ye4{bottom:39.560000pt;}
.yf0{bottom:40.160000pt;}
.yd9{bottom:40.320000pt;}
.ye2{bottom:40.360000pt;}
.yb1{bottom:42.240000pt;}
.yb6{bottom:47.200000pt;}
.y22f{bottom:47.227012pt;}
.ye9{bottom:48.480000pt;}
.y46{bottom:51.360000pt;}
.y2{bottom:51.520000pt;}
.y238{bottom:54.225769pt;}
.yb0{bottom:56.960000pt;}
.yd8{bottom:58.080000pt;}
.yf2{bottom:58.240000pt;}
.ye1{bottom:58.280000pt;}
.yb5{bottom:62.880000pt;}
.ye8{bottom:66.400000pt;}
.y45{bottom:70.912000pt;}
.y1{bottom:71.072000pt;}
.yf1{bottom:76.160000pt;}
.ye0{bottom:76.200000pt;}
.y237{bottom:76.339115pt;}
.ye7{bottom:84.320000pt;}
.ydf{bottom:94.120000pt;}
.y6c{bottom:97.952000pt;}
.y236{bottom:98.484509pt;}
.y1ab{bottom:100.352000pt;}
.y139{bottom:101.792000pt;}
.y1cd{bottom:101.952000pt;}
.y16d{bottom:104.192000pt;}
.y22d{bottom:106.912000pt;}
.y233{bottom:106.991962pt;}
.y234{bottom:111.015463pt;}
.yde{bottom:112.040000pt;}
.y235{bottom:112.312042pt;}
.y6b{bottom:114.112000pt;}
.y1cc{bottom:115.872000pt;}
.yf9{bottom:118.112000pt;}
.y1cb{bottom:119.872000pt;}
.y1aa{bottom:122.752000pt;}
.y138{bottom:123.712000pt;}
.ydd{bottom:129.800000pt;}
.y6a{bottom:130.432000pt;}
.yf8{bottom:132.192000pt;}
.y11c{bottom:132.992000pt;}
.y1ca{bottom:133.946667pt;}
.ycf{bottom:134.426667pt;}
.y1c9{bottom:137.946667pt;}
.y16c{bottom:141.626667pt;}
.y137{bottom:145.626667pt;}
.y69{bottom:146.746667pt;}
.y9f{bottom:148.346667pt;}
.yf7{bottom:148.506667pt;}
.yce{bottom:149.306667pt;}
.y1c8{bottom:152.026667pt;}
.yf6{bottom:152.506667pt;}
.y1c7{bottom:156.026667pt;}
.y1a9{bottom:160.186667pt;}
.y68{bottom:162.906667pt;}
.y16b{bottom:164.026667pt;}
.y67{bottom:166.906667pt;}
.yf5{bottom:167.386667pt;}
.y136{bottom:167.546667pt;}
.y1c6{bottom:170.106667pt;}
.y1c5{bottom:174.106667pt;}
.y1e3{bottom:179.226667pt;}
.y66{bottom:181.786667pt;}
.y1a8{bottom:182.746667pt;}
.y9e{bottom:186.426667pt;}
.y16a{bottom:186.586667pt;}
.y11b{bottom:188.826667pt;}
.y1c4{bottom:188.986667pt;}
.y135{bottom:189.466667pt;}
.y205{bottom:195.226667pt;}
.y1e2{bottom:195.546667pt;}
.y17d{bottom:200.026667pt;}
.y1a7{bottom:205.146667pt;}
.y9d{bottom:208.826667pt;}
.y169{bottom:208.986667pt;}
.y11a{bottom:211.386667pt;}
.y1e1{bottom:211.866667pt;}
.y204{bottom:217.626667pt;}
.y65{bottom:218.266667pt;}
.y1a6{bottom:227.546667pt;}
.y1e0{bottom:228.026667pt;}
.y9c{bottom:231.226667pt;}
.y119{bottom:233.786667pt;}
.y19a{bottom:235.066667pt;}
.y17c{bottom:237.626667pt;}
.y203{bottom:240.026667pt;}
.y64{bottom:240.666667pt;}
.y168{bottom:242.106667pt;}
.y1df{bottom:244.346667pt;}
.y1de{bottom:248.346667pt;}
.y158{bottom:249.786667pt;}
.y22e{bottom:249.906667pt;}
.y134{bottom:249.946667pt;}
.y1a5{bottom:250.106667pt;}
.y9b{bottom:253.786667pt;}
.y230{bottom:255.677529pt;}
.y118{bottom:256.186667pt;}
.ycd{bottom:259.386667pt;}
.y17b{bottom:260.026667pt;}
.y202{bottom:262.586667pt;}
.y63{bottom:263.226667pt;}
.y43{bottom:271.866667pt;}
.y157{bottom:272.346667pt;}
.y199{bottom:272.506667pt;}
.y9a{bottom:276.186667pt;}
.y117{bottom:278.746667pt;}
.y17a{bottom:282.426667pt;}
.y201{bottom:284.986667pt;}
.y133{bottom:287.386667pt;}
.y1c3{bottom:291.386667pt;}
.y1dd{bottom:294.586667pt;}
.y156{bottom:294.746667pt;}
.y198{bottom:294.906667pt;}
.ycc{bottom:296.826667pt;}
.y99{bottom:298.746667pt;}
.y62{bottom:300.706667pt;}
.y116{bottom:301.186667pt;}
.y2f{bottom:304.386667pt;}
.y179{bottom:305.026667pt;}
.yf4{bottom:307.426667pt;}
.y200{bottom:307.586667pt;}
.y1c2{bottom:313.826667pt;}
.y155{bottom:317.186667pt;}
.y197{bottom:317.506667pt;}
.ycb{bottom:319.266667pt;}
.y61{bottom:323.106667pt;}
.y115{bottom:323.586667pt;}
.y132{bottom:324.866667pt;}
.y178{bottom:327.426667pt;}
.y1ff{bottom:329.986667pt;}
.y22c{bottom:334.626667pt;}
.y98{bottom:336.226667pt;}
.y1c1{bottom:336.386667pt;}
.y1dc{bottom:339.586667pt;}
.y154{bottom:339.746667pt;}
.y1a4{bottom:339.906667pt;}
.yca{bottom:341.666667pt;}
.y60{bottom:345.666667pt;}
.y131{bottom:347.266667pt;}
.y196{bottom:354.946667pt;}
.y2e{bottom:356.066667pt;}
.y97{bottom:358.626667pt;}
.y1c0{bottom:360.866667pt;}
.yf3{bottom:361.506667pt;}
.y114{bottom:361.826667pt;}
.y153{bottom:362.146667pt;}
.y1a3{bottom:362.466667pt;}
.yc9{bottom:364.226667pt;}
.y177{bottom:364.866667pt;}
.y1fe{bottom:367.106667pt;}
.y1ea{bottom:367.906667pt;}
.y5f{bottom:368.066667pt;}
.y130{bottom:369.826667pt;}
.y42{bottom:370.306667pt;}
.y22b{bottom:372.066667pt;}
.y25{bottom:372.226667pt;}
.y1db{bottom:377.026667pt;}
.yef{bottom:377.346667pt;}
.y96{bottom:381.026667pt;}
.y113{bottom:381.346667pt;}
.y152{bottom:384.546667pt;}
.yc8{bottom:386.626667pt;}
.y176{bottom:387.426667pt;}
.y1fd{bottom:388.066667pt;}
.y5e{bottom:390.466667pt;}
.y24{bottom:391.746667pt;}
.y12f{bottom:392.226667pt;}
.y1da{bottom:399.426667pt;}
.y195{bottom:399.906667pt;}
.y112{bottom:400.866667pt;}
.y95{bottom:403.586667pt;}
.y1bf{bottom:406.946667pt;}
.y2d{bottom:407.906667pt;}
.yc7{bottom:409.186667pt;}
.y22a{bottom:409.506667pt;}
.y175{bottom:409.826667pt;}
.y23{bottom:411.906667pt;}
.y5d{bottom:413.026667pt;}
.y111{bottom:420.386667pt;}
.y151{bottom:422.146667pt;}
.y194{bottom:422.306667pt;}
.y1a2{bottom:424.386667pt;}
.y94{bottom:425.986667pt;}
.y1fc{bottom:426.146667pt;}
.y1e9{bottom:426.946667pt;}
.y12e{bottom:429.666667pt;}
.y22{bottom:430.786667pt;}
.y5b{bottom:435.426667pt;}
.y1d9{bottom:437.026667pt;}
.y1be{bottom:438.626667pt;}
.y5c{bottom:440.706667pt;}
.y150{bottom:444.546667pt;}
.y193{bottom:444.866667pt;}
.yc5{bottom:446.626667pt;}
.y229{bottom:446.946667pt;}
.y1fb{bottom:447.106667pt;}
.y174{bottom:447.266667pt;}
.y93{bottom:448.546667pt;}
.y21{bottom:450.946667pt;}
.yc6{bottom:451.906667pt;}
.y12d{bottom:452.226667pt;}
.y41{bottom:457.186667pt;}
.y5a{bottom:457.986667pt;}
.y110{bottom:458.626667pt;}
.y1d8{bottom:459.426667pt;}
.y1bd{bottom:459.586667pt;}
.y2c{bottom:459.746667pt;}
.y14f{bottom:466.946667pt;}
.y192{bottom:467.266667pt;}
.yec{bottom:468.066667pt;}
.yc4{bottom:469.026667pt;}
.y173{bottom:469.666667pt;}
.y20{bottom:470.466667pt;}
.y12c{bottom:474.626667pt;}
.y10f{bottom:478.146667pt;}
.y1e8{bottom:481.186667pt;}
.y1bc{bottom:481.666667pt;}
.y1d7{bottom:481.826667pt;}
.y228{bottom:484.386667pt;}
.y92{bottom:485.986667pt;}
.y40{bottom:486.306667pt;}
.y1f{bottom:489.346667pt;}
.y14e{bottom:489.506667pt;}
.y191{bottom:489.666667pt;}
.yc3{bottom:491.426667pt;}
.y172{bottom:492.226667pt;}
.y12b{bottom:497.026667pt;}
.y10e{bottom:497.666667pt;}
.y59{bottom:499.106667pt;}
.y2b{bottom:502.466667pt;}
.y1bb{bottom:502.626667pt;}
.y1e7{bottom:503.586667pt;}
.y1d6{bottom:504.386667pt;}
.y1f9{bottom:506.146667pt;}
.y1a1{bottom:507.906667pt;}
.y91{bottom:508.386667pt;}
.y1e{bottom:509.506667pt;}
.y1fa{bottom:510.146667pt;}
.yc2{bottom:513.986667pt;}
.y171{bottom:514.626667pt;}
.y3f{bottom:515.426667pt;}
.y7f{bottom:516.066667pt;}
.y10d{bottom:517.186667pt;}
.y12a{bottom:519.586667pt;}
.y58{bottom:521.506667pt;}
.y227{bottom:521.986667pt;}
.y1e6{bottom:525.986667pt;}
.y1d5{bottom:526.786667pt;}
.y14d{bottom:526.946667pt;}
.y190{bottom:527.106667pt;}
.y1f8{bottom:527.266667pt;}
.y1d{bottom:529.026667pt;}
.y1a0{bottom:530.306667pt;}
.y90{bottom:530.946667pt;}
.y21a{bottom:531.906667pt;}
.y10c{bottom:536.733333pt;}
.yeb{bottom:539.773333pt;}
.y1ba{bottom:541.053333pt;}
.y163{bottom:541.213333pt;}
.y129{bottom:542.013333pt;}
.y57{bottom:543.933333pt;}
.y3e{bottom:544.573333pt;}
.y2a{bottom:545.053333pt;}
.y1f7{bottom:548.253333pt;}
.y1c{bottom:548.573333pt;}
.y1d4{bottom:549.213333pt;}
.y14c{bottom:549.373333pt;}
.yc1{bottom:551.453333pt;}
.y18f{bottom:551.613333pt;}
.y170{bottom:552.093333pt;}
.y19f{bottom:552.893333pt;}
.y8f{bottom:553.373333pt;}
.y10b{bottom:556.253333pt;}
.y226{bottom:559.453333pt;}
.y1b9{bottom:563.453333pt;}
.y128{bottom:564.413333pt;}
.y56{bottom:566.493333pt;}
.y1b{bottom:568.253333pt;}
.y219{bottom:568.893333pt;}
.y1e5{bottom:570.973333pt;}
.y1d3{bottom:571.773333pt;}
.y14b{bottom:571.933333pt;}
.y3d{bottom:573.693333pt;}
.y19e{bottom:575.293333pt;}
.y8e{bottom:575.773333pt;}
.y10a{bottom:575.933333pt;}
.yc0{bottom:578.973333pt;}
.y162{bottom:579.293333pt;}
.y16f{bottom:585.373333pt;}
.y7e{bottom:586.013333pt;}
.y1f6{bottom:587.613333pt;}
.y1a{bottom:587.773333pt;}
.y55{bottom:588.893333pt;}
.y218{bottom:590.493333pt;}
.y1d2{bottom:594.173333pt;}
.y14a{bottom:594.333333pt;}
.y225{bottom:596.893333pt;}
.y18e{bottom:597.853333pt;}
.y8d{bottom:598.333333pt;}
.y1b8{bottom:601.053333pt;}
.y161{bottom:601.693333pt;}
.y127{bottom:602.013333pt;}
.y167{bottom:602.333333pt;}
.y3c{bottom:602.813333pt;}
.y19{bottom:607.293333pt;}
.y7d{bottom:608.413333pt;}
.y217{bottom:610.013333pt;}
.y1f5{bottom:610.173333pt;}
.y54{bottom:611.453333pt;}
.y108{bottom:614.013333pt;}
.y149{bottom:616.733333pt;}
.y109{bottom:618.013333pt;}
.y29{bottom:619.773333pt;}
.y19d{bottom:620.253333pt;}
.y8c{bottom:620.733333pt;}
.y1b7{bottom:623.453333pt;}
.y160{bottom:624.253333pt;}
.y126{bottom:624.413333pt;}
.y18{bottom:626.653333pt;}
.y216{bottom:629.533333pt;}
.y7c{bottom:630.973333pt;}
.y3b{bottom:631.933333pt;}
.y1f4{bottom:632.573333pt;}
.ybf{bottom:633.053333pt;}
.y107{bottom:633.533333pt;}
.y53{bottom:633.853333pt;}
.y224{bottom:634.333333pt;}
.y18d{bottom:635.293333pt;}
.y148{bottom:639.293333pt;}
.y166{bottom:640.413333pt;}
.y1b6{bottom:645.853333pt;}
.y17{bottom:646.013333pt;}
.y15f{bottom:646.653333pt;}
.y125{bottom:646.813333pt;}
.y215{bottom:649.053333pt;}
.y106{bottom:653.053333pt;}
.y7b{bottom:653.373333pt;}
.y1d1{bottom:654.173333pt;}
.y52{bottom:656.253333pt;}
.y18c{bottom:657.693333pt;}
.y8b{bottom:658.173333pt;}
.y3a{bottom:661.053333pt;}
.y214{bottom:668.573333pt;}
.y15e{bottom:669.213333pt;}
.y124{bottom:669.373333pt;}
.y16{bottom:670.013333pt;}
.ybe{bottom:670.493333pt;}
.y223{bottom:671.773333pt;}
.y105{bottom:672.573333pt;}
.y165{bottom:673.533333pt;}
.y7a{bottom:675.773333pt;}
.y146{bottom:677.053333pt;}
.y18b{bottom:680.093333pt;}
.y1d0{bottom:681.693333pt;}
.y147{bottom:682.333333pt;}
.ye6{bottom:683.133333pt;}
.y1b5{bottom:683.453333pt;}
.y8a{bottom:685.693333pt;}
.y28{bottom:686.013333pt;}
.y213{bottom:688.093333pt;}
.ybd{bottom:690.013333pt;}
.y39{bottom:690.173333pt;}
.y1e4{bottom:690.813333pt;}
.y15{bottom:691.613333pt;}
.y123{bottom:691.773333pt;}
.y104{bottom:692.093333pt;}
.y51{bottom:697.373333pt;}
.y1f3{bottom:697.533333pt;}
.y18a{bottom:702.653333pt;}
.y1b4{bottom:705.853333pt;}
.y222{bottom:709.213333pt;}
.ybc{bottom:709.533333pt;}
.y14{bottom:710.493333pt;}
.y79{bottom:713.373333pt;}
.y122{bottom:714.173333pt;}
.y145{bottom:718.013333pt;}
.y38{bottom:719.293333pt;}
.y50{bottom:719.933333pt;}
.y189{bottom:725.053333pt;}
.y212{bottom:725.533333pt;}
.y1b3{bottom:728.253333pt;}
.ybb{bottom:729.053333pt;}
.y13{bottom:730.653333pt;}
.y103{bottom:735.293333pt;}
.y78{bottom:735.773333pt;}
.y89{bottom:739.773333pt;}
.y4f{bottom:742.333333pt;}
.y221{bottom:746.653333pt;}
.y19c{bottom:747.613333pt;}
.y37{bottom:748.413333pt;}
.yba{bottom:748.733333pt;}
.y12{bottom:750.173333pt;}
.y1b2{bottom:750.813333pt;}
.y121{bottom:751.613333pt;}
.y1f2{bottom:752.413333pt;}
.ydc{bottom:754.813333pt;}
.y144{bottom:755.453333pt;}
.y77{bottom:758.173333pt;}
.y188{bottom:762.493333pt;}
.y211{bottom:762.973333pt;}
.y4e{bottom:764.733333pt;}
.y11{bottom:769.693333pt;}
.y15d{bottom:769.853333pt;}
.y19b{bottom:770.013333pt;}
.y1b1{bottom:773.213333pt;}
.y88{bottom:777.253333pt;}
.y36{bottom:777.573333pt;}
.y143{bottom:777.893333pt;}
.y76{bottom:780.773333pt;}
.y102{bottom:781.413333pt;}
.y210{bottom:782.693333pt;}
.y220{bottom:784.133333pt;}
.y187{bottom:785.093333pt;}
.yb9{bottom:786.213333pt;}
.y4d{bottom:787.333333pt;}
.y27{bottom:787.653333pt;}
.y10{bottom:789.253333pt;}
.y120{bottom:792.453333pt;}
.y1f1{bottom:793.573333pt;}
.y1b0{bottom:795.653333pt;}
.y87{bottom:799.813333pt;}
.y142{bottom:800.293333pt;}
.yaf{bottom:802.053333pt;}
.y20f{bottom:802.213333pt;}
.y75{bottom:803.173333pt;}
.y35{bottom:806.693333pt;}
.y15c{bottom:807.333333pt;}
.y186{bottom:807.493333pt;}
.yf{bottom:808.773333pt;}
.y4c{bottom:809.733333pt;}
.y1f0{bottom:815.973333pt;}
.y11f{bottom:816.933333pt;}
.y1af{bottom:818.213333pt;}
.y101{bottom:819.013333pt;}
.y20e{bottom:821.733333pt;}
.y86{bottom:822.213333pt;}
.y141{bottom:822.853333pt;}
.y74{bottom:825.573333pt;}
.yd6{bottom:826.533333pt;}
.ye{bottom:828.293333pt;}
.y15b{bottom:829.733333pt;}
.y185{bottom:830.053333pt;}
.y4b{bottom:832.293333pt;}
.y34{bottom:835.973333pt;}
.y1ef{bottom:838.533333pt;}
.y1cf{bottom:840.613333pt;}
.y100{bottom:841.413333pt;}
.y85{bottom:844.773333pt;}
.y140{bottom:845.253333pt;}
.yd{bottom:847.173333pt;}
.yd1{bottom:847.493333pt;}
.y15a{bottom:852.293333pt;}
.y184{bottom:852.453333pt;}
.y4a{bottom:854.693333pt;}
.y1ae{bottom:855.653333pt;}
.y20d{bottom:859.173333pt;}
.y1ee{bottom:860.933333pt;}
.y73{bottom:863.173333pt;}
.yff{bottom:863.813333pt;}
.y33{bottom:865.093333pt;}
.y84{bottom:867.173333pt;}
.yc{bottom:867.333333pt;}
.y159{bottom:874.693333pt;}
.y183{bottom:874.853333pt;}
.y26{bottom:875.973333pt;}
.y13f{bottom:876.933333pt;}
.y49{bottom:877.093333pt;}
.y1ad{bottom:878.053333pt;}
.y20c{bottom:878.533333pt;}
.yad{bottom:880.773333pt;}
.y1ed{bottom:883.333333pt;}
.y72{bottom:885.573333pt;}
.yfe{bottom:886.373333pt;}
.yb{bottom:886.853333pt;}
.y83{bottom:889.573333pt;}
.y32{bottom:894.213333pt;}
.y20b{bottom:895.653333pt;}
.y21f{bottom:896.613333pt;}
.y182{bottom:897.413333pt;}
.y13e{bottom:898.853333pt;}
.yd4{bottom:899.173333pt;}
.y11e{bottom:900.613333pt;}
.yab{bottom:900.773333pt;}
.ya{bottom:906.373333pt;}
.y71{bottom:907.973333pt;}
.yfd{bottom:908.773333pt;}
.y4{bottom:909.093333pt;}
.y82{bottom:912.133333pt;}
.y48{bottom:914.693333pt;}
.y20a{bottom:915.173333pt;}
.y181{bottom:919.813333pt;}
.y13d{bottom:920.773333pt;}
.ya4{bottom:921.413333pt;}
.y11d{bottom:923.013333pt;}
.y1ec{bottom:924.453333pt;}
.y9{bottom:925.893333pt;}
.y70{bottom:930.533333pt;}
.yfc{bottom:931.173333pt;}
.y31{bottom:931.653333pt;}
.y21e{bottom:934.053333pt;}
.y209{bottom:934.693333pt;}
.y21c{bottom:937.573333pt;}
.y180{bottom:942.213333pt;}
.y8{bottom:945.413333pt;}
.y47{bottom:948.453333pt;}
.y81{bottom:949.093333pt;}
.y1eb{bottom:952.133333pt;}
.y6f{bottom:952.933333pt;}
.y208{bottom:954.213333pt;}
.y13c{bottom:959.173333pt;}
.y3{bottom:964.453333pt;}
.y7{bottom:965.093333pt;}
.yd0{bottom:967.973333pt;}
.yfb{bottom:968.773333pt;}
.yd2{bottom:970.853333pt;}
.ya1{bottom:971.013333pt;}
.y21d{bottom:971.493333pt;}
.y207{bottom:973.733333pt;}
.y16e{bottom:974.693333pt;}
.y21b{bottom:977.093333pt;}
.y17f{bottom:979.813333pt;}
.y80{bottom:980.293333pt;}
.y30{bottom:980.453333pt;}
.y6{bottom:986.853333pt;}
.y164{bottom:990.213333pt;}
.y6e{bottom:990.373333pt;}
.y13b{bottom:991.013333pt;}
.y1ce{bottom:995.653333pt;}
.yfa{bottom:996.293333pt;}
.y17e{bottom:1004.293333pt;}
.y206{bottom:1009.573333pt;}
.y5{bottom:1010.853333pt;}
.y13a{bottom:1012.000000pt;}
.ya0{bottom:1012.320000pt;}
.y6d{bottom:1012.960000pt;}
.y1ac{bottom:1016.960000pt;}
.y44{bottom:1060.160000pt;}
.h1a{height:19.520000pt;}
.h14{height:20.000000pt;}
.hf{height:25.610625pt;}
.h19{height:30.375000pt;}
.h25{height:30.613125pt;}
.he{height:35.363437pt;}
.h17{height:39.585938pt;}
.h10{height:43.808438pt;}
.hc{height:43.812500pt;}
.h6{height:43.875000pt;}
.h1b{height:48.558750pt;}
.h2b{height:48.737806pt;}
.h16{height:48.960000pt;}
.h28{height:51.425374pt;}
.h8{height:51.750000pt;}
.h15{height:52.134375pt;}
.h2{height:52.781250pt;}
.h13{height:53.000000pt;}
.h27{height:53.152814pt;}
.h2d{height:53.186201pt;}
.h7{height:54.452500pt;}
.h5{height:57.240000pt;}
.h24{height:62.010000pt;}
.h26{height:62.533333pt;}
.hd{height:62.812500pt;}
.h12{height:66.750000pt;}
.h1f{height:70.912000pt;}
.h1c{height:71.040000pt;}
.h21{height:71.072000pt;}
.h1d{height:72.000000pt;}
.h4{height:72.090000pt;}
.h18{height:78.080000pt;}
.h9{height:88.510000pt;}
.h22{height:90.080000pt;}
.h23{height:100.125000pt;}
.h11{height:106.000000pt;}
.h29{height:106.852740pt;}
.ha{height:111.472500pt;}
.h2c{height:114.380479pt;}
.h2a{height:124.986705pt;}
.h20{height:142.720000pt;}
.h1e{height:143.706667pt;}
.hb{height:159.000000pt;}
.h3{height:212.000000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w11{width:43.840000pt;}
.w9{width:93.920000pt;}
.wa{width:93.952000pt;}
.w8{width:94.112000pt;}
.wc{width:94.240000pt;}
.wd{width:94.272000pt;}
.we{width:94.432000pt;}
.w5{width:94.592000pt;}
.w7{width:94.720000pt;}
.w6{width:94.752000pt;}
.w14{width:154.168271pt;}
.w13{width:155.133333pt;}
.wb{width:189.306667pt;}
.w4{width:189.466667pt;}
.w10{width:231.906667pt;}
.w12{width:289.986667pt;}
.wf{width:334.466667pt;}
.w16{width:367.586961pt;}
.w15{width:368.400000pt;}
.w3{width:793.759976pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x12{left:4.640000pt;}
.x50{left:6.559976pt;}
.x2e{left:8.640000pt;}
.x31{left:9.760000pt;}
.x18{left:12.160000pt;}
.x29{left:14.240000pt;}
.x2b{left:15.840000pt;}
.x1b{left:17.600000pt;}
.x2a{left:19.520000pt;}
.x1c{left:20.800000pt;}
.x34{left:24.320000pt;}
.x16{left:28.000000pt;}
.x1d{left:30.720000pt;}
.x26{left:33.760000pt;}
.x27{left:35.200000pt;}
.x32{left:38.240000pt;}
.x19{left:40.960000pt;}
.x1a{left:46.880000pt;}
.x30{left:48.480000pt;}
.x2c{left:51.880000pt;}
.x2f{left:53.000000pt;}
.x51{left:57.173333pt;}
.x33{left:73.160000pt;}
.x28{left:84.040000pt;}
.x2d{left:89.480000pt;}
.x23{left:99.080000pt;}
.x25{left:104.520000pt;}
.x3{left:113.471988pt;}
.x7{left:114.911988pt;}
.x11{left:118.591988pt;}
.x41{left:122.911988pt;}
.xc{left:129.471988pt;}
.x4e{left:132.351988pt;}
.xa{left:136.506655pt;}
.x37{left:137.466655pt;}
.x5{left:138.426655pt;}
.x3f{left:139.866655pt;}
.xd{left:145.466655pt;}
.x21{left:147.714667pt;}
.x8{left:150.106655pt;}
.x24{left:157.946667pt;}
.x4{left:160.666655pt;}
.x42{left:162.586643pt;}
.x43{left:167.706655pt;}
.x38{left:184.666655pt;}
.x3d{left:189.146655pt;}
.x39{left:208.666655pt;}
.x6{left:212.546655pt;}
.x17{left:255.266667pt;}
.x9{left:273.506655pt;}
.x10{left:305.506655pt;}
.x44{left:319.906643pt;}
.x3a{left:321.826643pt;}
.x45{left:325.026655pt;}
.x3b{left:327.266655pt;}
.x13{left:349.666667pt;}
.x35{left:356.893310pt;}
.x36{left:362.013322pt;}
.xb{left:368.573322pt;}
.x4b{left:377.533322pt;}
.x4f{left:395.293310pt;}
.x2{left:396.893322pt;}
.x46{left:425.853310pt;}
.x47{left:430.973322pt;}
.x14{left:444.253333pt;}
.x22{left:448.573333pt;}
.x4c{left:473.533310pt;}
.x4d{left:483.773322pt;}
.x1e{left:498.213310pt;}
.x1f{left:502.373322pt;}
.xe{left:505.253310pt;}
.xf{left:510.693322pt;}
.x48{left:529.573310pt;}
.x15{left:539.013333pt;}
.x49{left:636.773310pt;}
.x4a{left:647.039988pt;}
.x40{left:659.039988pt;}
.x20{left:664.319988pt;}
.x1{left:672.319988pt;}
.x3e{left:689.599988pt;}
.x3c{left:749.439988pt;}
}




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