
/* 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI0IiBoZWlnaHQ9IjQiPgo8cmVjdCB3aWR0aD0iNCIgaGVpZ2h0PSI0IiBmaWxsPSIjNDAzYzNmIj48L3JlY3Q+CjxwYXRoIGQ9Ik0wIDBMNCA0Wk00IDBMMCA0WiIgc3Ryb2tlLXdpZHRoPSIxIiBzdHJva2U9IiMxZTI5MmQiPjwvcGF0aD4KPC9zdmc+");
  }
  #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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI1IiBoZWlnaHQ9IjUiPgo8cmVjdCB3aWR0aD0iNSIgaGVpZ2h0PSI1IiBmaWxsPSIjOWU5ZTllIj48L3JlY3Q+CjxwYXRoIGQ9Ik0wIDVMNSAwWk02IDRMNCA2Wk0tMSAxTDEgLTFaIiBzdHJva2U9IiM4ODgiIHN0cm9rZS13aWR0aD0iMSI+PC9wYXRoPgo8L3N2Zz4=");
    -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(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABYAAAAWCAYAAADEtGw7AAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH3goQDSYgDiGofgAAAslJREFUOMvtlM9LFGEYx7/vvOPM6ywuuyPFihWFBUsdNnA6KLIh+QPx4KWExULdHQ/9A9EfUodYmATDYg/iRewQzklFWxcEBcGgEplDkDtI6sw4PzrIbrOuedBb9MALD7zv+3m+z4/3Bf7bZS2bzQIAcrmcMDExcTeXy10DAFVVAQDksgFUVZ1ljD3yfd+0LOuFpmnvVVW9GHhkZAQcxwkNDQ2FSCQyRMgJxnVdy7KstKZpn7nwha6urqqfTqfPBAJAuVymlNLXoigOhfd5nmeiKL5TVTV+lmIKwAOA7u5u6Lped2BsbOwjY6yf4zgQQkAIAcedaPR9H67r3uYBQFEUFItFtLe332lpaVkUBOHK3t5eRtf1DwAwODiIubk5DA8PM8bYW1EU+wEgCIJqsCAIQAiB7/u253k2BQDDMJBKpa4mEon5eDx+UxAESJL0uK2t7XosFlvSdf0QAEmlUnlRFJ9Waho2Qghc1/U9z3uWz+eX+Wr+lL6SZfleEAQIggA8z6OpqSknimIvYyybSCReMsZ6TislhCAIAti2Dc/zejVNWwCAavN8339j27YbTg0AGGM3WltbP4WhlRWq6Q/btrs1TVsYHx+vNgqKoqBUKn2NRqPFxsbGJzzP05puUlpt0ukyOI6z7zjOwNTU1OLo6CgmJyf/gA3DgKIoWF1d/cIY24/FYgOU0pp0z/Ityzo8Pj5OTk9PbwHA+vp6zWghDC+VSiuRSOQgGo32UErJ38CO42wdHR09LBQK3zKZDDY2NupmFmF4R0cHVlZWlmRZ/iVJUn9FeWWcCCE4ODjYtG27Z2Zm5juAOmgdGAB2d3cBADs7O8uSJN2SZfl+WKlpmpumaT6Yn58vn/fs6XmbhmHMNjc3tzDGFI7jYJrm5vb29sDa2trPC/9aiqJUy5pOp4f6+vqeJ5PJBAB0dnZe/t8NBajx/z37Df5OGX8d13xzAAAAAElFTkSuQmCC);
  }
}
/* Fancy CSS END */



.ff0{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1;src:url("fonts/font_0000_1ec276654102.woff")format("woff");}.ff1{font-family:ff1;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:ff2;src:url("fonts/font_0001_31cc5120ef63.woff")format("woff");}.ff2{font-family:ff2;line-height:0.966797;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("fonts/font_0002_988d0882029d.woff")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("fonts/font_0003_8138b61989fe.woff")format("woff");}.ff4{font-family:ff4;line-height:0.752441;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("fonts/font_0004_deb7c0dc76bf.woff")format("woff");}.ff5{font-family:ff5;line-height:0.758789;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("fonts/font_0005_1bed8109ce7c.woff")format("woff");}.ff6{font-family:ff6;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:ff7;src:url("fonts/font_0006_128fe4c5d9d8.woff")format("woff");}.ff7{font-family:ff7;line-height:1.107422;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("fonts/font_0007_2a89c8e1e6f9.woff")format("woff");}.ff8{font-family:ff8;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:ff9;src:url("fonts/font_0008_ac599db14319.woff")format("woff");}.ff9{font-family:ff9;line-height:0.948242;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("fonts/font_0009_848106b1b2ad.woff")format("woff");}.ffa{font-family:ffa;line-height:0.752441;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);}
.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);}
.v1{vertical-align:-74.160000px;}
.v2{vertical-align:-69.120000px;}
.v0{vertical-align:0.000000px;}
.ls1a{letter-spacing:-0.339600px;}
.ls7{letter-spacing:-0.259800px;}
.ls3{letter-spacing:-0.106800px;}
.ls4{letter-spacing:-0.053280px;}
.ls2{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.053280px;}
.ls1d{letter-spacing:0.185760px;}
.lse{letter-spacing:0.206400px;}
.ls17{letter-spacing:0.206640px;}
.ls12{letter-spacing:0.216000px;}
.ls11{letter-spacing:0.259800px;}
.ls1b{letter-spacing:0.259920px;}
.ls8{letter-spacing:0.306000px;}
.ls19{letter-spacing:0.306600px;}
.ls5{letter-spacing:0.360000px;}
.ls0{letter-spacing:0.386640px;}
.lsc{letter-spacing:0.506640px;}
.ls1{letter-spacing:0.566640px;}
.ls16{letter-spacing:0.612000px;}
.ls6{letter-spacing:0.666000px;}
.ls13{letter-spacing:0.666720px;}
.ls9{letter-spacing:0.720000px;}
.ls1e{letter-spacing:0.905760px;}
.ls10{letter-spacing:0.924000px;}
.lsf{letter-spacing:1.908000px;}
.ls18{letter-spacing:3.546720px;}
.ls14{letter-spacing:5.706720px;}
.lsb{letter-spacing:27.282720px;}
.lsa{letter-spacing:27.306720px;}
.ls1c{letter-spacing:113.166720px;}
.ls15{letter-spacing:143.922720px;}
.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;}
}
.wsc{word-spacing:-59.760000px;}
.ws8{word-spacing:-18.521280px;}
.ws9{word-spacing:-17.537280px;}
.wsa{word-spacing:-17.279280px;}
.wsd{word-spacing:-17.225280px;}
.ws3{word-spacing:-16.973280px;}
.wse{word-spacing:-16.919880px;}
.ws7{word-spacing:-16.819680px;}
.ws6{word-spacing:-16.666560px;}
.ws0{word-spacing:-16.613280px;}
.ws2{word-spacing:-16.560000px;}
.ws1{word-spacing:-16.506480px;}
.ws5{word-spacing:-16.353480px;}
.wsb{word-spacing:-15.228000px;}
.wsf{word-spacing:-15.012000px;}
.ws4{word-spacing:0.000000px;}
._8{margin-left:-2.936160px;}
._1{margin-left:-1.135440px;}
._0{width:1.434240px;}
._3{width:2.469120px;}
._2{width:4.422960px;}
._10{width:5.497200px;}
._14{width:6.873840px;}
._11{width:8.640720px;}
._13{width:10.159200px;}
._12{width:11.378880px;}
._4{width:18.720480px;}
._7{width:28.080720px;}
._9{width:44.526000px;}
._17{width:46.661520px;}
._6{width:61.200480px;}
._16{width:73.274400px;}
._18{width:83.661840px;}
._b{width:102.711600px;}
._f{width:110.826720px;}
._a{width:127.696080px;}
._d{width:129.357600px;}
._5{width:143.922720px;}
._c{width:179.353440px;}
._15{width:181.958880px;}
._e{width:195.906720px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs1{font-size:62.991941px;}
.y104{bottom:-12.240000px;}
.yfd{bottom:-12.060000px;}
.y0{bottom:0.000000px;}
.ybf{bottom:3.240000px;}
.yd3{bottom:4.320000px;}
.yf8{bottom:4.365000px;}
.y31{bottom:4.500000px;}
.ydd{bottom:4.545000px;}
.y1d{bottom:4.680000px;}
.yd2{bottom:4.860000px;}
.yf7{bottom:4.905000px;}
.yd5{bottom:5.040000px;}
.ydc{bottom:5.085000px;}
.yfc{bottom:6.480000px;}
.y160{bottom:6.660000px;}
.y162{bottom:6.840000px;}
.y61{bottom:10.620000px;}
.y40{bottom:11.880000px;}
.y2e{bottom:12.054000px;}
.y19{bottom:12.060000px;}
.y27{bottom:12.105000px;}
.y17{bottom:16.560000px;}
.yb3{bottom:16.590000px;}
.y91{bottom:16.605000px;}
.y64{bottom:16.740000px;}
.y68{bottom:16.785000px;}
.y63{bottom:16.920000px;}
.y67{bottom:16.965000px;}
.y2f{bottom:17.274000px;}
.y1a{bottom:17.280000px;}
.y33{bottom:17.310000px;}
.y28{bottom:17.325000px;}
.y25{bottom:17.460000px;}
.yca{bottom:17.820000px;}
.y6e{bottom:18.000000px;}
.y8d{bottom:18.180000px;}
.y157{bottom:19.080000px;}
.y1e{bottom:19.260000px;}
.y135{bottom:19.440000px;}
.y13a{bottom:19.485000px;}
.y133{bottom:19.620000px;}
.yc3{bottom:20.340000px;}
.ybe{bottom:20.520000px;}
.ycc{bottom:20.550000px;}
.yd0{bottom:21.060000px;}
.yab{bottom:23.040000px;}
.y3c{bottom:23.085000px;}
.y153{bottom:23.214000px;}
.y1c{bottom:23.220000px;}
.y7c{bottom:25.200000px;}
.y7f{bottom:25.560000px;}
.y5e{bottom:26.100000px;}
.y71{bottom:27.000000px;}
.y6f{bottom:27.180000px;}
.y154{bottom:28.434000px;}
.y3d{bottom:28.485000px;}
.y60{bottom:29.160000px;}
.y14a{bottom:32.220000px;}
.y144{bottom:32.250000px;}
.y95{bottom:34.380000px;}
.yb4{bottom:34.410000px;}
.y9c{bottom:34.560000px;}
.y92{bottom:34.605000px;}
.yc4{bottom:34.920000px;}
.yc8{bottom:35.094000px;}
.y16{bottom:35.100000px;}
.yb2{bottom:35.130000px;}
.y86{bottom:35.274000px;}
.y52{bottom:35.280000px;}
.y131{bottom:35.310000px;}
.y90{bottom:35.325000px;}
.y7e{bottom:35.640000px;}
.y6d{bottom:36.540000px;}
.yc2{bottom:37.620000px;}
.yc7{bottom:37.794000px;}
.ybd{bottom:37.800000px;}
.y10d{bottom:39.240000px;}
.y155{bottom:39.594000px;}
.y152{bottom:41.754000px;}
.y77{bottom:41.760000px;}
.y3b{bottom:41.805000px;}
.y99{bottom:41.940000px;}
.y89{bottom:43.740000px;}
.y5f{bottom:47.880000px;}
.ya0{bottom:53.100000px;}
.y15{bottom:53.640000px;}
.yaa{bottom:53.670000px;}
.y51{bottom:53.820000px;}
.y9b{bottom:53.850000px;}
.y8f{bottom:53.865000px;}
.yc1{bottom:54.900000px;}
.yc6{bottom:55.074000px;}
.ybc{bottom:55.080000px;}
.y2{bottom:56.160000px;}
.y10c{bottom:57.780000px;}
.y76{bottom:60.510000px;}
.ya6{bottom:72.360000px;}
.y88{bottom:72.390000px;}
.y9f{bottom:72.540000px;}
.ya4{bottom:72.585000px;}
.y1{bottom:73.476000px;}
.y9e{bottom:91.080000px;}
.ya3{bottom:91.125000px;}
.y201{bottom:91.296000px;}
.y59{bottom:92.376000px;}
.y106{bottom:92.556000px;}
.yc9{bottom:92.916000px;}
.y1d4{bottom:94.536000px;}
.y227{bottom:95.616000px;}
.y156{bottom:105.336000px;}
.y1a4{bottom:106.956000px;}
.y105{bottom:107.316000px;}
.y176{bottom:107.496000px;}
.y30{bottom:111.816000px;}
.y1d3{bottom:116.136000px;}
.y226{bottom:117.216000px;}
.y85{bottom:118.836000px;}
.y200{bottom:122.616000px;}
.y1a3{bottom:124.236000px;}
.y58{bottom:126.576000px;}
.yc5{bottom:128.196000px;}
.y103{bottom:128.736000px;}
.y175{bottom:129.096000px;}
.ya9{bottom:131.976000px;}
.y130{bottom:133.056000px;}
.y1d2{bottom:137.556000px;}
.y225{bottom:138.636000px;}
.y1ff{bottom:141.336000px;}
.y1a2{bottom:141.516000px;}
.y151{bottom:143.316000px;}
.ya8{bottom:149.256000px;}
.y2d{bottom:149.796000px;}
.y12f{bottom:150.330000px;}
.y174{bottom:150.510000px;}
.y1a1{bottom:158.790000px;}
.y1d1{bottom:159.150000px;}
.y224{bottom:160.230000px;}
.y1fe{bottom:160.590000px;}
.y57{bottom:164.550000px;}
.y102{bottom:165.990000px;}
.y84{bottom:168.870000px;}
.y173{bottom:172.110000px;}
.ya7{bottom:179.850000px;}
.y1d0{bottom:180.750000px;}
.y223{bottom:181.830000px;}
.y1fd{bottom:182.190000px;}
.y101{bottom:182.910000px;}
.y12e{bottom:183.810000px;}
.y2c{bottom:183.990000px;}
.y1a0{bottom:189.390000px;}
.y172{bottom:193.710000px;}
.ya5{bottom:194.610000px;}
.yc0{bottom:198.030000px;}
.y56{bottom:198.930000px;}
.y150{bottom:199.830000px;}
.y1cf{bottom:201.450000px;}
.y1fc{bottom:203.790000px;}
.y100{bottom:210.630000px;}
.y222{bottom:213.150000px;}
.y12d{bottom:218.010000px;}
.y19f{bottom:218.550000px;}
.y83{bottom:218.910000px;}
.y2b{bottom:221.970000px;}
.y1fb{bottom:225.210000px;}
.yff{bottom:229.350000px;}
.y221{bottom:230.430000px;}
.y1ce{bottom:230.610000px;}
.y55{bottom:233.130000px;}
.y19e{bottom:235.830000px;}
.y14f{bottom:237.810000px;}
.y171{bottom:243.570000px;}
.yfe{bottom:244.110000px;}
.y1fa{bottom:246.810000px;}
.y220{bottom:248.970000px;}
.y19d{bottom:253.110000px;}
.y2a{bottom:256.350000px;}
.y170{bottom:258.510000px;}
.y1cd{bottom:259.950000px;}
.yfb{bottom:265.350000px;}
.ybb{bottom:267.690000px;}
.y1f9{bottom:268.230000px;}
.y19c{bottom:270.390000px;}
.y54{bottom:271.110000px;}
.y14e{bottom:275.790000px;}
.y1cc{bottom:277.230000px;}
.y21f{bottom:279.030000px;}
.ya2{bottom:281.730000px;}
.y19b{bottom:287.670000px;}
.y1f8{bottom:289.830000px;}
.y29{bottom:290.550000px;}
.y82{bottom:290.730000px;}
.y1cb{bottom:294.510000px;}
.yfa{bottom:301.890000px;}
.y19a{bottom:304.950000px;}
.y53{bottom:305.490000px;}
.y21e{bottom:307.110000px;}
.y81{bottom:308.010000px;}
.y16f{bottom:308.370000px;}
.y1ca{bottom:311.790000px;}
.yf9{bottom:320.430000px;}
.y1f7{bottom:321.330000px;}
.y12c{bottom:321.870000px;}
.y199{bottom:322.050000px;}
.y26{bottom:324.930000px;}
.y80{bottom:325.110000px;}
.y21d{bottom:325.650000px;}
.y1c9{bottom:328.890000px;}
.yf6{bottom:335.370000px;}
.yba{bottom:337.575000px;}
.y1f6{bottom:338.655000px;}
.y198{bottom:339.375000px;}
.y50{bottom:339.735000px;}
.y7d{bottom:339.915000px;}
.y12b{bottom:340.455000px;}
.y21c{bottom:355.755000px;}
.yf5{bottom:356.655000px;}
.y1c8{bottom:358.275000px;}
.y16e{bottom:358.455000px;}
.y12a{bottom:358.995000px;}
.y24{bottom:359.175000px;}
.y14d{bottom:359.715000px;}
.y1f5{bottom:369.075000px;}
.y197{bottom:373.935000px;}
.y1c7{bottom:375.555000px;}
.yf4{bottom:377.895000px;}
.y14c{bottom:378.255000px;}
.y129{bottom:378.435000px;}
.y21b{bottom:383.655000px;}
.ya1{bottom:387.615000px;}
.y1f4{bottom:387.795000px;}
.y7b{bottom:390.675000px;}
.y1c6{bottom:392.835000px;}
.y14b{bottom:393.015000px;}
.y23{bottom:393.555000px;}
.yf3{bottom:399.315000px;}
.y128{bottom:400.035000px;}
.y239{bottom:400.755000px;}
.y21a{bottom:402.375000px;}
.y196{bottom:404.535000px;}
.y1f3{bottom:407.235000px;}
.y16d{bottom:408.495000px;}
.y1c5{bottom:409.935000px;}
.y238{bottom:420.195000px;}
.yf2{bottom:420.555000px;}
.yb9{bottom:421.275000px;}
.y127{bottom:421.455000px;}
.y195{bottom:423.075000px;}
.y4f{bottom:423.615000px;}
.y1c4{bottom:427.215000px;}
.y149{bottom:427.395000px;}
.y22{bottom:427.755000px;}
.y1f2{bottom:428.655000px;}
.y219{bottom:432.255000px;}
.yb8{bottom:438.555000px;}
.y7a{bottom:440.715000px;}
.y237{bottom:441.615000px;}
.yf1{bottom:441.795000px;}
.y16c{bottom:442.695000px;}
.y126{bottom:443.055000px;}
.y1c3{bottom:444.495000px;}
.y218{bottom:449.355000px;}
.y1f1{bottom:450.255000px;}
.y4e{bottom:454.215000px;}
.y194{bottom:454.575000px;}
.yb7{bottom:455.835000px;}
.y9d{bottom:456.195000px;}
.yf0{bottom:463.215000px;}
.y125{bottom:464.475000px;}
.y21{bottom:465.735000px;}
.yb6{bottom:470.595000px;}
.y4d{bottom:471.495000px;}
.y1f0{bottom:471.675000px;}
.y79{bottom:474.915000px;}
.y217{bottom:478.515000px;}
.y1c2{bottom:479.055000px;}
.yef{bottom:484.455000px;}
.y236{bottom:484.635000px;}
.y193{bottom:485.895000px;}
.y124{bottom:486.075000px;}
.y148{bottom:489.675000px;}
.y16b{bottom:492.735000px;}
.y1ef{bottom:493.275000px;}
.y1c1{bottom:496.335000px;}
.y216{bottom:497.055000px;}
.y4c{bottom:502.095000px;}
.y192{bottom:503.175000px;}
.y20{bottom:503.715000px;}
.yee{bottom:505.695000px;}
.y235{bottom:506.235000px;}
.y147{bottom:506.955000px;}
.y78{bottom:509.295000px;}
.y1c0{bottom:513.435000px;}
.y1ee{bottom:514.875000px;}
.y215{bottom:515.595000px;}
.y123{bottom:517.575000px;}
.y4b{bottom:521.355000px;}
.y191{bottom:521.715000px;}
.y146{bottom:525.495000px;}
.y16a{bottom:526.935000px;}
.yed{bottom:527.115000px;}
.y234{bottom:527.835000px;}
.y122{bottom:536.115000px;}
.y1ed{bottom:536.295000px;}
.yb5{bottom:539.175000px;}
.y145{bottom:540.255000px;}
.y190{bottom:541.155000px;}
.y1f{bottom:541.695000px;}
.y1bf{bottom:542.775000px;}
.y4a{bottom:542.955000px;}
.y75{bottom:543.495000px;}
.y214{bottom:547.095000px;}
.yec{bottom:548.355000px;}
.y233{bottom:549.255000px;}
.y121{bottom:555.555000px;}
.y1be{bottom:560.055000px;}
.y9a{bottom:562.035000px;}
.y18f{bottom:562.575000px;}
.y49{bottom:564.555000px;}
.y1ec{bottom:567.795000px;}
.yeb{bottom:569.595000px;}
.y143{bottom:574.635000px;}
.y120{bottom:576.975000px;}
.y1bd{bottom:577.335000px;}
.y1b{bottom:579.675000px;}
.y213{bottom:579.855000px;}
.y232{bottom:580.755000px;}
.y48{bottom:585.975000px;}
.y1eb{bottom:586.335000px;}
.yb1{bottom:589.215000px;}
.yea{bottom:591.015000px;}
.y18e{bottom:594.075000px;}
.y1bc{bottom:594.435000px;}
.y212{bottom:598.395000px;}
.y11f{bottom:598.575000px;}
.y231{bottom:599.295000px;}
.y1ea{bottom:605.805000px;}
.y47{bottom:607.605000px;}
.y169{bottom:611.205000px;}
.y18d{bottom:611.385000px;}
.y1bb{bottom:611.745000px;}
.ye9{bottom:612.285000px;}
.y18{bottom:617.685000px;}
.y230{bottom:618.765000px;}
.y11e{bottom:620.025000px;}
.y1e9{bottom:627.225000px;}
.y211{bottom:628.485000px;}
.y46{bottom:629.025000px;}
.y18c{bottom:629.925000px;}
.y98{bottom:630.645000px;}
.ye8{bottom:633.525000px;}
.y74{bottom:633.885000px;}
.y142{bottom:636.945000px;}
.y22f{bottom:640.185000px;}
.y11d{bottom:641.625000px;}
.y210{bottom:645.405000px;}
.y1ba{bottom:646.305000px;}
.y1e8{bottom:648.825000px;}
.y18b{bottom:649.365000px;}
.y45{bottom:650.625000px;}
.y73{bottom:651.165000px;}
.y14{bottom:652.065000px;}
.y141{bottom:654.225000px;}
.ye7{bottom:654.765000px;}
.yb0{bottom:657.825000px;}
.y168{bottom:658.545000px;}
.y22e{bottom:661.785000px;}
.y11c{bottom:663.225000px;}
.y1b9{bottom:663.585000px;}
.y72{bottom:668.445000px;}
.y44{bottom:670.065000px;}
.y1e7{bottom:670.425000px;}
.y18a{bottom:670.785000px;}
.y140{bottom:672.765000px;}
.y20f{bottom:674.565000px;}
.y167{bottom:675.465000px;}
.ye6{bottom:676.005000px;}
.y1b8{bottom:680.685000px;}
.y70{bottom:683.205000px;}
.y22d{bottom:683.385000px;}
.y13f{bottom:687.525000px;}
.y1e6{bottom:691.845000px;}
.y189{bottom:692.385000px;}
.y20e{bottom:693.105000px;}
.y11b{bottom:694.545000px;}
.ye5{bottom:697.425000px;}
.y1b7{bottom:697.965000px;}
.y43{bottom:700.665000px;}
.y97{bottom:702.465000px;}
.y166{bottom:703.365000px;}
.y11a{bottom:711.825000px;}
.y1e5{bottom:713.445000px;}
.y188{bottom:713.985000px;}
.y22c{bottom:714.705000px;}
.y1b6{bottom:715.245000px;}
.y42{bottom:715.425000px;}
.ye4{bottom:718.665000px;}
.y13e{bottom:721.905000px;}
.y20d{bottom:723.885000px;}
.y119{bottom:730.365000px;}
.y96{bottom:733.065000px;}
.y22b{bottom:733.425000px;}
.y165{bottom:733.965000px;}
.y1e4{bottom:734.865000px;}
.y6c{bottom:735.765000px;}
.y13{bottom:737.205000px;}
.ye3{bottom:739.905000px;}
.y20c{bottom:743.145000px;}
.yaf{bottom:744.945000px;}
.y187{bottom:745.305000px;}
.y1b5{bottom:745.845000px;}
.y94{bottom:748.005000px;}
.y164{bottom:748.725000px;}
.y118{bottom:749.805000px;}
.y41{bottom:753.405000px;}
.y12{bottom:754.485000px;}
.ye2{bottom:761.325000px;}
.y22a{bottom:762.585000px;}
.y186{bottom:764.745000px;}
.y1e3{bottom:766.365000px;}
.y117{bottom:771.405000px;}
.y163{bottom:772.665000px;}
.y1b4{bottom:776.445000px;}
.ye1{bottom:782.565000px;}
.y1e2{bottom:783.645000px;}
.y11{bottom:785.085000px;}
.y20b{bottom:786.165000px;}
.y3f{bottom:787.785000px;}
.y116{bottom:792.825000px;}
.y229{bottom:793.185000px;}
.y1b3{bottom:795.165000px;}
.y185{bottom:796.065000px;}
.y161{bottom:796.425000px;}
.y1e1{bottom:802.185000px;}
.y10{bottom:802.365000px;}
.y6b{bottom:803.625000px;}
.ye0{bottom:803.805000px;}
.y13d{bottom:805.425000px;}
.y20a{bottom:807.765000px;}
.y228{bottom:812.625000px;}
.yae{bottom:813.525000px;}
.y115{bottom:814.425000px;}
.y184{bottom:814.785000px;}
.y93{bottom:816.585000px;}
.y15f{bottom:820.365000px;}
.y6a{bottom:820.725000px;}
.yf{bottom:820.905000px;}
.y1e0{bottom:821.625000px;}
.y3e{bottom:821.985000px;}
.ydf{bottom:825.225000px;}
.y209{bottom:829.365000px;}
.y13c{bottom:833.145000px;}
.y69{bottom:834.045000px;}
.y114{bottom:835.125000px;}
.y1b2{bottom:836.025000px;}
.ye{bottom:840.165000px;}
.y1df{bottom:843.045000px;}
.y15e{bottom:844.125000px;}
.yde{bottom:846.465000px;}
.y13b{bottom:851.865000px;}
.y113{bottom:854.565000px;}
.y183{bottom:855.645000px;}
.y3a{bottom:856.365000px;}
.y1b1{bottom:857.445000px;}
.y208{bottom:860.685000px;}
.yd{bottom:861.765000px;}
.y15d{bottom:863.565000px;}
.y1de{bottom:864.645000px;}
.y66{bottom:866.085000px;}
.y8e{bottom:866.445000px;}
.y139{bottom:866.625000px;}
.ydb{bottom:867.705000px;}
.y112{bottom:876.030000px;}
.y182{bottom:877.290000px;}
.y1b0{bottom:879.090000px;}
.y207{bottom:879.450000px;}
.yad{bottom:882.150000px;}
.y15c{bottom:882.870000px;}
.y1dd{bottom:886.290000px;}
.yda{bottom:889.170000px;}
.yc{bottom:894.570000px;}
.y65{bottom:898.350000px;}
.y181{bottom:898.710000px;}
.y1af{bottom:900.690000px;}
.y138{bottom:900.870000px;}
.y15b{bottom:902.310000px;}
.y111{bottom:907.530000px;}
.y1dc{bottom:907.710000px;}
.yd9{bottom:910.410000px;}
.y39{bottom:912.930000px;}
.yb{bottom:913.290000px;}
.y180{bottom:920.310000px;}
.y1ae{bottom:922.110000px;}
.y110{bottom:924.810000px;}
.y1db{bottom:929.310000px;}
.y62{bottom:930.390000px;}
.ya{bottom:930.570000px;}
.yd8{bottom:931.650000px;}
.y8c{bottom:935.070000px;}
.y137{bottom:935.250000px;}
.y15a{bottom:937.590000px;}
.y17f{bottom:941.730000px;}
.y1ad{bottom:943.710000px;}
.y38{bottom:947.130000px;}
.yac{bottom:950.730000px;}
.yd7{bottom:953.070000px;}
.y159{bottom:954.510000px;}
.y10f{bottom:955.410000px;}
.y9{bottom:960.990000px;}
.y5d{bottom:962.610000px;}
.y206{bottom:963.330000px;}
.y1ac{bottom:964.410000px;}
.y8b{bottom:969.450000px;}
.y10e{bottom:970.170000px;}
.y17e{bottom:973.230000px;}
.yd6{bottom:974.310000px;}
.y37{bottom:981.510000px;}
.y1da{bottom:982.230000px;}
.y205{bottom:984.930000px;}
.y10b{bottom:991.410000px;}
.y8{bottom:991.770000px;}
.y1ab{bottom:993.750000px;}
.yd4{bottom:995.550000px;}
.y1d9{bottom:999.510000px;}
.y158{bottom:1000.950000px;}
.y136{bottom:1003.830000px;}
.y204{bottom:1006.350000px;}
.y17d{bottom:1011.210000px;}
.y36{bottom:1015.710000px;}
.yd1{bottom:1016.970000px;}
.y1d8{bottom:1018.050000px;}
.y8a{bottom:1019.310000px;}
.y7{bottom:1022.370000px;}
.y1aa{bottom:1024.350000px;}
.y17c{bottom:1032.810000px;}
.y203{bottom:1037.850000px;}
.y134{bottom:1038.030000px;}
.ycf{bottom:1038.210000px;}
.y5c{bottom:1040.370000px;}
.y1a9{bottom:1042.890000px;}
.y1d7{bottom:1049.370000px;}
.y6{bottom:1052.970000px;}
.y35{bottom:1053.690000px;}
.y17b{bottom:1054.230000px;}
.y202{bottom:1056.390000px;}
.y5b{bottom:1057.650000px;}
.y1a8{bottom:1060.170000px;}
.y87{bottom:1069.350000px;}
.y132{bottom:1072.230000px;}
.y5a{bottom:1074.750000px;}
.y17a{bottom:1075.830000px;}
.y1a7{bottom:1077.450000px;}
.y10a{bottom:1079.970000px;}
.y1d6{bottom:1080.870000px;}
.y34{bottom:1088.070000px;}
.yce{bottom:1089.330000px;}
.y5{bottom:1090.770000px;}
.y1a6{bottom:1094.730000px;}
.y109{bottom:1095.630000px;}
.y179{bottom:1097.250000px;}
.y1d5{bottom:1099.410000px;}
.ycd{bottom:1106.610000px;}
.y108{bottom:1111.290000px;}
.y4{bottom:1116.690000px;}
.y178{bottom:1118.850000px;}
.ycb{bottom:1121.370000px;}
.y32{bottom:1122.270000px;}
.y1a5{bottom:1125.330000px;}
.y107{bottom:1126.770000px;}
.y177{bottom:1140.480000px;}
.y3{bottom:1142.640000px;}
.h2c{height:18.540000px;}
.h2e{height:18.576000px;}
.h2d{height:18.720000px;}
.h24{height:20.520000px;}
.h27{height:20.556000px;}
.h25{height:20.700000px;}
.h26{height:20.736000px;}
.h2f{height:23.040000px;}
.h30{height:30.600000px;}
.hf{height:31.320000px;}
.h10{height:31.356000px;}
.h5{height:33.480000px;}
.ha{height:33.516000px;}
.h9{height:33.660000px;}
.h22{height:34.416000px;}
.h21{height:34.560000px;}
.h23{height:35.100000px;}
.h7{height:37.260000px;}
.h6{height:37.296000px;}
.h2b{height:46.260000px;}
.h2a{height:46.296000px;}
.h3{height:46.659558px;}
.h18{height:49.140000px;}
.h29{height:49.176000px;}
.h14{height:49.320000px;}
.h31{height:49.356000px;}
.h15{height:50.040000px;}
.h12{height:51.840000px;}
.h11{height:52.020000px;}
.h8{height:53.603086px;}
.h16{height:55.800000px;}
.hb{height:55.836000px;}
.h1a{height:55.980000px;}
.hd{height:56.320312px;}
.he{height:61.920000px;}
.h2{height:62.327813px;}
.h4{height:67.680000px;}
.h1e{height:67.716000px;}
.hc{height:67.860000px;}
.h19{height:67.896000px;}
.h20{height:68.940000px;}
.h1f{height:68.976000px;}
.h28{height:71.820000px;}
.h13{height:74.556000px;}
.h1d{height:86.400000px;}
.h17{height:86.436000px;}
.h1b{height:105.120000px;}
.h1c{height:105.156000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.we{width:28.260000px;}
.w5{width:28.440000px;}
.wc{width:29.340000px;}
.w7{width:29.880000px;}
.w1c{width:35.460000px;}
.w6{width:35.856000px;}
.w17{width:38.916000px;}
.w18{width:39.060000px;}
.w1e{width:39.780000px;}
.wd{width:41.076000px;}
.w2e{width:41.760000px;}
.w2f{width:41.796000px;}
.w32{width:42.120000px;}
.w3c{width:42.300000px;}
.w3d{width:42.336000px;}
.w3e{width:42.480000px;}
.w66{width:43.416000px;}
.w65{width:43.560000px;}
.w60{width:45.756000px;}
.w4e{width:45.900000px;}
.w4f{width:45.936000px;}
.w4d{width:46.080000px;}
.w4c{width:46.116000px;}
.w50{width:46.260000px;}
.w47{width:47.916000px;}
.w61{width:48.960000px;}
.w23{width:49.680000px;}
.w24{width:49.896000px;}
.w45{width:51.300000px;}
.w33{width:52.200000px;}
.w5a{width:52.380000px;}
.w5b{width:52.416000px;}
.w59{width:52.596000px;}
.w5c{width:52.740000px;}
.w49{width:56.700000px;}
.w20{width:60.480000px;}
.w36{width:61.560000px;}
.w39{width:61.740000px;}
.w38{width:61.920000px;}
.w37{width:62.136000px;}
.w25{width:63.000000px;}
.w22{width:63.036000px;}
.w29{width:63.720000px;}
.w15{width:64.440000px;}
.w46{width:66.240000px;}
.w48{width:66.420000px;}
.w56{width:71.820000px;}
.w55{width:71.856000px;}
.w57{width:72.000000px;}
.w14{width:73.116000px;}
.w13{width:73.260000px;}
.w12{width:73.296000px;}
.w5e{width:73.656000px;}
.w62{width:73.980000px;}
.w63{width:74.016000px;}
.wb{width:77.940000px;}
.w28{width:82.476000px;}
.w8{width:82.800000px;}
.w4{width:83.160000px;}
.w4a{width:83.196000px;}
.w2a{width:83.520000px;}
.w3a{width:84.276000px;}
.w2d{width:84.456000px;}
.w52{width:84.636000px;}
.w51{width:84.780000px;}
.w1b{width:88.236000px;}
.wf{width:92.520000px;}
.w5d{width:94.860000px;}
.w30{width:95.040000px;}
.w10{width:96.156000px;}
.w1f{width:97.056000px;}
.w44{width:97.596000px;}
.w9{width:101.916000px;}
.w2b{width:105.516000px;}
.w26{width:116.136000px;}
.w1d{width:118.296000px;}
.w54{width:118.476000px;}
.w53{width:124.200000px;}
.w34{width:126.396000px;}
.w42{width:137.376000px;}
.w41{width:137.556000px;}
.w40{width:153.930000px;}
.w43{width:205.230000px;}
.w3b{width:217.830000px;}
.w35{width:222.510000px;}
.w21{width:233.130000px;}
.w1a{width:235.830000px;}
.w58{width:243.750000px;}
.w11{width:244.110000px;}
.w3f{width:248.430000px;}
.w2c{width:264.630000px;}
.w4b{width:275.250000px;}
.w19{width:275.655000px;}
.w27{width:277.230000px;}
.w16{width:284.070000px;}
.w64{width:303.015000px;}
.w5f{width:307.155000px;}
.wa{width:310.575000px;}
.w3{width:313.635000px;}
.w31{width:456.225000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x15{left:7.740000px;}
.x6a{left:9.000000px;}
.xe{left:10.080000px;}
.x17{left:11.340000px;}
.xc{left:12.600000px;}
.xb{left:14.040000px;}
.x7e{left:15.150000px;}
.x1e{left:16.200000px;}
.x2c{left:17.460000px;}
.x73{left:18.720000px;}
.x39{left:19.800000px;}
.x4d{left:20.880000px;}
.x12{left:22.320000px;}
.x3d{left:23.760000px;}
.x40{left:24.840000px;}
.x24{left:26.100000px;}
.x1b{left:27.360000px;}
.x35{left:29.340000px;}
.x22{left:31.140000px;}
.x25{left:32.400000px;}
.x64{left:33.660000px;}
.x16{left:34.920000px;}
.x75{left:36.000000px;}
.xa{left:37.260000px;}
.x26{left:39.960000px;}
.x51{left:41.040000px;}
.x21{left:42.300000px;}
.x50{left:43.380000px;}
.x18{left:44.670000px;}
.x14{left:47.010000px;}
.x49{left:48.630000px;}
.x3c{left:52.560000px;}
.x37{left:54.900000px;}
.x56{left:56.700000px;}
.x67{left:62.325000px;}
.x66{left:70.410000px;}
.x7f{left:100.655987px;}
.x2{left:106.235987px;}
.x88{left:111.275987px;}
.x32{left:114.525000px;}
.x2e{left:118.614000px;}
.x52{left:122.435987px;}
.x3{left:127.475987px;}
.x4a{left:132.339000px;}
.x33{left:138.095987px;}
.x53{left:154.289987px;}
.x8{left:156.819000px;}
.x19{left:159.329987px;}
.x89{left:186.689987px;}
.x8a{left:201.449987px;}
.x76{left:232.050000px;}
.x86{left:244.334987px;}
.x87{left:258.914987px;}
.x68{left:313.095000px;}
.x5d{left:325.515000px;}
.x57{left:330.015000px;}
.x3e{left:340.635000px;}
.x34{left:343.515000px;}
.x27{left:351.975000px;}
.x63{left:356.475000px;}
.x5e{left:368.535000px;}
.x4b{left:372.495000px;}
.x6f{left:383.115000px;}
.x45{left:385.095000px;}
.x2f{left:391.575000px;}
.x4{left:395.534987px;}
.x3f{left:404.385000px;}
.x5{left:410.144987px;}
.x5f{left:411.585000px;}
.x7b{left:414.825000px;}
.x1a{left:418.605000px;}
.x9{left:421.485000px;}
.x77{left:424.005000px;}
.x28{left:425.985000px;}
.x70{left:429.945000px;}
.x6{left:431.924987px;}
.x85{left:438.044987px;}
.x1{left:442.364987px;}
.x7{left:446.504987px;}
.x58{left:453.705000px;}
.x41{left:454.965000px;}
.x4c{left:457.665000px;}
.x80{left:459.285000px;}
.x69{left:463.605000px;}
.x36{left:468.645000px;}
.x30{left:470.985000px;}
.x71{left:476.745000px;}
.x1c{left:497.265000px;}
.x29{left:499.965000px;}
.x81{left:503.745000px;}
.xd{left:505.365000px;}
.x31{left:510.765000px;}
.x59{left:515.625000px;}
.x72{left:523.545000px;}
.x1d{left:527.505000px;}
.x6b{left:530.745000px;}
.x46{left:532.905000px;}
.xf{left:534.525000px;}
.x60{left:541.005000px;}
.x4e{left:542.625000px;}
.x82{left:548.025000px;}
.x8b{left:551.804987px;}
.x42{left:555.945000px;}
.x54{left:563.730000px;}
.x8c{left:566.609987px;}
.x1f{left:569.490000px;}
.x10{left:571.110000px;}
.x2a{left:573.990000px;}
.x5a{left:577.770000px;}
.x6c{left:579.390000px;}
.x61{left:584.070000px;}
.x4f{left:585.150000px;}
.x38{left:587.670000px;}
.x7c{left:588.930000px;}
.x83{left:592.350000px;}
.x47{left:596.670000px;}
.x20{left:598.290000px;}
.x11{left:601.350000px;}
.x43{left:606.570000px;}
.x74{left:616.650000px;}
.x62{left:627.090000px;}
.x3a{left:628.170000px;}
.x84{left:636.630000px;}
.x7d{left:637.890000px;}
.x5b{left:639.690000px;}
.x78{left:641.850000px;}
.x6d{left:646.530000px;}
.x2b{left:647.970000px;}
.x65{left:649.410000px;}
.x55{left:659.670000px;}
.x44{left:670.290000px;}
.x48{left:680.910000px;}
.x13{left:684.510000px;}
.x23{left:691.170000px;}
.x5c{left:702.150000px;}
.x6e{left:703.230000px;}
.x7a{left:712.770000px;}
.x79{left:714.570000px;}
.x2d{left:721.980000px;}
.x3b{left:725.940000px;}
@media print{
.v1{vertical-align:-65.920000pt;}
.v2{vertical-align:-61.440000pt;}
.v0{vertical-align:0.000000pt;}
.ls1a{letter-spacing:-0.301867pt;}
.ls7{letter-spacing:-0.230933pt;}
.ls3{letter-spacing:-0.094933pt;}
.ls4{letter-spacing:-0.047360pt;}
.ls2{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.047360pt;}
.ls1d{letter-spacing:0.165120pt;}
.lse{letter-spacing:0.183467pt;}
.ls17{letter-spacing:0.183680pt;}
.ls12{letter-spacing:0.192000pt;}
.ls11{letter-spacing:0.230933pt;}
.ls1b{letter-spacing:0.231040pt;}
.ls8{letter-spacing:0.272000pt;}
.ls19{letter-spacing:0.272533pt;}
.ls5{letter-spacing:0.320000pt;}
.ls0{letter-spacing:0.343680pt;}
.lsc{letter-spacing:0.450347pt;}
.ls1{letter-spacing:0.503680pt;}
.ls16{letter-spacing:0.544000pt;}
.ls6{letter-spacing:0.592000pt;}
.ls13{letter-spacing:0.592640pt;}
.ls9{letter-spacing:0.640000pt;}
.ls1e{letter-spacing:0.805120pt;}
.ls10{letter-spacing:0.821333pt;}
.lsf{letter-spacing:1.696000pt;}
.ls18{letter-spacing:3.152640pt;}
.ls14{letter-spacing:5.072640pt;}
.lsb{letter-spacing:24.251307pt;}
.lsa{letter-spacing:24.272640pt;}
.ls1c{letter-spacing:100.592640pt;}
.ls15{letter-spacing:127.931307pt;}
.wsc{word-spacing:-53.120000pt;}
.ws8{word-spacing:-16.463360pt;}
.ws9{word-spacing:-15.588693pt;}
.wsa{word-spacing:-15.359360pt;}
.wsd{word-spacing:-15.311360pt;}
.ws3{word-spacing:-15.087360pt;}
.wse{word-spacing:-15.039893pt;}
.ws7{word-spacing:-14.950827pt;}
.ws6{word-spacing:-14.814720pt;}
.ws0{word-spacing:-14.767360pt;}
.ws2{word-spacing:-14.720000pt;}
.ws1{word-spacing:-14.672427pt;}
.ws5{word-spacing:-14.536427pt;}
.wsb{word-spacing:-13.536000pt;}
.wsf{word-spacing:-13.344000pt;}
.ws4{word-spacing:0.000000pt;}
._8{margin-left:-2.609920pt;}
._1{margin-left:-1.009280pt;}
._0{width:1.274880pt;}
._3{width:2.194773pt;}
._2{width:3.931520pt;}
._10{width:4.886400pt;}
._14{width:6.110080pt;}
._11{width:7.680640pt;}
._13{width:9.030400pt;}
._12{width:10.114560pt;}
._4{width:16.640427pt;}
._7{width:24.960640pt;}
._9{width:39.578667pt;}
._17{width:41.476907pt;}
._6{width:54.400427pt;}
._16{width:65.132800pt;}
._18{width:74.366080pt;}
._b{width:91.299200pt;}
._f{width:98.512640pt;}
._a{width:113.507627pt;}
._d{width:114.984533pt;}
._5{width:127.931307pt;}
._c{width:159.425280pt;}
._15{width:161.741227pt;}
._e{width:174.139307pt;}
.fs2{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:55.992837pt;}
.y104{bottom:-10.880000pt;}
.yfd{bottom:-10.720000pt;}
.y0{bottom:0.000000pt;}
.ybf{bottom:2.880000pt;}
.yd3{bottom:3.840000pt;}
.yf8{bottom:3.880000pt;}
.y31{bottom:4.000000pt;}
.ydd{bottom:4.040000pt;}
.y1d{bottom:4.160000pt;}
.yd2{bottom:4.320000pt;}
.yf7{bottom:4.360000pt;}
.yd5{bottom:4.480000pt;}
.ydc{bottom:4.520000pt;}
.yfc{bottom:5.760000pt;}
.y160{bottom:5.920000pt;}
.y162{bottom:6.080000pt;}
.y61{bottom:9.440000pt;}
.y40{bottom:10.560000pt;}
.y2e{bottom:10.714667pt;}
.y19{bottom:10.720000pt;}
.y27{bottom:10.760000pt;}
.y17{bottom:14.720000pt;}
.yb3{bottom:14.746667pt;}
.y91{bottom:14.760000pt;}
.y64{bottom:14.880000pt;}
.y68{bottom:14.920000pt;}
.y63{bottom:15.040000pt;}
.y67{bottom:15.080000pt;}
.y2f{bottom:15.354667pt;}
.y1a{bottom:15.360000pt;}
.y33{bottom:15.386667pt;}
.y28{bottom:15.400000pt;}
.y25{bottom:15.520000pt;}
.yca{bottom:15.840000pt;}
.y6e{bottom:16.000000pt;}
.y8d{bottom:16.160000pt;}
.y157{bottom:16.960000pt;}
.y1e{bottom:17.120000pt;}
.y135{bottom:17.280000pt;}
.y13a{bottom:17.320000pt;}
.y133{bottom:17.440000pt;}
.yc3{bottom:18.080000pt;}
.ybe{bottom:18.240000pt;}
.ycc{bottom:18.266667pt;}
.yd0{bottom:18.720000pt;}
.yab{bottom:20.480000pt;}
.y3c{bottom:20.520000pt;}
.y153{bottom:20.634667pt;}
.y1c{bottom:20.640000pt;}
.y7c{bottom:22.400000pt;}
.y7f{bottom:22.720000pt;}
.y5e{bottom:23.200000pt;}
.y71{bottom:24.000000pt;}
.y6f{bottom:24.160000pt;}
.y154{bottom:25.274667pt;}
.y3d{bottom:25.320000pt;}
.y60{bottom:25.920000pt;}
.y14a{bottom:28.640000pt;}
.y144{bottom:28.666667pt;}
.y95{bottom:30.560000pt;}
.yb4{bottom:30.586667pt;}
.y9c{bottom:30.720000pt;}
.y92{bottom:30.760000pt;}
.yc4{bottom:31.040000pt;}
.yc8{bottom:31.194667pt;}
.y16{bottom:31.200000pt;}
.yb2{bottom:31.226667pt;}
.y86{bottom:31.354667pt;}
.y52{bottom:31.360000pt;}
.y131{bottom:31.386667pt;}
.y90{bottom:31.400000pt;}
.y7e{bottom:31.680000pt;}
.y6d{bottom:32.480000pt;}
.yc2{bottom:33.440000pt;}
.yc7{bottom:33.594667pt;}
.ybd{bottom:33.600000pt;}
.y10d{bottom:34.880000pt;}
.y155{bottom:35.194667pt;}
.y152{bottom:37.114667pt;}
.y77{bottom:37.120000pt;}
.y3b{bottom:37.160000pt;}
.y99{bottom:37.280000pt;}
.y89{bottom:38.880000pt;}
.y5f{bottom:42.560000pt;}
.ya0{bottom:47.200000pt;}
.y15{bottom:47.680000pt;}
.yaa{bottom:47.706667pt;}
.y51{bottom:47.840000pt;}
.y9b{bottom:47.866667pt;}
.y8f{bottom:47.880000pt;}
.yc1{bottom:48.800000pt;}
.yc6{bottom:48.954667pt;}
.ybc{bottom:48.960000pt;}
.y2{bottom:49.920000pt;}
.y10c{bottom:51.360000pt;}
.y76{bottom:53.786667pt;}
.ya6{bottom:64.320000pt;}
.y88{bottom:64.346667pt;}
.y9f{bottom:64.480000pt;}
.ya4{bottom:64.520000pt;}
.y1{bottom:65.312000pt;}
.y9e{bottom:80.960000pt;}
.ya3{bottom:81.000000pt;}
.y201{bottom:81.152000pt;}
.y59{bottom:82.112000pt;}
.y106{bottom:82.272000pt;}
.yc9{bottom:82.592000pt;}
.y1d4{bottom:84.032000pt;}
.y227{bottom:84.992000pt;}
.y156{bottom:93.632000pt;}
.y1a4{bottom:95.072000pt;}
.y105{bottom:95.392000pt;}
.y176{bottom:95.552000pt;}
.y30{bottom:99.392000pt;}
.y1d3{bottom:103.232000pt;}
.y226{bottom:104.192000pt;}
.y85{bottom:105.632000pt;}
.y200{bottom:108.992000pt;}
.y1a3{bottom:110.432000pt;}
.y58{bottom:112.512000pt;}
.yc5{bottom:113.952000pt;}
.y103{bottom:114.432000pt;}
.y175{bottom:114.752000pt;}
.ya9{bottom:117.312000pt;}
.y130{bottom:118.272000pt;}
.y1d2{bottom:122.272000pt;}
.y225{bottom:123.232000pt;}
.y1ff{bottom:125.632000pt;}
.y1a2{bottom:125.792000pt;}
.y151{bottom:127.392000pt;}
.ya8{bottom:132.672000pt;}
.y2d{bottom:133.152000pt;}
.y12f{bottom:133.626667pt;}
.y174{bottom:133.786667pt;}
.y1a1{bottom:141.146667pt;}
.y1d1{bottom:141.466667pt;}
.y224{bottom:142.426667pt;}
.y1fe{bottom:142.746667pt;}
.y57{bottom:146.266667pt;}
.y102{bottom:147.546667pt;}
.y84{bottom:150.106667pt;}
.y173{bottom:152.986667pt;}
.ya7{bottom:159.866667pt;}
.y1d0{bottom:160.666667pt;}
.y223{bottom:161.626667pt;}
.y1fd{bottom:161.946667pt;}
.y101{bottom:162.586667pt;}
.y12e{bottom:163.386667pt;}
.y2c{bottom:163.546667pt;}
.y1a0{bottom:168.346667pt;}
.y172{bottom:172.186667pt;}
.ya5{bottom:172.986667pt;}
.yc0{bottom:176.026667pt;}
.y56{bottom:176.826667pt;}
.y150{bottom:177.626667pt;}
.y1cf{bottom:179.066667pt;}
.y1fc{bottom:181.146667pt;}
.y100{bottom:187.226667pt;}
.y222{bottom:189.466667pt;}
.y12d{bottom:193.786667pt;}
.y19f{bottom:194.266667pt;}
.y83{bottom:194.586667pt;}
.y2b{bottom:197.306667pt;}
.y1fb{bottom:200.186667pt;}
.yff{bottom:203.866667pt;}
.y221{bottom:204.826667pt;}
.y1ce{bottom:204.986667pt;}
.y55{bottom:207.226667pt;}
.y19e{bottom:209.626667pt;}
.y14f{bottom:211.386667pt;}
.y171{bottom:216.506667pt;}
.yfe{bottom:216.986667pt;}
.y1fa{bottom:219.386667pt;}
.y220{bottom:221.306667pt;}
.y19d{bottom:224.986667pt;}
.y2a{bottom:227.866667pt;}
.y170{bottom:229.786667pt;}
.y1cd{bottom:231.066667pt;}
.yfb{bottom:235.866667pt;}
.ybb{bottom:237.946667pt;}
.y1f9{bottom:238.426667pt;}
.y19c{bottom:240.346667pt;}
.y54{bottom:240.986667pt;}
.y14e{bottom:245.146667pt;}
.y1cc{bottom:246.426667pt;}
.y21f{bottom:248.026667pt;}
.ya2{bottom:250.426667pt;}
.y19b{bottom:255.706667pt;}
.y1f8{bottom:257.626667pt;}
.y29{bottom:258.266667pt;}
.y82{bottom:258.426667pt;}
.y1cb{bottom:261.786667pt;}
.yfa{bottom:268.346667pt;}
.y19a{bottom:271.066667pt;}
.y53{bottom:271.546667pt;}
.y21e{bottom:272.986667pt;}
.y81{bottom:273.786667pt;}
.y16f{bottom:274.106667pt;}
.y1ca{bottom:277.146667pt;}
.yf9{bottom:284.826667pt;}
.y1f7{bottom:285.626667pt;}
.y12c{bottom:286.106667pt;}
.y199{bottom:286.266667pt;}
.y26{bottom:288.826667pt;}
.y80{bottom:288.986667pt;}
.y21d{bottom:289.466667pt;}
.y1c9{bottom:292.346667pt;}
.yf6{bottom:298.106667pt;}
.yba{bottom:300.066667pt;}
.y1f6{bottom:301.026667pt;}
.y198{bottom:301.666667pt;}
.y50{bottom:301.986667pt;}
.y7d{bottom:302.146667pt;}
.y12b{bottom:302.626667pt;}
.y21c{bottom:316.226667pt;}
.yf5{bottom:317.026667pt;}
.y1c8{bottom:318.466667pt;}
.y16e{bottom:318.626667pt;}
.y12a{bottom:319.106667pt;}
.y24{bottom:319.266667pt;}
.y14d{bottom:319.746667pt;}
.y1f5{bottom:328.066667pt;}
.y197{bottom:332.386667pt;}
.y1c7{bottom:333.826667pt;}
.yf4{bottom:335.906667pt;}
.y14c{bottom:336.226667pt;}
.y129{bottom:336.386667pt;}
.y21b{bottom:341.026667pt;}
.ya1{bottom:344.546667pt;}
.y1f4{bottom:344.706667pt;}
.y7b{bottom:347.266667pt;}
.y1c6{bottom:349.186667pt;}
.y14b{bottom:349.346667pt;}
.y23{bottom:349.826667pt;}
.yf3{bottom:354.946667pt;}
.y128{bottom:355.586667pt;}
.y239{bottom:356.226667pt;}
.y21a{bottom:357.666667pt;}
.y196{bottom:359.586667pt;}
.y1f3{bottom:361.986667pt;}
.y16d{bottom:363.106667pt;}
.y1c5{bottom:364.386667pt;}
.y238{bottom:373.506667pt;}
.yf2{bottom:373.826667pt;}
.yb9{bottom:374.466667pt;}
.y127{bottom:374.626667pt;}
.y195{bottom:376.066667pt;}
.y4f{bottom:376.546667pt;}
.y1c4{bottom:379.746667pt;}
.y149{bottom:379.906667pt;}
.y22{bottom:380.226667pt;}
.y1f2{bottom:381.026667pt;}
.y219{bottom:384.226667pt;}
.yb8{bottom:389.826667pt;}
.y7a{bottom:391.746667pt;}
.y237{bottom:392.546667pt;}
.yf1{bottom:392.706667pt;}
.y16c{bottom:393.506667pt;}
.y126{bottom:393.826667pt;}
.y1c3{bottom:395.106667pt;}
.y218{bottom:399.426667pt;}
.y1f1{bottom:400.226667pt;}
.y4e{bottom:403.746667pt;}
.y194{bottom:404.066667pt;}
.yb7{bottom:405.186667pt;}
.y9d{bottom:405.506667pt;}
.yf0{bottom:411.746667pt;}
.y125{bottom:412.866667pt;}
.y21{bottom:413.986667pt;}
.yb6{bottom:418.306667pt;}
.y4d{bottom:419.106667pt;}
.y1f0{bottom:419.266667pt;}
.y79{bottom:422.146667pt;}
.y217{bottom:425.346667pt;}
.y1c2{bottom:425.826667pt;}
.yef{bottom:430.626667pt;}
.y236{bottom:430.786667pt;}
.y193{bottom:431.906667pt;}
.y124{bottom:432.066667pt;}
.y148{bottom:435.266667pt;}
.y16b{bottom:437.986667pt;}
.y1ef{bottom:438.466667pt;}
.y1c1{bottom:441.186667pt;}
.y216{bottom:441.826667pt;}
.y4c{bottom:446.306667pt;}
.y192{bottom:447.266667pt;}
.y20{bottom:447.746667pt;}
.yee{bottom:449.506667pt;}
.y235{bottom:449.986667pt;}
.y147{bottom:450.626667pt;}
.y78{bottom:452.706667pt;}
.y1c0{bottom:456.386667pt;}
.y1ee{bottom:457.666667pt;}
.y215{bottom:458.306667pt;}
.y123{bottom:460.066667pt;}
.y4b{bottom:463.426667pt;}
.y191{bottom:463.746667pt;}
.y146{bottom:467.106667pt;}
.y16a{bottom:468.386667pt;}
.yed{bottom:468.546667pt;}
.y234{bottom:469.186667pt;}
.y122{bottom:476.546667pt;}
.y1ed{bottom:476.706667pt;}
.yb5{bottom:479.266667pt;}
.y145{bottom:480.226667pt;}
.y190{bottom:481.026667pt;}
.y1f{bottom:481.506667pt;}
.y1bf{bottom:482.466667pt;}
.y4a{bottom:482.626667pt;}
.y75{bottom:483.106667pt;}
.y214{bottom:486.306667pt;}
.yec{bottom:487.426667pt;}
.y233{bottom:488.226667pt;}
.y121{bottom:493.826667pt;}
.y1be{bottom:497.826667pt;}
.y9a{bottom:499.586667pt;}
.y18f{bottom:500.066667pt;}
.y49{bottom:501.826667pt;}
.y1ec{bottom:504.706667pt;}
.yeb{bottom:506.306667pt;}
.y143{bottom:510.786667pt;}
.y120{bottom:512.866667pt;}
.y1bd{bottom:513.186667pt;}
.y1b{bottom:515.266667pt;}
.y213{bottom:515.426667pt;}
.y232{bottom:516.226667pt;}
.y48{bottom:520.866667pt;}
.y1eb{bottom:521.186667pt;}
.yb1{bottom:523.746667pt;}
.yea{bottom:525.346667pt;}
.y18e{bottom:528.066667pt;}
.y1bc{bottom:528.386667pt;}
.y212{bottom:531.906667pt;}
.y11f{bottom:532.066667pt;}
.y231{bottom:532.706667pt;}
.y1ea{bottom:538.493333pt;}
.y47{bottom:540.093333pt;}
.y169{bottom:543.293333pt;}
.y18d{bottom:543.453333pt;}
.y1bb{bottom:543.773333pt;}
.ye9{bottom:544.253333pt;}
.y18{bottom:549.053333pt;}
.y230{bottom:550.013333pt;}
.y11e{bottom:551.133333pt;}
.y1e9{bottom:557.533333pt;}
.y211{bottom:558.653333pt;}
.y46{bottom:559.133333pt;}
.y18c{bottom:559.933333pt;}
.y98{bottom:560.573333pt;}
.ye8{bottom:563.133333pt;}
.y74{bottom:563.453333pt;}
.y142{bottom:566.173333pt;}
.y22f{bottom:569.053333pt;}
.y11d{bottom:570.333333pt;}
.y210{bottom:573.693333pt;}
.y1ba{bottom:574.493333pt;}
.y1e8{bottom:576.733333pt;}
.y18b{bottom:577.213333pt;}
.y45{bottom:578.333333pt;}
.y73{bottom:578.813333pt;}
.y14{bottom:579.613333pt;}
.y141{bottom:581.533333pt;}
.ye7{bottom:582.013333pt;}
.yb0{bottom:584.733333pt;}
.y168{bottom:585.373333pt;}
.y22e{bottom:588.253333pt;}
.y11c{bottom:589.533333pt;}
.y1b9{bottom:589.853333pt;}
.y72{bottom:594.173333pt;}
.y44{bottom:595.613333pt;}
.y1e7{bottom:595.933333pt;}
.y18a{bottom:596.253333pt;}
.y140{bottom:598.013333pt;}
.y20f{bottom:599.613333pt;}
.y167{bottom:600.413333pt;}
.ye6{bottom:600.893333pt;}
.y1b8{bottom:605.053333pt;}
.y70{bottom:607.293333pt;}
.y22d{bottom:607.453333pt;}
.y13f{bottom:611.133333pt;}
.y1e6{bottom:614.973333pt;}
.y189{bottom:615.453333pt;}
.y20e{bottom:616.093333pt;}
.y11b{bottom:617.373333pt;}
.ye5{bottom:619.933333pt;}
.y1b7{bottom:620.413333pt;}
.y43{bottom:622.813333pt;}
.y97{bottom:624.413333pt;}
.y166{bottom:625.213333pt;}
.y11a{bottom:632.733333pt;}
.y1e5{bottom:634.173333pt;}
.y188{bottom:634.653333pt;}
.y22c{bottom:635.293333pt;}
.y1b6{bottom:635.773333pt;}
.y42{bottom:635.933333pt;}
.ye4{bottom:638.813333pt;}
.y13e{bottom:641.693333pt;}
.y20d{bottom:643.453333pt;}
.y119{bottom:649.213333pt;}
.y96{bottom:651.613333pt;}
.y22b{bottom:651.933333pt;}
.y165{bottom:652.413333pt;}
.y1e4{bottom:653.213333pt;}
.y6c{bottom:654.013333pt;}
.y13{bottom:655.293333pt;}
.ye3{bottom:657.693333pt;}
.y20c{bottom:660.573333pt;}
.yaf{bottom:662.173333pt;}
.y187{bottom:662.493333pt;}
.y1b5{bottom:662.973333pt;}
.y94{bottom:664.893333pt;}
.y164{bottom:665.533333pt;}
.y118{bottom:666.493333pt;}
.y41{bottom:669.693333pt;}
.y12{bottom:670.653333pt;}
.ye2{bottom:676.733333pt;}
.y22a{bottom:677.853333pt;}
.y186{bottom:679.773333pt;}
.y1e3{bottom:681.213333pt;}
.y117{bottom:685.693333pt;}
.y163{bottom:686.813333pt;}
.y1b4{bottom:690.173333pt;}
.ye1{bottom:695.613333pt;}
.y1e2{bottom:696.573333pt;}
.y11{bottom:697.853333pt;}
.y20b{bottom:698.813333pt;}
.y3f{bottom:700.253333pt;}
.y116{bottom:704.733333pt;}
.y229{bottom:705.053333pt;}
.y1b3{bottom:706.813333pt;}
.y185{bottom:707.613333pt;}
.y161{bottom:707.933333pt;}
.y1e1{bottom:713.053333pt;}
.y10{bottom:713.213333pt;}
.y6b{bottom:714.333333pt;}
.ye0{bottom:714.493333pt;}
.y13d{bottom:715.933333pt;}
.y20a{bottom:718.013333pt;}
.y228{bottom:722.333333pt;}
.yae{bottom:723.133333pt;}
.y115{bottom:723.933333pt;}
.y184{bottom:724.253333pt;}
.y93{bottom:725.853333pt;}
.y15f{bottom:729.213333pt;}
.y6a{bottom:729.533333pt;}
.yf{bottom:729.693333pt;}
.y1e0{bottom:730.333333pt;}
.y3e{bottom:730.653333pt;}
.ydf{bottom:733.533333pt;}
.y209{bottom:737.213333pt;}
.y13c{bottom:740.573333pt;}
.y69{bottom:741.373333pt;}
.y114{bottom:742.333333pt;}
.y1b2{bottom:743.133333pt;}
.ye{bottom:746.813333pt;}
.y1df{bottom:749.373333pt;}
.y15e{bottom:750.333333pt;}
.yde{bottom:752.413333pt;}
.y13b{bottom:757.213333pt;}
.y113{bottom:759.613333pt;}
.y183{bottom:760.573333pt;}
.y3a{bottom:761.213333pt;}
.y1b1{bottom:762.173333pt;}
.y208{bottom:765.053333pt;}
.yd{bottom:766.013333pt;}
.y15d{bottom:767.613333pt;}
.y1de{bottom:768.573333pt;}
.y66{bottom:769.853333pt;}
.y8e{bottom:770.173333pt;}
.y139{bottom:770.333333pt;}
.ydb{bottom:771.293333pt;}
.y112{bottom:778.693333pt;}
.y182{bottom:779.813333pt;}
.y1b0{bottom:781.413333pt;}
.y207{bottom:781.733333pt;}
.yad{bottom:784.133333pt;}
.y15c{bottom:784.773333pt;}
.y1dd{bottom:787.813333pt;}
.yda{bottom:790.373333pt;}
.yc{bottom:795.173333pt;}
.y65{bottom:798.533333pt;}
.y181{bottom:798.853333pt;}
.y1af{bottom:800.613333pt;}
.y138{bottom:800.773333pt;}
.y15b{bottom:802.053333pt;}
.y111{bottom:806.693333pt;}
.y1dc{bottom:806.853333pt;}
.yd9{bottom:809.253333pt;}
.y39{bottom:811.493333pt;}
.yb{bottom:811.813333pt;}
.y180{bottom:818.053333pt;}
.y1ae{bottom:819.653333pt;}
.y110{bottom:822.053333pt;}
.y1db{bottom:826.053333pt;}
.y62{bottom:827.013333pt;}
.ya{bottom:827.173333pt;}
.yd8{bottom:828.133333pt;}
.y8c{bottom:831.173333pt;}
.y137{bottom:831.333333pt;}
.y15a{bottom:833.413333pt;}
.y17f{bottom:837.093333pt;}
.y1ad{bottom:838.853333pt;}
.y38{bottom:841.893333pt;}
.yac{bottom:845.093333pt;}
.yd7{bottom:847.173333pt;}
.y159{bottom:848.453333pt;}
.y10f{bottom:849.253333pt;}
.y9{bottom:854.213333pt;}
.y5d{bottom:855.653333pt;}
.y206{bottom:856.293333pt;}
.y1ac{bottom:857.253333pt;}
.y8b{bottom:861.733333pt;}
.y10e{bottom:862.373333pt;}
.y17e{bottom:865.093333pt;}
.yd6{bottom:866.053333pt;}
.y37{bottom:872.453333pt;}
.y1da{bottom:873.093333pt;}
.y205{bottom:875.493333pt;}
.y10b{bottom:881.253333pt;}
.y8{bottom:881.573333pt;}
.y1ab{bottom:883.333333pt;}
.yd4{bottom:884.933333pt;}
.y1d9{bottom:888.453333pt;}
.y158{bottom:889.733333pt;}
.y136{bottom:892.293333pt;}
.y204{bottom:894.533333pt;}
.y17d{bottom:898.853333pt;}
.y36{bottom:902.853333pt;}
.yd1{bottom:903.973333pt;}
.y1d8{bottom:904.933333pt;}
.y8a{bottom:906.053333pt;}
.y7{bottom:908.773333pt;}
.y1aa{bottom:910.533333pt;}
.y17c{bottom:918.053333pt;}
.y203{bottom:922.533333pt;}
.y134{bottom:922.693333pt;}
.ycf{bottom:922.853333pt;}
.y5c{bottom:924.773333pt;}
.y1a9{bottom:927.013333pt;}
.y1d7{bottom:932.773333pt;}
.y6{bottom:935.973333pt;}
.y35{bottom:936.613333pt;}
.y17b{bottom:937.093333pt;}
.y202{bottom:939.013333pt;}
.y5b{bottom:940.133333pt;}
.y1a8{bottom:942.373333pt;}
.y87{bottom:950.533333pt;}
.y132{bottom:953.093333pt;}
.y5a{bottom:955.333333pt;}
.y17a{bottom:956.293333pt;}
.y1a7{bottom:957.733333pt;}
.y10a{bottom:959.973333pt;}
.y1d6{bottom:960.773333pt;}
.y34{bottom:967.173333pt;}
.yce{bottom:968.293333pt;}
.y5{bottom:969.573333pt;}
.y1a6{bottom:973.093333pt;}
.y109{bottom:973.893333pt;}
.y179{bottom:975.333333pt;}
.y1d5{bottom:977.253333pt;}
.ycd{bottom:983.653333pt;}
.y108{bottom:987.813333pt;}
.y4{bottom:992.613333pt;}
.y178{bottom:994.533333pt;}
.ycb{bottom:996.773333pt;}
.y32{bottom:997.573333pt;}
.y1a5{bottom:1000.293333pt;}
.y107{bottom:1001.573333pt;}
.y177{bottom:1013.760000pt;}
.y3{bottom:1015.680000pt;}
.h2c{height:16.480000pt;}
.h2e{height:16.512000pt;}
.h2d{height:16.640000pt;}
.h24{height:18.240000pt;}
.h27{height:18.272000pt;}
.h25{height:18.400000pt;}
.h26{height:18.432000pt;}
.h2f{height:20.480000pt;}
.h30{height:27.200000pt;}
.hf{height:27.840000pt;}
.h10{height:27.872000pt;}
.h5{height:29.760000pt;}
.ha{height:29.792000pt;}
.h9{height:29.920000pt;}
.h22{height:30.592000pt;}
.h21{height:30.720000pt;}
.h23{height:31.200000pt;}
.h7{height:33.120000pt;}
.h6{height:33.152000pt;}
.h2b{height:41.120000pt;}
.h2a{height:41.152000pt;}
.h3{height:41.475163pt;}
.h18{height:43.680000pt;}
.h29{height:43.712000pt;}
.h14{height:43.840000pt;}
.h31{height:43.872000pt;}
.h15{height:44.480000pt;}
.h12{height:46.080000pt;}
.h11{height:46.240000pt;}
.h8{height:47.647188pt;}
.h16{height:49.600000pt;}
.hb{height:49.632000pt;}
.h1a{height:49.760000pt;}
.hd{height:50.062500pt;}
.he{height:55.040000pt;}
.h2{height:55.402500pt;}
.h4{height:60.160000pt;}
.h1e{height:60.192000pt;}
.hc{height:60.320000pt;}
.h19{height:60.352000pt;}
.h20{height:61.280000pt;}
.h1f{height:61.312000pt;}
.h28{height:63.840000pt;}
.h13{height:66.272000pt;}
.h1d{height:76.800000pt;}
.h17{height:76.832000pt;}
.h1b{height:93.440000pt;}
.h1c{height:93.472000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.we{width:25.120000pt;}
.w5{width:25.280000pt;}
.wc{width:26.080000pt;}
.w7{width:26.560000pt;}
.w1c{width:31.520000pt;}
.w6{width:31.872000pt;}
.w17{width:34.592000pt;}
.w18{width:34.720000pt;}
.w1e{width:35.360000pt;}
.wd{width:36.512000pt;}
.w2e{width:37.120000pt;}
.w2f{width:37.152000pt;}
.w32{width:37.440000pt;}
.w3c{width:37.600000pt;}
.w3d{width:37.632000pt;}
.w3e{width:37.760000pt;}
.w66{width:38.592000pt;}
.w65{width:38.720000pt;}
.w60{width:40.672000pt;}
.w4e{width:40.800000pt;}
.w4f{width:40.832000pt;}
.w4d{width:40.960000pt;}
.w4c{width:40.992000pt;}
.w50{width:41.120000pt;}
.w47{width:42.592000pt;}
.w61{width:43.520000pt;}
.w23{width:44.160000pt;}
.w24{width:44.352000pt;}
.w45{width:45.600000pt;}
.w33{width:46.400000pt;}
.w5a{width:46.560000pt;}
.w5b{width:46.592000pt;}
.w59{width:46.752000pt;}
.w5c{width:46.880000pt;}
.w49{width:50.400000pt;}
.w20{width:53.760000pt;}
.w36{width:54.720000pt;}
.w39{width:54.880000pt;}
.w38{width:55.040000pt;}
.w37{width:55.232000pt;}
.w25{width:56.000000pt;}
.w22{width:56.032000pt;}
.w29{width:56.640000pt;}
.w15{width:57.280000pt;}
.w46{width:58.880000pt;}
.w48{width:59.040000pt;}
.w56{width:63.840000pt;}
.w55{width:63.872000pt;}
.w57{width:64.000000pt;}
.w14{width:64.992000pt;}
.w13{width:65.120000pt;}
.w12{width:65.152000pt;}
.w5e{width:65.472000pt;}
.w62{width:65.760000pt;}
.w63{width:65.792000pt;}
.wb{width:69.280000pt;}
.w28{width:73.312000pt;}
.w8{width:73.600000pt;}
.w4{width:73.920000pt;}
.w4a{width:73.952000pt;}
.w2a{width:74.240000pt;}
.w3a{width:74.912000pt;}
.w2d{width:75.072000pt;}
.w52{width:75.232000pt;}
.w51{width:75.360000pt;}
.w1b{width:78.432000pt;}
.wf{width:82.240000pt;}
.w5d{width:84.320000pt;}
.w30{width:84.480000pt;}
.w10{width:85.472000pt;}
.w1f{width:86.272000pt;}
.w44{width:86.752000pt;}
.w9{width:90.592000pt;}
.w2b{width:93.792000pt;}
.w26{width:103.232000pt;}
.w1d{width:105.152000pt;}
.w54{width:105.312000pt;}
.w53{width:110.400000pt;}
.w34{width:112.352000pt;}
.w42{width:122.112000pt;}
.w41{width:122.272000pt;}
.w40{width:136.826667pt;}
.w43{width:182.426667pt;}
.w3b{width:193.626667pt;}
.w35{width:197.786667pt;}
.w21{width:207.226667pt;}
.w1a{width:209.626667pt;}
.w58{width:216.666667pt;}
.w11{width:216.986667pt;}
.w3f{width:220.826667pt;}
.w2c{width:235.226667pt;}
.w4b{width:244.666667pt;}
.w19{width:245.026667pt;}
.w27{width:246.426667pt;}
.w16{width:252.506667pt;}
.w64{width:269.346667pt;}
.w5f{width:273.026667pt;}
.wa{width:276.066667pt;}
.w3{width:278.786667pt;}
.w31{width:405.533333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x15{left:6.880000pt;}
.x6a{left:8.000000pt;}
.xe{left:8.960000pt;}
.x17{left:10.080000pt;}
.xc{left:11.200000pt;}
.xb{left:12.480000pt;}
.x7e{left:13.466667pt;}
.x1e{left:14.400000pt;}
.x2c{left:15.520000pt;}
.x73{left:16.640000pt;}
.x39{left:17.600000pt;}
.x4d{left:18.560000pt;}
.x12{left:19.840000pt;}
.x3d{left:21.120000pt;}
.x40{left:22.080000pt;}
.x24{left:23.200000pt;}
.x1b{left:24.320000pt;}
.x35{left:26.080000pt;}
.x22{left:27.680000pt;}
.x25{left:28.800000pt;}
.x64{left:29.920000pt;}
.x16{left:31.040000pt;}
.x75{left:32.000000pt;}
.xa{left:33.120000pt;}
.x26{left:35.520000pt;}
.x51{left:36.480000pt;}
.x21{left:37.600000pt;}
.x50{left:38.560000pt;}
.x18{left:39.706667pt;}
.x14{left:41.786667pt;}
.x49{left:43.226667pt;}
.x3c{left:46.720000pt;}
.x37{left:48.800000pt;}
.x56{left:50.400000pt;}
.x67{left:55.400000pt;}
.x66{left:62.586667pt;}
.x7f{left:89.471988pt;}
.x2{left:94.431988pt;}
.x88{left:98.911988pt;}
.x32{left:101.800000pt;}
.x2e{left:105.434667pt;}
.x52{left:108.831988pt;}
.x3{left:113.311988pt;}
.x4a{left:117.634667pt;}
.x33{left:122.751988pt;}
.x53{left:137.146655pt;}
.x8{left:139.394667pt;}
.x19{left:141.626655pt;}
.x89{left:165.946655pt;}
.x8a{left:179.066655pt;}
.x76{left:206.266667pt;}
.x86{left:217.186655pt;}
.x87{left:230.146655pt;}
.x68{left:278.306667pt;}
.x5d{left:289.346667pt;}
.x57{left:293.346667pt;}
.x3e{left:302.786667pt;}
.x34{left:305.346667pt;}
.x27{left:312.866667pt;}
.x63{left:316.866667pt;}
.x5e{left:327.586667pt;}
.x4b{left:331.106667pt;}
.x6f{left:340.546667pt;}
.x45{left:342.306667pt;}
.x2f{left:348.066667pt;}
.x4{left:351.586655pt;}
.x3f{left:359.453333pt;}
.x5{left:364.573322pt;}
.x5f{left:365.853333pt;}
.x7b{left:368.733333pt;}
.x1a{left:372.093333pt;}
.x9{left:374.653333pt;}
.x77{left:376.893333pt;}
.x28{left:378.653333pt;}
.x70{left:382.173333pt;}
.x6{left:383.933322pt;}
.x85{left:389.373322pt;}
.x1{left:393.213322pt;}
.x7{left:396.893322pt;}
.x58{left:403.293333pt;}
.x41{left:404.413333pt;}
.x4c{left:406.813333pt;}
.x80{left:408.253333pt;}
.x69{left:412.093333pt;}
.x36{left:416.573333pt;}
.x30{left:418.653333pt;}
.x71{left:423.773333pt;}
.x1c{left:442.013333pt;}
.x29{left:444.413333pt;}
.x81{left:447.773333pt;}
.xd{left:449.213333pt;}
.x31{left:454.013333pt;}
.x59{left:458.333333pt;}
.x72{left:465.373333pt;}
.x1d{left:468.893333pt;}
.x6b{left:471.773333pt;}
.x46{left:473.693333pt;}
.xf{left:475.133333pt;}
.x60{left:480.893333pt;}
.x4e{left:482.333333pt;}
.x82{left:487.133333pt;}
.x8b{left:490.493322pt;}
.x42{left:494.173333pt;}
.x54{left:501.093333pt;}
.x8c{left:503.653322pt;}
.x1f{left:506.213333pt;}
.x10{left:507.653333pt;}
.x2a{left:510.213333pt;}
.x5a{left:513.573333pt;}
.x6c{left:515.013333pt;}
.x61{left:519.173333pt;}
.x4f{left:520.133333pt;}
.x38{left:522.373333pt;}
.x7c{left:523.493333pt;}
.x83{left:526.533333pt;}
.x47{left:530.373333pt;}
.x20{left:531.813333pt;}
.x11{left:534.533333pt;}
.x43{left:539.173333pt;}
.x74{left:548.133333pt;}
.x62{left:557.413333pt;}
.x3a{left:558.373333pt;}
.x84{left:565.893333pt;}
.x7d{left:567.013333pt;}
.x5b{left:568.613333pt;}
.x78{left:570.533333pt;}
.x6d{left:574.693333pt;}
.x2b{left:575.973333pt;}
.x65{left:577.253333pt;}
.x55{left:586.373333pt;}
.x44{left:595.813333pt;}
.x48{left:605.253333pt;}
.x13{left:608.453333pt;}
.x23{left:614.373333pt;}
.x5c{left:624.133333pt;}
.x6e{left:625.093333pt;}
.x7a{left:633.573333pt;}
.x79{left:635.173333pt;}
.x2d{left:641.760000pt;}
.x3b{left:645.280000pt;}
}


body.paper-page .doc-shell[data-scieee-split-doc="1"] #page-container {
  position: relative !important;
  top: auto !important;
  left: auto !important;
  right: auto !important;
  bottom: auto !important;
  width: max-content !important;
  min-width: 100% !important;
  height: auto !important;
  overflow: visible !important;
  margin: 0 auto !important;
  padding: 0 !important;
}

body.paper-page .doc-shell[data-scieee-split-doc="1"] #sidebar,
body.paper-page .doc-shell[data-scieee-split-doc="1"] .loading-indicator {
  display: none !important;
}

body.paper-page .doc-shell[data-scieee-split-doc="1"] .pf {
  display: block !important;
  position: relative !important;
  margin-left: auto !important;
  margin-right: auto !important;
}
