
/* 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_9e060ad1828d.woff")format("woff");}.ff1{font-family:ff1;line-height:0.971191;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_760a08f52b9a.woff")format("woff");}.ff2{font-family:ff2;line-height:0.965820;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_69d6a8c13aef.woff")format("woff");}.ff3{font-family:ff3;line-height:1.172852;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_bf95d0a51879.woff")format("woff");}.ff4{font-family:ff4;line-height:1.311035;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_bdcb1592f7bb.woff")format("woff");}.ff5{font-family:ff5;line-height:1.052246;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_fb9ed49432ff.woff")format("woff");}.ff6{font-family:ff6;line-height:1.172852;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_f38896e4c06d.woff")format("woff");}.ff7{font-family:ff7;line-height:1.035156;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_10a6303ef9fe.woff")format("woff");}.ff8{font-family:ff8;line-height:0.921387;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_10240e9bb371.woff")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("fonts/font_0009_befef7ab37a1.woff")format("woff");}.ffa{font-family:ffa;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:ffb;src:url("fonts/font_0010_5233e143a9cd.woff")format("woff");}.ffb{font-family:ffb;line-height:1.284180;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("fonts/font_0011_1bed009812cf.woff")format("woff");}.ffc{font-family:ffc;line-height:1.049805;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("fonts/font_0012_29f4c6d694f3.woff")format("woff");}.ffd{font-family:ffd;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:ffe;src:url("fonts/font_0013_aac3b2758b33.woff")format("woff");}.ffe{font-family:ffe;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;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.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);}
.v5{vertical-align:-27.360000px;}
.v2{vertical-align:-20.880000px;}
.v6{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:6.480000px;}
.v1{vertical-align:20.880000px;}
.v4{vertical-align:27.360000px;}
.ls26{letter-spacing:-1.656000px;}
.ls27{letter-spacing:-1.512000px;}
.ls18{letter-spacing:-0.936000px;}
.ls16{letter-spacing:-0.792000px;}
.lse{letter-spacing:-0.538800px;}
.ls5{letter-spacing:-0.463800px;}
.ls13{letter-spacing:-0.288000px;}
.ls6{letter-spacing:-0.216000px;}
.ls1d{letter-spacing:-0.206400px;}
.ls4{letter-spacing:-0.175800px;}
.ls12{letter-spacing:-0.144000px;}
.ls3{letter-spacing:-0.115200px;}
.ls1b{letter-spacing:-0.106800px;}
.ls21{letter-spacing:-0.058320px;}
.ls1a{letter-spacing:-0.053280px;}
.ls0{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.017280px;}
.ls24{letter-spacing:0.053280px;}
.ls17{letter-spacing:0.072000px;}
.ls10{letter-spacing:0.083520px;}
.ls22{letter-spacing:0.120000px;}
.ls1{letter-spacing:0.132480px;}
.ls11{letter-spacing:0.144000px;}
.ls15{letter-spacing:0.149760px;}
.ls8{letter-spacing:0.180000px;}
.lsc{letter-spacing:0.181200px;}
.lsa{letter-spacing:0.181440px;}
.ls20{letter-spacing:0.223800px;}
.ls2{letter-spacing:0.256320px;}
.lsb{letter-spacing:0.288000px;}
.lsd{letter-spacing:0.360000px;}
.ls14{letter-spacing:0.432000px;}
.ls19{letter-spacing:0.504000px;}
.ls1c{letter-spacing:0.613440px;}
.ls1f{letter-spacing:0.720000px;}
.ls9{letter-spacing:0.737280px;}
.ls23{letter-spacing:0.756000px;}
.ls1e{letter-spacing:0.773280px;}
.ls25{letter-spacing:0.864000px;}
.lsf{letter-spacing:33.984000px;}
.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;}
}
.ws6{word-spacing:-72.000000px;}
.ws1b{word-spacing:-18.864000px;}
.ws17{word-spacing:-18.720000px;}
.ws11{word-spacing:-18.504000px;}
.wsc{word-spacing:-18.432000px;}
.wsa{word-spacing:-18.144000px;}
.wse{word-spacing:-18.072000px;}
.ws8{word-spacing:-18.000000px;}
.ws9{word-spacing:-17.856000px;}
.wsf{word-spacing:-17.784000px;}
.wsb{word-spacing:-17.712000px;}
.wsd{word-spacing:-17.208000px;}
.ws10{word-spacing:-17.064000px;}
.ws14{word-spacing:-16.613280px;}
.ws12{word-spacing:-16.506480px;}
.ws1d{word-spacing:-16.488000px;}
.ws13{word-spacing:-16.406880px;}
.ws1c{word-spacing:-16.344000px;}
.ws18{word-spacing:-15.002784px;}
.ws4{word-spacing:-14.970240px;}
.ws1{word-spacing:-14.855040px;}
.ws2{word-spacing:-14.794440px;}
.ws5{word-spacing:-14.754240px;}
.ws3{word-spacing:-14.506440px;}
.ws16{word-spacing:-13.505760px;}
.ws7{word-spacing:-9.720000px;}
.ws0{word-spacing:0.000000px;}
.ws1a{word-spacing:74.773800px;}
.ws19{word-spacing:106.966080px;}
.ws15{word-spacing:343.362480px;}
._0{margin-left:-1447.886400px;}
._4{margin-left:-2.378400px;}
._1{margin-left:-1.324800px;}
._2{width:1.226400px;}
._3{width:2.484000px;}
._13{width:3.693600px;}
._12{width:5.145600px;}
._d{width:6.307200px;}
._c{width:7.876800px;}
._e{width:9.648000px;}
._16{width:11.491200px;}
._1a{width:12.616800px;}
._f{width:13.752000px;}
._9{width:15.768000px;}
._a{width:16.776000px;}
._b{width:19.440000px;}
._1b{width:20.690400px;}
._15{width:21.830400px;}
._14{width:23.068800px;}
._1c{width:24.264000px;}
._1d{width:25.560000px;}
._10{width:27.864000px;}
._11{width:29.013600px;}
._1e{width:39.672000px;}
._1f{width:41.037600px;}
._17{width:43.632000px;}
._18{width:44.688000px;}
._19{width:45.823200px;}
._5{width:69.094560px;}
._8{width:104.956320px;}
._6{width:128.142000px;}
._7{width:182.406720px;}
.fc7{color:rgb(79,129,189);}
.fc6{color:rgb(0,0,255);}
.fc5{color:rgb(34,34,34);}
.fc4{color:rgb(51,51,51);}
.fc3{color:rgb(0,0,0);}
.fc2{color:rgb(35,31,32);}
.fc1{color:rgb(99,100,102);}
.fc0{color:rgb(86,87,89);}
.fs6{font-size:38.880000px;}
.fs1{font-size:41.532000px;}
.fs0{font-size:48.000000px;}
.fs7{font-size:48.240000px;}
.fs8{font-size:48.384000px;}
.fs9{font-size:54.000000px;}
.fs5{font-size:59.760000px;}
.fs4{font-size:66.240000px;}
.fsa{font-size:66.384000px;}
.fs2{font-size:72.000000px;}
.fs3{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.ya3{bottom:5.760000px;}
.yfa{bottom:10.950000px;}
.yc6{bottom:12.060000px;}
.yf8{bottom:17.100000px;}
.yb6{bottom:20.520000px;}
.yd0{bottom:20.700000px;}
.yaa{bottom:20.880000px;}
.ya4{bottom:21.060000px;}
.y110{bottom:23.115000px;}
.yc3{bottom:25.020000px;}
.ya2{bottom:25.560000px;}
.yca{bottom:29.520000px;}
.yc8{bottom:29.700000px;}
.ycc{bottom:29.730000px;}
.yab{bottom:33.840000px;}
.yb1{bottom:33.870000px;}
.ya7{bottom:34.020000px;}
.yc5{bottom:37.800000px;}
.ya1{bottom:45.360000px;}
.yf6{bottom:45.570000px;}
.ya9{bottom:46.800000px;}
.yb0{bottom:46.830000px;}
.ya6{bottom:46.980000px;}
.y10d{bottom:47.775000px;}
.yc2{bottom:50.760000px;}
.yf{bottom:57.600000px;}
.yb4{bottom:59.760000px;}
.yc4{bottom:63.720000px;}
.yf1{bottom:65.085000px;}
.y104{bottom:69.225000px;}
.yb3{bottom:72.720000px;}
.y121{bottom:85.500000px;}
.y112{bottom:88.530000px;}
.y130{bottom:90.360000px;}
.yda{bottom:95.220000px;}
.y120{bottom:96.480000px;}
.y52{bottom:97.560000px;}
.y134{bottom:101.520000px;}
.y7d{bottom:101.700000px;}
.yeb{bottom:104.580000px;}
.y72{bottom:105.300000px;}
.y4{bottom:108.578077px;}
.yf0{bottom:108.870000px;}
.y58{bottom:116.640000px;}
.y158{bottom:117.180000px;}
.y105{bottom:117.750000px;}
.y3{bottom:121.036638px;}
.y111{bottom:123.015000px;}
.y122{bottom:124.770000px;}
.ybf{bottom:125.280000px;}
.y84{bottom:127.980000px;}
.yf2{bottom:128.625000px;}
.y3b{bottom:129.600000px;}
.y89{bottom:131.760000px;}
.y2{bottom:133.495200px;}
.y12e{bottom:133.590000px;}
.y12b{bottom:136.980000px;}
.y157{bottom:140.940000px;}
.y10b{bottom:142.020000px;}
.y7c{bottom:143.100000px;}
.y5{bottom:146.054700px;}
.y71{bottom:146.700000px;}
.y10e{bottom:148.605000px;}
.yf7{bottom:150.150000px;}
.yd9{bottom:151.560000px;}
.y11f{bottom:152.820000px;}
.y10f{bottom:152.970000px;}
.y23{bottom:153.180000px;}
.y51{bottom:153.900000px;}
.y128{bottom:154.230000px;}
.yef{bottom:156.420000px;}
.y17b{bottom:157.140000px;}
.y133{bottom:157.860000px;}
.y57{bottom:158.040000px;}
.yea{bottom:160.950000px;}
.y123{bottom:164.010000px;}
.y9e{bottom:165.810000px;}
.y106{bottom:166.290000px;}
.ybe{bottom:166.710000px;}
.y12d{bottom:171.540000px;}
.y12f{bottom:173.010000px;}
.y88{bottom:173.190000px;}
.y156{bottom:173.730000px;}
.y12c{bottom:176.580000px;}
.y17a{bottom:180.930000px;}
.y83{bottom:184.350000px;}
.y3a{bottom:186.150000px;}
.y70{bottom:188.130000px;}
.yf3{bottom:192.165000px;}
.yd8{bottom:193.170000px;}
.y155{bottom:197.490000px;}
.y7b{bottom:199.290000px;}
.y56{bottom:199.470000px;}
.y124{bottom:203.295000px;}
.yee{bottom:204.405000px;}
.ybd{bottom:208.110000px;}
.y11e{bottom:209.370000px;}
.y22{bottom:209.550000px;}
.y50{bottom:210.450000px;}
.y179{bottom:213.690000px;}
.y87{bottom:214.590000px;}
.y107{bottom:214.770000px;}
.ye9{bottom:217.290000px;}
.y9d{bottom:222.150000px;}
.y129{bottom:222.915000px;}
.y6f{bottom:229.530000px;}
.y154{bottom:230.250000px;}
.yd7{bottom:234.570000px;}
.y178{bottom:237.630000px;}
.y82{bottom:240.690000px;}
.y55{bottom:240.870000px;}
.y39{bottom:242.490000px;}
.y125{bottom:242.565000px;}
.ybc{bottom:249.510000px;}
.yed{bottom:253.185000px;}
.y153{bottom:254.190000px;}
.yf4{bottom:255.675000px;}
.yfb{bottom:255.810000px;}
.y86{bottom:255.990000px;}
.ye8{bottom:258.870000px;}
.y108{bottom:263.310000px;}
.y11d{bottom:265.710000px;}
.y21{bottom:266.070000px;}
.y4f{bottom:267.150000px;}
.y177{bottom:270.390000px;}
.y6e{bottom:270.930000px;}
.yd6{bottom:275.970000px;}
.y9c{bottom:278.490000px;}
.y126{bottom:281.805000px;}
.y54{bottom:282.270000px;}
.y152{bottom:286.950000px;}
.y10c{bottom:287.565000px;}
.ybb{bottom:290.910000px;}
.y8{bottom:291.234300px;}
.y12a{bottom:291.630000px;}
.y176{bottom:294.150000px;}
.y81{bottom:297.210000px;}
.y85{bottom:297.390000px;}
.y38{bottom:298.830000px;}
.ye7{bottom:300.270000px;}
.y7{bottom:305.634300px;}
.y11c{bottom:307.290000px;}
.y151{bottom:310.710000px;}
.y109{bottom:311.835000px;}
.y6d{bottom:312.330000px;}
.yd5{bottom:317.370000px;}
.yf5{bottom:319.215000px;}
.y6{bottom:320.034300px;}
.y127{bottom:321.090000px;}
.y20{bottom:322.410000px;}
.y4e{bottom:323.490000px;}
.y53{bottom:323.670000px;}
.y175{bottom:326.910000px;}
.yba{bottom:332.310000px;}
.y9b{bottom:335.010000px;}
.y80{bottom:338.790000px;}
.ye6{bottom:341.670000px;}
.y150{bottom:343.470000px;}
.y11b{bottom:348.690000px;}
.y174{bottom:350.850000px;}
.y6c{bottom:353.730000px;}
.y37{bottom:355.350000px;}
.yd4{bottom:358.770000px;}
.y10a{bottom:360.330000px;}
.y7a{bottom:365.070000px;}
.y14f{bottom:367.410000px;}
.yb9{bottom:373.530000px;}
.y173{bottom:374.610000px;}
.y9a{bottom:376.590000px;}
.y1f{bottom:378.750000px;}
.y4d{bottom:380.010000px;}
.y7f{bottom:380.190000px;}
.ye5{bottom:383.070000px;}
.y11a{bottom:390.090000px;}
.y14e{bottom:391.170000px;}
.y6b{bottom:395.130000px;}
.yd3{bottom:400.170000px;}
.y79{bottom:406.515000px;}
.y172{bottom:407.415000px;}
.y36{bottom:411.735000px;}
.yb8{bottom:414.975000px;}
.y99{bottom:418.035000px;}
.y4c{bottom:421.635000px;}
.y14d{bottom:423.975000px;}
.ye4{bottom:424.515000px;}
.y171{bottom:431.175000px;}
.y119{bottom:431.535000px;}
.y1e{bottom:435.135000px;}
.y6a{bottom:436.575000px;}
.yd2{bottom:441.615000px;}
.y14c{bottom:447.735000px;}
.y78{bottom:447.915000px;}
.y170{bottom:455.115000px;}
.y98{bottom:459.435000px;}
.y4b{bottom:463.035000px;}
.ye3{bottom:465.915000px;}
.y35{bottom:468.075000px;}
.yb7{bottom:470.955000px;}
.y102{bottom:471.315000px;}
.y118{bottom:472.935000px;}
.y1d{bottom:475.635000px;}
.y69{bottom:477.975000px;}
.y16f{bottom:478.875000px;}
.y14b{bottom:480.675000px;}
.yd1{bottom:483.015000px;}
.yb5{bottom:487.695000px;}
.y77{bottom:489.315000px;}
.y97{bottom:500.835000px;}
.y4a{bottom:504.435000px;}
.ye2{bottom:507.315000px;}
.ycf{bottom:508.215000px;}
.y16e{bottom:511.635000px;}
.y101{bottom:512.895000px;}
.y117{bottom:514.335000px;}
.y68{bottom:519.375000px;}
.y34{bottom:524.415000px;}
.yb2{bottom:527.475000px;}
.y1c{bottom:530.715000px;}
.y16d{bottom:535.395000px;}
.y14a{bottom:537.195000px;}
.y96{bottom:542.235000px;}
.yce{bottom:543.495000px;}
.y49{bottom:545.835000px;}
.ye1{bottom:548.715000px;}
.y100{bottom:554.295000px;}
.y116{bottom:555.735000px;}
.y67{bottom:560.775000px;}
.y149{bottom:560.955000px;}
.y16c{bottom:568.335000px;}
.y1b{bottom:571.215000px;}
.y76{bottom:572.115000px;}
.y33{bottom:580.935000px;}
.y95{bottom:583.455000px;}
.y148{bottom:584.895000px;}
.y48{bottom:587.235000px;}
.ye0{bottom:590.115000px;}
.y16b{bottom:592.095000px;}
.ycd{bottom:595.875000px;}
.y115{bottom:597.135000px;}
.y66{bottom:602.175000px;}
.yff{bottom:610.275000px;}
.y75{bottom:613.515000px;}
.y147{bottom:617.655000px;}
.y32{bottom:621.255000px;}
.yaf{bottom:623.055000px;}
.y94{bottom:624.855000px;}
.y1a{bottom:626.295000px;}
.y47{bottom:628.455000px;}
.y114{bottom:638.535000px;}
.y146{bottom:641.415000px;}
.y65{bottom:643.575000px;}
.ydf{bottom:645.915000px;}
.ycb{bottom:648.435000px;}
.y16a{bottom:648.615000px;}
.y31{bottom:652.425000px;}
.y132{bottom:654.945000px;}
.y145{bottom:665.205000px;}
.y93{bottom:666.285000px;}
.y19{bottom:666.825000px;}
.y74{bottom:669.345000px;}
.yfe{bottom:669.705000px;}
.y46{bottom:669.885000px;}
.y169{bottom:672.585000px;}
.y64{bottom:685.005000px;}
.y30{bottom:690.225000px;}
.y113{bottom:690.585000px;}
.yae{bottom:692.745000px;}
.y144{bottom:698.145000px;}
.yde{bottom:698.325000px;}
.yc9{bottom:701.025000px;}
.y168{bottom:705.345000px;}
.y18{bottom:707.145000px;}
.y92{bottom:707.685000px;}
.y131{bottom:711.105000px;}
.y45{bottom:711.285000px;}
.y143{bottom:721.905000px;}
.y2f{bottom:723.525000px;}
.yfd{bottom:725.145000px;}
.y73{bottom:726.225000px;}
.y63{bottom:726.405000px;}
.y167{bottom:729.105000px;}
.ydd{bottom:732.885000px;}
.y142{bottom:745.665000px;}
.y91{bottom:749.085000px;}
.y44{bottom:752.685000px;}
.y166{bottom:752.865000px;}
.yc7{bottom:753.405000px;}
.y2e{bottom:761.325000px;}
.y17{bottom:762.225000px;}
.yad{bottom:762.585000px;}
.y1{bottom:767.491050px;}
.ydc{bottom:767.625000px;}
.y62{bottom:767.805000px;}
.yfc{bottom:773.925000px;}
.y103{bottom:774.000000px;}
.y141{bottom:778.425000px;}
.yd{bottom:784.040550px;}
.y165{bottom:785.625000px;}
.y43{bottom:794.085000px;}
.y2d{bottom:794.625000px;}
.y140{bottom:802.185000px;}
.y16{bottom:802.725000px;}
.y90{bottom:805.065000px;}
.yc1{bottom:806.685000px;}
.y7e{bottom:809.025000px;}
.y61{bottom:809.205000px;}
.yec{bottom:816.480000px;}
.ydb{bottom:816.585000px;}
.y164{bottom:818.565000px;}
.yac{bottom:832.245000px;}
.y2c{bottom:832.425000px;}
.y13f{bottom:835.125000px;}
.y42{bottom:835.485000px;}
.y163{bottom:842.325000px;}
.y60{bottom:850.605000px;}
.y15{bottom:857.805000px;}
.y13e{bottom:858.885000px;}
.y8f{bottom:861.765000px;}
.y2b{bottom:865.725000px;}
.y162{bottom:866.085000px;}
.y41{bottom:876.885000px;}
.y13d{bottom:882.645000px;}
.y5f{bottom:892.005000px;}
.y161{bottom:898.890000px;}
.ya8{bottom:902.130000px;}
.y8e{bottom:903.390000px;}
.y2a{bottom:903.570000px;}
.y14{bottom:914.190000px;}
.y13c{bottom:915.450000px;}
.y40{bottom:918.330000px;}
.yc0{bottom:920.850000px;}
.y160{bottom:922.830000px;}
.yc{bottom:927.191850px;}
.y5e{bottom:933.450000px;}
.y29{bottom:936.870000px;}
.y13b{bottom:939.390000px;}
.y8d{bottom:944.790000px;}
.y15f{bottom:946.590000px;}
.y3f{bottom:959.730000px;}
.y13a{bottom:963.150000px;}
.yb{bottom:970.391850px;}
.y13{bottom:970.710000px;}
.ya5{bottom:971.790000px;}
.y28{bottom:974.670000px;}
.y5d{bottom:974.850000px;}
.y15e{bottom:979.350000px;}
.y8c{bottom:986.190000px;}
.y139{bottom:995.910000px;}
.y3e{bottom:1001.130000px;}
.y15d{bottom:1003.110000px;}
.y27{bottom:1007.970000px;}
.ya{bottom:1015.431000px;}
.y5c{bottom:1016.250000px;}
.y138{bottom:1019.670000px;}
.y12{bottom:1027.050000px;}
.y9{bottom:1037.031000px;}
.y8b{bottom:1041.990000px;}
.ya0{bottom:1042.350000px;}
.y3d{bottom:1042.530000px;}
.y137{bottom:1052.610000px;}
.y5b{bottom:1057.650000px;}
.y15c{bottom:1059.810000px;}
.y26{bottom:1064.310000px;}
.y136{bottom:1076.370000px;}
.y11{bottom:1083.390000px;}
.y15b{bottom:1083.570000px;}
.y3c{bottom:1083.930000px;}
.yf9{bottom:1090.800000px;}
.y17c{bottom:1092.570000px;}
.y8a{bottom:1098.870000px;}
.y5a{bottom:1099.050000px;}
.y135{bottom:1100.130000px;}
.y25{bottom:1101.750000px;}
.y15a{bottom:1116.330000px;}
.y10{bottom:1139.910000px;}
.y24{bottom:1140.090000px;}
.y159{bottom:1140.270000px;}
.y59{bottom:1140.480000px;}
.y9f{bottom:1143.000000px;}
.ye{bottom:1194.300000px;}
.h2{height:31.757379px;}
.h1a{height:34.380000px;}
.h1{height:36.703125px;}
.h15{height:38.880000px;}
.hb{height:47.344922px;}
.h20{height:50.312813px;}
.h1f{height:50.463000px;}
.h18{height:52.380000px;}
.h17{height:52.560000px;}
.h19{height:52.596000px;}
.h3{height:55.054688px;}
.h1c{height:59.439023px;}
.hd{height:60.046875px;}
.he{height:62.327813px;}
.hf{height:63.900000px;}
.h6{height:65.884219px;}
.h23{height:66.027445px;}
.h1d{height:66.039023px;}
.h8{height:67.824844px;}
.h11{height:69.660000px;}
.h13{height:69.696000px;}
.h10{height:69.840000px;}
.h12{height:69.876000px;}
.ha{height:70.664062px;}
.h7{height:72.562500px;}
.h21{height:74.681367px;}
.h9{height:74.704922px;}
.hc{height:75.093750px;}
.h16{height:77.580000px;}
.h1e{height:79.200000px;}
.h14{height:95.580000px;}
.h4{height:110.109375px;}
.h1b{height:340.200000px;}
.h22{height:382.680000px;}
.h5{height:1262.880000px;}
.h0{height:1263.000000px;}
.we{width:63.720000px;}
.w7{width:70.920000px;}
.wc{width:74.520000px;}
.w13{width:90.000000px;}
.wf{width:95.580000px;}
.w5{width:95.760000px;}
.w10{width:95.796000px;}
.wa{width:102.600000px;}
.wd{width:106.416000px;}
.w6{width:106.956000px;}
.w9{width:121.356000px;}
.w8{width:172.470000px;}
.w11{width:638.025000px;}
.wb{width:670.065000px;}
.w12{width:680.220000px;}
.w1{width:892.500000px;}
.w0{width:892.830000px;}
.w4{width:892.979987px;}
.w2{width:892.980000px;}
.w3{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:8.280000px;}
.x16{left:10.260000px;}
.x19{left:11.520000px;}
.xb{left:13.500000px;}
.x11{left:14.580000px;}
.x1e{left:15.660000px;}
.x9{left:16.740000px;}
.x7{left:19.260000px;}
.x17{left:20.700000px;}
.x18{left:22.320000px;}
.x14{left:24.300000px;}
.x8{left:26.280000px;}
.x24{left:27.360000px;}
.x13{left:30.240000px;}
.xf{left:32.220000px;}
.x21{left:33.300000px;}
.x4{left:34.920000px;}
.x12{left:36.720000px;}
.x15{left:39.420000px;}
.x2e{left:41.652000px;}
.x22{left:43.560000px;}
.x23{left:47.925000px;}
.x2d{left:49.290000px;}
.x20{left:52.200000px;}
.xd{left:56.520000px;}
.x25{left:60.480000px;}
.x1{left:64.701150px;}
.x26{left:73.080000px;}
.x27{left:89.820000px;}
.x2f{left:92.235000px;}
.x3{left:106.235987px;}
.x37{left:110.955000px;}
.x29{left:133.665000px;}
.x1a{left:180.750000px;}
.x6{left:201.990000px;}
.x2{left:205.824450px;}
.x2a{left:248.610000px;}
.x30{left:285.195000px;}
.x1b{left:287.175000px;}
.xa{left:308.955000px;}
.x1c{left:350.895000px;}
.x2b{left:363.600000px;}
.xc{left:379.875000px;}
.x3b{left:435.420000px;}
.x1d{left:446.475000px;}
.x38{left:452.805000px;}
.xe{left:552.345000px;}
.x2c{left:593.535000px;}
.x39{left:595.260000px;}
.x36{left:616.215000px;}
.x31{left:638.640000px;}
.x1f{left:648.465000px;}
.x3a{left:657.255000px;}
.x32{left:664.349987px;}
.x10{left:673.710000px;}
.x33{left:678.569987px;}
.x34{left:692.609987px;}
.x35{left:707.009987px;}
.x28{left:786.569987px;}
@media print{
.v5{vertical-align:-24.320000pt;}
.v2{vertical-align:-18.560000pt;}
.v6{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:5.760000pt;}
.v1{vertical-align:18.560000pt;}
.v4{vertical-align:24.320000pt;}
.ls26{letter-spacing:-1.472000pt;}
.ls27{letter-spacing:-1.344000pt;}
.ls18{letter-spacing:-0.832000pt;}
.ls16{letter-spacing:-0.704000pt;}
.lse{letter-spacing:-0.478933pt;}
.ls5{letter-spacing:-0.412267pt;}
.ls13{letter-spacing:-0.256000pt;}
.ls6{letter-spacing:-0.192000pt;}
.ls1d{letter-spacing:-0.183467pt;}
.ls4{letter-spacing:-0.156267pt;}
.ls12{letter-spacing:-0.128000pt;}
.ls3{letter-spacing:-0.102400pt;}
.ls1b{letter-spacing:-0.094933pt;}
.ls21{letter-spacing:-0.051840pt;}
.ls1a{letter-spacing:-0.047360pt;}
.ls0{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.015360pt;}
.ls24{letter-spacing:0.047360pt;}
.ls17{letter-spacing:0.064000pt;}
.ls10{letter-spacing:0.074240pt;}
.ls22{letter-spacing:0.106667pt;}
.ls1{letter-spacing:0.117760pt;}
.ls11{letter-spacing:0.128000pt;}
.ls15{letter-spacing:0.133120pt;}
.ls8{letter-spacing:0.160000pt;}
.lsc{letter-spacing:0.161067pt;}
.lsa{letter-spacing:0.161280pt;}
.ls20{letter-spacing:0.198933pt;}
.ls2{letter-spacing:0.227840pt;}
.lsb{letter-spacing:0.256000pt;}
.lsd{letter-spacing:0.320000pt;}
.ls14{letter-spacing:0.384000pt;}
.ls19{letter-spacing:0.448000pt;}
.ls1c{letter-spacing:0.545280pt;}
.ls1f{letter-spacing:0.640000pt;}
.ls9{letter-spacing:0.655360pt;}
.ls23{letter-spacing:0.672000pt;}
.ls1e{letter-spacing:0.687360pt;}
.ls25{letter-spacing:0.768000pt;}
.lsf{letter-spacing:30.208000pt;}
.ws6{word-spacing:-64.000000pt;}
.ws1b{word-spacing:-16.768000pt;}
.ws17{word-spacing:-16.640000pt;}
.ws11{word-spacing:-16.448000pt;}
.wsc{word-spacing:-16.384000pt;}
.wsa{word-spacing:-16.128000pt;}
.wse{word-spacing:-16.064000pt;}
.ws8{word-spacing:-16.000000pt;}
.ws9{word-spacing:-15.872000pt;}
.wsf{word-spacing:-15.808000pt;}
.wsb{word-spacing:-15.744000pt;}
.wsd{word-spacing:-15.296000pt;}
.ws10{word-spacing:-15.168000pt;}
.ws14{word-spacing:-14.767360pt;}
.ws12{word-spacing:-14.672427pt;}
.ws1d{word-spacing:-14.656000pt;}
.ws13{word-spacing:-14.583893pt;}
.ws1c{word-spacing:-14.528000pt;}
.ws18{word-spacing:-13.335808pt;}
.ws4{word-spacing:-13.306880pt;}
.ws1{word-spacing:-13.204480pt;}
.ws2{word-spacing:-13.150613pt;}
.ws5{word-spacing:-13.114880pt;}
.ws3{word-spacing:-12.894613pt;}
.ws16{word-spacing:-12.005120pt;}
.ws7{word-spacing:-8.640000pt;}
.ws0{word-spacing:0.000000pt;}
.ws1a{word-spacing:66.465600pt;}
.ws19{word-spacing:95.080960pt;}
.ws15{word-spacing:305.211093pt;}
._0{margin-left:-1287.010133pt;}
._4{margin-left:-2.114133pt;}
._1{margin-left:-1.177600pt;}
._2{width:1.090133pt;}
._3{width:2.208000pt;}
._13{width:3.283200pt;}
._12{width:4.573867pt;}
._d{width:5.606400pt;}
._c{width:7.001600pt;}
._e{width:8.576000pt;}
._16{width:10.214400pt;}
._1a{width:11.214933pt;}
._f{width:12.224000pt;}
._9{width:14.016000pt;}
._a{width:14.912000pt;}
._b{width:17.280000pt;}
._1b{width:18.391467pt;}
._15{width:19.404800pt;}
._14{width:20.505600pt;}
._1c{width:21.568000pt;}
._1d{width:22.720000pt;}
._10{width:24.768000pt;}
._11{width:25.789867pt;}
._1e{width:35.264000pt;}
._1f{width:36.477867pt;}
._17{width:38.784000pt;}
._18{width:39.722667pt;}
._19{width:40.731733pt;}
._5{width:61.417387pt;}
._8{width:93.294507pt;}
._6{width:113.904000pt;}
._7{width:162.139307pt;}
.fs6{font-size:34.560000pt;}
.fs1{font-size:36.917333pt;}
.fs0{font-size:42.666667pt;}
.fs7{font-size:42.880000pt;}
.fs8{font-size:43.008000pt;}
.fs9{font-size:48.000000pt;}
.fs5{font-size:53.120000pt;}
.fs4{font-size:58.880000pt;}
.fsa{font-size:59.008000pt;}
.fs2{font-size:64.000000pt;}
.fs3{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.ya3{bottom:5.120000pt;}
.yfa{bottom:9.733333pt;}
.yc6{bottom:10.720000pt;}
.yf8{bottom:15.200000pt;}
.yb6{bottom:18.240000pt;}
.yd0{bottom:18.400000pt;}
.yaa{bottom:18.560000pt;}
.ya4{bottom:18.720000pt;}
.y110{bottom:20.546667pt;}
.yc3{bottom:22.240000pt;}
.ya2{bottom:22.720000pt;}
.yca{bottom:26.240000pt;}
.yc8{bottom:26.400000pt;}
.ycc{bottom:26.426667pt;}
.yab{bottom:30.080000pt;}
.yb1{bottom:30.106667pt;}
.ya7{bottom:30.240000pt;}
.yc5{bottom:33.600000pt;}
.ya1{bottom:40.320000pt;}
.yf6{bottom:40.506667pt;}
.ya9{bottom:41.600000pt;}
.yb0{bottom:41.626667pt;}
.ya6{bottom:41.760000pt;}
.y10d{bottom:42.466667pt;}
.yc2{bottom:45.120000pt;}
.yf{bottom:51.200000pt;}
.yb4{bottom:53.120000pt;}
.yc4{bottom:56.640000pt;}
.yf1{bottom:57.853333pt;}
.y104{bottom:61.533333pt;}
.yb3{bottom:64.640000pt;}
.y121{bottom:76.000000pt;}
.y112{bottom:78.693333pt;}
.y130{bottom:80.320000pt;}
.yda{bottom:84.640000pt;}
.y120{bottom:85.760000pt;}
.y52{bottom:86.720000pt;}
.y134{bottom:90.240000pt;}
.y7d{bottom:90.400000pt;}
.yeb{bottom:92.960000pt;}
.y72{bottom:93.600000pt;}
.y4{bottom:96.513846pt;}
.yf0{bottom:96.773333pt;}
.y58{bottom:103.680000pt;}
.y158{bottom:104.160000pt;}
.y105{bottom:104.666667pt;}
.y3{bottom:107.588123pt;}
.y111{bottom:109.346667pt;}
.y122{bottom:110.906667pt;}
.ybf{bottom:111.360000pt;}
.y84{bottom:113.760000pt;}
.yf2{bottom:114.333333pt;}
.y3b{bottom:115.200000pt;}
.y89{bottom:117.120000pt;}
.y2{bottom:118.662400pt;}
.y12e{bottom:118.746667pt;}
.y12b{bottom:121.760000pt;}
.y157{bottom:125.280000pt;}
.y10b{bottom:126.240000pt;}
.y7c{bottom:127.200000pt;}
.y5{bottom:129.826400pt;}
.y71{bottom:130.400000pt;}
.y10e{bottom:132.093333pt;}
.yf7{bottom:133.466667pt;}
.yd9{bottom:134.720000pt;}
.y11f{bottom:135.840000pt;}
.y10f{bottom:135.973333pt;}
.y23{bottom:136.160000pt;}
.y51{bottom:136.800000pt;}
.y128{bottom:137.093333pt;}
.yef{bottom:139.040000pt;}
.y17b{bottom:139.680000pt;}
.y133{bottom:140.320000pt;}
.y57{bottom:140.480000pt;}
.yea{bottom:143.066667pt;}
.y123{bottom:145.786667pt;}
.y9e{bottom:147.386667pt;}
.y106{bottom:147.813333pt;}
.ybe{bottom:148.186667pt;}
.y12d{bottom:152.480000pt;}
.y12f{bottom:153.786667pt;}
.y88{bottom:153.946667pt;}
.y156{bottom:154.426667pt;}
.y12c{bottom:156.960000pt;}
.y17a{bottom:160.826667pt;}
.y83{bottom:163.866667pt;}
.y3a{bottom:165.466667pt;}
.y70{bottom:167.226667pt;}
.yf3{bottom:170.813333pt;}
.yd8{bottom:171.706667pt;}
.y155{bottom:175.546667pt;}
.y7b{bottom:177.146667pt;}
.y56{bottom:177.306667pt;}
.y124{bottom:180.706667pt;}
.yee{bottom:181.693333pt;}
.ybd{bottom:184.986667pt;}
.y11e{bottom:186.106667pt;}
.y22{bottom:186.266667pt;}
.y50{bottom:187.066667pt;}
.y179{bottom:189.946667pt;}
.y87{bottom:190.746667pt;}
.y107{bottom:190.906667pt;}
.ye9{bottom:193.146667pt;}
.y9d{bottom:197.466667pt;}
.y129{bottom:198.146667pt;}
.y6f{bottom:204.026667pt;}
.y154{bottom:204.666667pt;}
.yd7{bottom:208.506667pt;}
.y178{bottom:211.226667pt;}
.y82{bottom:213.946667pt;}
.y55{bottom:214.106667pt;}
.y39{bottom:215.546667pt;}
.y125{bottom:215.613333pt;}
.ybc{bottom:221.786667pt;}
.yed{bottom:225.053333pt;}
.y153{bottom:225.946667pt;}
.yf4{bottom:227.266667pt;}
.yfb{bottom:227.386667pt;}
.y86{bottom:227.546667pt;}
.ye8{bottom:230.106667pt;}
.y108{bottom:234.053333pt;}
.y11d{bottom:236.186667pt;}
.y21{bottom:236.506667pt;}
.y4f{bottom:237.466667pt;}
.y177{bottom:240.346667pt;}
.y6e{bottom:240.826667pt;}
.yd6{bottom:245.306667pt;}
.y9c{bottom:247.546667pt;}
.y126{bottom:250.493333pt;}
.y54{bottom:250.906667pt;}
.y152{bottom:255.066667pt;}
.y10c{bottom:255.613333pt;}
.ybb{bottom:258.586667pt;}
.y8{bottom:258.874933pt;}
.y12a{bottom:259.226667pt;}
.y176{bottom:261.466667pt;}
.y81{bottom:264.186667pt;}
.y85{bottom:264.346667pt;}
.y38{bottom:265.626667pt;}
.ye7{bottom:266.906667pt;}
.y7{bottom:271.674933pt;}
.y11c{bottom:273.146667pt;}
.y151{bottom:276.186667pt;}
.y109{bottom:277.186667pt;}
.y6d{bottom:277.626667pt;}
.yd5{bottom:282.106667pt;}
.yf5{bottom:283.746667pt;}
.y6{bottom:284.474933pt;}
.y127{bottom:285.413333pt;}
.y20{bottom:286.586667pt;}
.y4e{bottom:287.546667pt;}
.y53{bottom:287.706667pt;}
.y175{bottom:290.586667pt;}
.yba{bottom:295.386667pt;}
.y9b{bottom:297.786667pt;}
.y80{bottom:301.146667pt;}
.ye6{bottom:303.706667pt;}
.y150{bottom:305.306667pt;}
.y11b{bottom:309.946667pt;}
.y174{bottom:311.866667pt;}
.y6c{bottom:314.426667pt;}
.y37{bottom:315.866667pt;}
.yd4{bottom:318.906667pt;}
.y10a{bottom:320.293333pt;}
.y7a{bottom:324.506667pt;}
.y14f{bottom:326.586667pt;}
.yb9{bottom:332.026667pt;}
.y173{bottom:332.986667pt;}
.y9a{bottom:334.746667pt;}
.y1f{bottom:336.666667pt;}
.y4d{bottom:337.786667pt;}
.y7f{bottom:337.946667pt;}
.ye5{bottom:340.506667pt;}
.y11a{bottom:346.746667pt;}
.y14e{bottom:347.706667pt;}
.y6b{bottom:351.226667pt;}
.yd3{bottom:355.706667pt;}
.y79{bottom:361.346667pt;}
.y172{bottom:362.146667pt;}
.y36{bottom:365.986667pt;}
.yb8{bottom:368.866667pt;}
.y99{bottom:371.586667pt;}
.y4c{bottom:374.786667pt;}
.y14d{bottom:376.866667pt;}
.ye4{bottom:377.346667pt;}
.y171{bottom:383.266667pt;}
.y119{bottom:383.586667pt;}
.y1e{bottom:386.786667pt;}
.y6a{bottom:388.066667pt;}
.yd2{bottom:392.546667pt;}
.y14c{bottom:397.986667pt;}
.y78{bottom:398.146667pt;}
.y170{bottom:404.546667pt;}
.y98{bottom:408.386667pt;}
.y4b{bottom:411.586667pt;}
.ye3{bottom:414.146667pt;}
.y35{bottom:416.066667pt;}
.yb7{bottom:418.626667pt;}
.y102{bottom:418.946667pt;}
.y118{bottom:420.386667pt;}
.y1d{bottom:422.786667pt;}
.y69{bottom:424.866667pt;}
.y16f{bottom:425.666667pt;}
.y14b{bottom:427.266667pt;}
.yd1{bottom:429.346667pt;}
.yb5{bottom:433.506667pt;}
.y77{bottom:434.946667pt;}
.y97{bottom:445.186667pt;}
.y4a{bottom:448.386667pt;}
.ye2{bottom:450.946667pt;}
.ycf{bottom:451.746667pt;}
.y16e{bottom:454.786667pt;}
.y101{bottom:455.906667pt;}
.y117{bottom:457.186667pt;}
.y68{bottom:461.666667pt;}
.y34{bottom:466.146667pt;}
.yb2{bottom:468.866667pt;}
.y1c{bottom:471.746667pt;}
.y16d{bottom:475.906667pt;}
.y14a{bottom:477.506667pt;}
.y96{bottom:481.986667pt;}
.yce{bottom:483.106667pt;}
.y49{bottom:485.186667pt;}
.ye1{bottom:487.746667pt;}
.y100{bottom:492.706667pt;}
.y116{bottom:493.986667pt;}
.y67{bottom:498.466667pt;}
.y149{bottom:498.626667pt;}
.y16c{bottom:505.186667pt;}
.y1b{bottom:507.746667pt;}
.y76{bottom:508.546667pt;}
.y33{bottom:516.386667pt;}
.y95{bottom:518.626667pt;}
.y148{bottom:519.906667pt;}
.y48{bottom:521.986667pt;}
.ye0{bottom:524.546667pt;}
.y16b{bottom:526.306667pt;}
.ycd{bottom:529.666667pt;}
.y115{bottom:530.786667pt;}
.y66{bottom:535.266667pt;}
.yff{bottom:542.466667pt;}
.y75{bottom:545.346667pt;}
.y147{bottom:549.026667pt;}
.y32{bottom:552.226667pt;}
.yaf{bottom:553.826667pt;}
.y94{bottom:555.426667pt;}
.y1a{bottom:556.706667pt;}
.y47{bottom:558.626667pt;}
.y114{bottom:567.586667pt;}
.y146{bottom:570.146667pt;}
.y65{bottom:572.066667pt;}
.ydf{bottom:574.146667pt;}
.ycb{bottom:576.386667pt;}
.y16a{bottom:576.546667pt;}
.y31{bottom:579.933333pt;}
.y132{bottom:582.173333pt;}
.y145{bottom:591.293333pt;}
.y93{bottom:592.253333pt;}
.y19{bottom:592.733333pt;}
.y74{bottom:594.973333pt;}
.yfe{bottom:595.293333pt;}
.y46{bottom:595.453333pt;}
.y169{bottom:597.853333pt;}
.y64{bottom:608.893333pt;}
.y30{bottom:613.533333pt;}
.y113{bottom:613.853333pt;}
.yae{bottom:615.773333pt;}
.y144{bottom:620.573333pt;}
.yde{bottom:620.733333pt;}
.yc9{bottom:623.133333pt;}
.y168{bottom:626.973333pt;}
.y18{bottom:628.573333pt;}
.y92{bottom:629.053333pt;}
.y131{bottom:632.093333pt;}
.y45{bottom:632.253333pt;}
.y143{bottom:641.693333pt;}
.y2f{bottom:643.133333pt;}
.yfd{bottom:644.573333pt;}
.y73{bottom:645.533333pt;}
.y63{bottom:645.693333pt;}
.y167{bottom:648.093333pt;}
.ydd{bottom:651.453333pt;}
.y142{bottom:662.813333pt;}
.y91{bottom:665.853333pt;}
.y44{bottom:669.053333pt;}
.y166{bottom:669.213333pt;}
.yc7{bottom:669.693333pt;}
.y2e{bottom:676.733333pt;}
.y17{bottom:677.533333pt;}
.yad{bottom:677.853333pt;}
.y1{bottom:682.214267pt;}
.ydc{bottom:682.333333pt;}
.y62{bottom:682.493333pt;}
.yfc{bottom:687.933333pt;}
.y103{bottom:688.000000pt;}
.y141{bottom:691.933333pt;}
.yd{bottom:696.924933pt;}
.y165{bottom:698.333333pt;}
.y43{bottom:705.853333pt;}
.y2d{bottom:706.333333pt;}
.y140{bottom:713.053333pt;}
.y16{bottom:713.533333pt;}
.y90{bottom:715.613333pt;}
.yc1{bottom:717.053333pt;}
.y7e{bottom:719.133333pt;}
.y61{bottom:719.293333pt;}
.yec{bottom:725.760000pt;}
.ydb{bottom:725.853333pt;}
.y164{bottom:727.613333pt;}
.yac{bottom:739.773333pt;}
.y2c{bottom:739.933333pt;}
.y13f{bottom:742.333333pt;}
.y42{bottom:742.653333pt;}
.y163{bottom:748.733333pt;}
.y60{bottom:756.093333pt;}
.y15{bottom:762.493333pt;}
.y13e{bottom:763.453333pt;}
.y8f{bottom:766.013333pt;}
.y2b{bottom:769.533333pt;}
.y162{bottom:769.853333pt;}
.y41{bottom:779.453333pt;}
.y13d{bottom:784.573333pt;}
.y5f{bottom:792.893333pt;}
.y161{bottom:799.013333pt;}
.ya8{bottom:801.893333pt;}
.y8e{bottom:803.013333pt;}
.y2a{bottom:803.173333pt;}
.y14{bottom:812.613333pt;}
.y13c{bottom:813.733333pt;}
.y40{bottom:816.293333pt;}
.yc0{bottom:818.533333pt;}
.y160{bottom:820.293333pt;}
.yc{bottom:824.170533pt;}
.y5e{bottom:829.733333pt;}
.y29{bottom:832.773333pt;}
.y13b{bottom:835.013333pt;}
.y8d{bottom:839.813333pt;}
.y15f{bottom:841.413333pt;}
.y3f{bottom:853.093333pt;}
.y13a{bottom:856.133333pt;}
.yb{bottom:862.570533pt;}
.y13{bottom:862.853333pt;}
.ya5{bottom:863.813333pt;}
.y28{bottom:866.373333pt;}
.y5d{bottom:866.533333pt;}
.y15e{bottom:870.533333pt;}
.y8c{bottom:876.613333pt;}
.y139{bottom:885.253333pt;}
.y3e{bottom:889.893333pt;}
.y15d{bottom:891.653333pt;}
.y27{bottom:895.973333pt;}
.ya{bottom:902.605333pt;}
.y5c{bottom:903.333333pt;}
.y138{bottom:906.373333pt;}
.y12{bottom:912.933333pt;}
.y9{bottom:921.805333pt;}
.y8b{bottom:926.213333pt;}
.ya0{bottom:926.533333pt;}
.y3d{bottom:926.693333pt;}
.y137{bottom:935.653333pt;}
.y5b{bottom:940.133333pt;}
.y15c{bottom:942.053333pt;}
.y26{bottom:946.053333pt;}
.y136{bottom:956.773333pt;}
.y11{bottom:963.013333pt;}
.y15b{bottom:963.173333pt;}
.y3c{bottom:963.493333pt;}
.yf9{bottom:969.600000pt;}
.y17c{bottom:971.173333pt;}
.y8a{bottom:976.773333pt;}
.y5a{bottom:976.933333pt;}
.y135{bottom:977.893333pt;}
.y25{bottom:979.333333pt;}
.y15a{bottom:992.293333pt;}
.y10{bottom:1013.253333pt;}
.y24{bottom:1013.413333pt;}
.y159{bottom:1013.573333pt;}
.y59{bottom:1013.760000pt;}
.y9f{bottom:1016.000000pt;}
.ye{bottom:1061.600000pt;}
.h2{height:28.228781pt;}
.h1a{height:30.560000pt;}
.h1{height:32.625000pt;}
.h15{height:34.560000pt;}
.hb{height:42.084375pt;}
.h20{height:44.722500pt;}
.h1f{height:44.856000pt;}
.h18{height:46.560000pt;}
.h17{height:46.720000pt;}
.h19{height:46.752000pt;}
.h3{height:48.937500pt;}
.h1c{height:52.834688pt;}
.hd{height:53.375000pt;}
.he{height:55.402500pt;}
.hf{height:56.800000pt;}
.h6{height:58.563750pt;}
.h23{height:58.691063pt;}
.h1d{height:58.701354pt;}
.h8{height:60.288750pt;}
.h11{height:61.920000pt;}
.h13{height:61.952000pt;}
.h10{height:62.080000pt;}
.h12{height:62.112000pt;}
.ha{height:62.812500pt;}
.h7{height:64.500000pt;}
.h21{height:66.383438pt;}
.h9{height:66.404375pt;}
.hc{height:66.750000pt;}
.h16{height:68.960000pt;}
.h1e{height:70.400000pt;}
.h14{height:84.960000pt;}
.h4{height:97.875000pt;}
.h1b{height:302.400000pt;}
.h22{height:340.160000pt;}
.h5{height:1122.560000pt;}
.h0{height:1122.666667pt;}
.we{width:56.640000pt;}
.w7{width:63.040000pt;}
.wc{width:66.240000pt;}
.w13{width:80.000000pt;}
.wf{width:84.960000pt;}
.w5{width:85.120000pt;}
.w10{width:85.152000pt;}
.wa{width:91.200000pt;}
.wd{width:94.592000pt;}
.w6{width:95.072000pt;}
.w9{width:107.872000pt;}
.w8{width:153.306667pt;}
.w11{width:567.133333pt;}
.wb{width:595.613333pt;}
.w12{width:604.640000pt;}
.w1{width:793.333333pt;}
.w0{width:793.626667pt;}
.w4{width:793.759988pt;}
.w2{width:793.760000pt;}
.w3{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:7.360000pt;}
.x16{left:9.120000pt;}
.x19{left:10.240000pt;}
.xb{left:12.000000pt;}
.x11{left:12.960000pt;}
.x1e{left:13.920000pt;}
.x9{left:14.880000pt;}
.x7{left:17.120000pt;}
.x17{left:18.400000pt;}
.x18{left:19.840000pt;}
.x14{left:21.600000pt;}
.x8{left:23.360000pt;}
.x24{left:24.320000pt;}
.x13{left:26.880000pt;}
.xf{left:28.640000pt;}
.x21{left:29.600000pt;}
.x4{left:31.040000pt;}
.x12{left:32.640000pt;}
.x15{left:35.040000pt;}
.x2e{left:37.024000pt;}
.x22{left:38.720000pt;}
.x23{left:42.600000pt;}
.x2d{left:43.813333pt;}
.x20{left:46.400000pt;}
.xd{left:50.240000pt;}
.x25{left:53.760000pt;}
.x1{left:57.512133pt;}
.x26{left:64.960000pt;}
.x27{left:79.840000pt;}
.x2f{left:81.986667pt;}
.x3{left:94.431988pt;}
.x37{left:98.626667pt;}
.x29{left:118.813333pt;}
.x1a{left:160.666667pt;}
.x6{left:179.546667pt;}
.x2{left:182.955067pt;}
.x2a{left:220.986667pt;}
.x30{left:253.506667pt;}
.x1b{left:255.266667pt;}
.xa{left:274.626667pt;}
.x1c{left:311.906667pt;}
.x2b{left:323.200000pt;}
.xc{left:337.666667pt;}
.x3b{left:387.040000pt;}
.x1d{left:396.866667pt;}
.x38{left:402.493333pt;}
.xe{left:490.973333pt;}
.x2c{left:527.586667pt;}
.x39{left:529.120000pt;}
.x36{left:547.746667pt;}
.x31{left:567.680000pt;}
.x1f{left:576.413333pt;}
.x3a{left:584.226667pt;}
.x32{left:590.533322pt;}
.x10{left:598.853333pt;}
.x33{left:603.173322pt;}
.x34{left:615.653322pt;}
.x35{left:628.453322pt;}
.x28{left:699.173322pt;}
}


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