
/* 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_63824c0665fc.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_cf609e93e0ec.woff")format("woff");}.ff2{font-family:ff2;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:ff3;src:url("fonts/font_0002_477dd4274a01.woff")format("woff");}.ff3{font-family:ff3;line-height:0.959961;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_a9303def0023.woff")format("woff");}.ff4{font-family:ff4;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:ff5;src:url("fonts/font_0004_1db3ee9ee3ab.woff")format("woff");}.ff5{font-family:ff5;line-height:1.116000;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_9aa73178383c.woff")format("woff");}.ff6{font-family:ff6;line-height:0.910156;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_119d3e59a752.woff")format("woff");}.ff7{font-family:ff7;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url("fonts/font_0007_e4bdd805a405.woff")format("woff");}.ff8{font-family:ff8;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:ff9;src:url("fonts/font_0008_4900f29b5cda.woff")format("woff");}.ff9{font-family:ff9;line-height:1.073242;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_46b95bf1e8f0.woff")format("woff");}.ffa{font-family:ffa;line-height:1.073242;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_7d73a71e325c.woff")format("woff");}.ffb{font-family:ffb;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:ffc;src:url("fonts/font_0011_35fb9c34e50f.woff")format("woff");}.ffc{font-family:ffc;line-height:1.040039;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_5359b6ea9811.woff")format("woff");}.ffd{font-family:ffd;line-height:1.040039;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_f0bace88969a.woff")format("woff");}.ffe{font-family:ffe;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:fff;src:url("fonts/font_0014_faaae1ca8e36.woff")format("woff");}.fff{font-family:fff;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url("fonts/font_0015_14a9ea5a586e.woff")format("woff");}.ff10{font-family:ff10;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:ff11;src:url("fonts/font_0016_5a3c9c82eaa5.woff")format("woff");}.ff11{font-family:ff11;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v4{vertical-align:-76.320000px;}
.v2{vertical-align:-23.760000px;}
.v3{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.lsc{letter-spacing:-1.176000px;}
.ls1c{letter-spacing:-1.134000px;}
.ls11{letter-spacing:-1.026000px;}
.ls10{letter-spacing:-0.720000px;}
.lsd{letter-spacing:-0.457800px;}
.lsb{letter-spacing:-0.414600px;}
.lse{letter-spacing:-0.305400px;}
.ls12{letter-spacing:-0.262200px;}
.ls1a{letter-spacing:-0.259800px;}
.ls9{letter-spacing:-0.115200px;}
.lsf{letter-spacing:-0.109200px;}
.ls19{letter-spacing:-0.106800px;}
.ls0{letter-spacing:0.000000px;}
.ls1b{letter-spacing:0.053280px;}
.ls7{letter-spacing:0.109200px;}
.ls17{letter-spacing:0.152400px;}
.ls18{letter-spacing:0.153600px;}
.ls6{letter-spacing:0.178800px;}
.ls2{letter-spacing:0.180000px;}
.ls1e{letter-spacing:0.207600px;}
.ls15{letter-spacing:0.259920px;}
.ls16{letter-spacing:0.262080px;}
.lsa{letter-spacing:0.262200px;}
.ls5{letter-spacing:0.305280px;}
.ls8{letter-spacing:0.305400px;}
.ls14{letter-spacing:0.360000px;}
.ls4{letter-spacing:0.513600px;}
.ls1d{letter-spacing:0.612000px;}
.ls1{letter-spacing:0.720000px;}
.ls3{letter-spacing:0.828000px;}
.ls20{letter-spacing:41.345280px;}
.ls1f{letter-spacing:74.465280px;}
.ls13{letter-spacing:470.136000px;}
.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;}
}
.ws2{word-spacing:-66.240000px;}
.ws8{word-spacing:-66.124800px;}
.ws19{word-spacing:-41.967600px;}
.ws1{word-spacing:-36.000000px;}
.ws18{word-spacing:-17.172000px;}
.ws7{word-spacing:-16.865400px;}
.ws9{word-spacing:-16.822200px;}
.wsf{word-spacing:-16.669200px;}
.ws5{word-spacing:-16.560000px;}
.wsd{word-spacing:-16.450800px;}
.ws10{word-spacing:-16.297800px;}
.wsc{word-spacing:-16.254600px;}
.wsa{word-spacing:-16.145400px;}
.wse{word-spacing:-15.840000px;}
.ws17{word-spacing:-15.426000px;}
.wsb{word-spacing:-15.384000px;}
.ws15{word-spacing:-15.300000px;}
.ws16{word-spacing:-15.120000px;}
.ws11{word-spacing:-15.093600px;}
.ws14{word-spacing:-14.993280px;}
.ws4{word-spacing:-14.940000px;}
.ws12{word-spacing:-14.833200px;}
.ws13{word-spacing:-14.680200px;}
.ws6{word-spacing:-10.618800px;}
.ws3{word-spacing:-10.440000px;}
.ws0{word-spacing:0.000000px;}
._13{margin-left:-4.316865px;}
._e{margin-left:-3.245760px;}
._6{margin-left:-2.223405px;}
._1{margin-left:-1.195515px;}
._4{width:1.093275px;}
._7{width:2.400795px;}
._b{width:3.634965px;}
._c{width:4.721130px;}
._d{width:6.274800px;}
._0{width:7.476098px;}
._a{width:8.916105px;}
._8{width:9.999765px;}
._9{width:11.117835px;}
._f{width:12.332490px;}
._19{width:13.682925px;}
._5{width:14.771520px;}
._2{width:16.561579px;}
._17{width:17.839155px;}
._15{width:19.077120px;}
._14{width:20.136960px;}
._16{width:21.281280px;}
._18{width:25.104960px;}
._1a{width:28.814400px;}
._1b{width:30.006720px;}
._12{width:115.922685px;}
._3{width:136.860000px;}
._10{width:219.819405px;}
._11{width:238.320000px;}
.fc4{color:transparent;}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(0,110,178);}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:41.760000px;}
.fs4{font-size:42.000000px;}
.fs5{font-size:47.820600px;}
.fs3{font-size:48.000000px;}
.fs1{font-size:54.000000px;}
.fs9{font-size:59.760000px;}
.fs6{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:96.000000px;}
.fs7{font-size:102.240000px;}
.y0{bottom:0.000000px;}
.ybb{bottom:3.240000px;}
.ybc{bottom:3.600000px;}
.y68{bottom:3.960000px;}
.y98{bottom:4.140000px;}
.y1d{bottom:4.289325px;}
.yc0{bottom:5.400000px;}
.ybd{bottom:5.580000px;}
.y1c{bottom:19.233262px;}
.y27{bottom:22.500000px;}
.y67{bottom:22.860000px;}
.yae{bottom:23.040000px;}
.yb8{bottom:24.300000px;}
.yb9{bottom:24.660000px;}
.y1b{bottom:34.177200px;}
.yd2{bottom:41.940000px;}
.y109{bottom:42.120000px;}
.y19{bottom:58.020000px;}
.yff{bottom:61.020000px;}
.y1a{bottom:61.708950px;}
.y20{bottom:64.500000px;}
.y4f{bottom:120.636000px;}
.yfc{bottom:122.796000px;}
.y7b{bottom:126.756000px;}
.y11f{bottom:131.256000px;}
.y4e{bottom:139.536000px;}
.yfb{bottom:141.696000px;}
.y7a{bottom:145.656000px;}
.ycf{bottom:148.176000px;}
.y11e{bottom:150.330000px;}
.y4d{bottom:158.430000px;}
.yfa{bottom:160.590000px;}
.y79{bottom:164.550000px;}
.yce{bottom:167.250000px;}
.y65{bottom:169.050000px;}
.y11d{bottom:169.230000px;}
.y95{bottom:169.770000px;}
.y145{bottom:170.670000px;}
.y4c{bottom:177.510000px;}
.yf9{bottom:179.670000px;}
.y78{bottom:183.630000px;}
.ycd{bottom:186.150000px;}
.y11c{bottom:188.130000px;}
.y94{bottom:188.670000px;}
.y144{bottom:189.570000px;}
.y4b{bottom:196.410000px;}
.yf8{bottom:198.570000px;}
.y106{bottom:201.630000px;}
.y77{bottom:202.530000px;}
.ycc{bottom:205.050000px;}
.y11b{bottom:206.850000px;}
.y93{bottom:207.750000px;}
.y143{bottom:208.650000px;}
.y4a{bottom:215.310000px;}
.yf7{bottom:217.470000px;}
.y105{bottom:220.710000px;}
.y76{bottom:221.430000px;}
.ycb{bottom:224.130000px;}
.y92{bottom:226.650000px;}
.y142{bottom:227.550000px;}
.y49{bottom:234.390000px;}
.yf6{bottom:236.550000px;}
.y104{bottom:239.610000px;}
.y11a{bottom:240.150000px;}
.y75{bottom:240.510000px;}
.yca{bottom:243.030000px;}
.y91{bottom:245.550000px;}
.y141{bottom:246.450000px;}
.y48{bottom:253.290000px;}
.yf5{bottom:255.450000px;}
.ye1{bottom:255.630000px;}
.y103{bottom:258.510000px;}
.y74{bottom:259.410000px;}
.yc9{bottom:261.930000px;}
.y90{bottom:264.630000px;}
.y140{bottom:265.530000px;}
.y47{bottom:272.190000px;}
.yf4{bottom:274.350000px;}
.ye0{bottom:274.710000px;}
.y102{bottom:277.590000px;}
.y73{bottom:278.310000px;}
.yc8{bottom:281.010000px;}
.y8f{bottom:283.530000px;}
.y13f{bottom:284.430000px;}
.y46{bottom:291.270000px;}
.yf3{bottom:293.430000px;}
.ydf{bottom:293.610000px;}
.y101{bottom:296.490000px;}
.y72{bottom:297.435000px;}
.yc7{bottom:299.955000px;}
.y8e{bottom:302.475000px;}
.y13e{bottom:303.375000px;}
.y119{bottom:306.075000px;}
.yde{bottom:308.595000px;}
.y45{bottom:310.215000px;}
.yf2{bottom:312.375000px;}
.y100{bottom:315.435000px;}
.y71{bottom:316.335000px;}
.yc6{bottom:318.855000px;}
.y8d{bottom:321.555000px;}
.y13d{bottom:322.455000px;}
.y44{bottom:329.115000px;}
.yf1{bottom:331.275000px;}
.y70{bottom:335.235000px;}
.yc5{bottom:337.935000px;}
.y8c{bottom:340.455000px;}
.y13c{bottom:341.355000px;}
.y43{bottom:348.015000px;}
.yfe{bottom:348.375000px;}
.yf0{bottom:350.355000px;}
.y6f{bottom:354.315000px;}
.ydd{bottom:355.575000px;}
.yc4{bottom:356.835000px;}
.y8b{bottom:359.355000px;}
.y13b{bottom:360.255000px;}
.y42{bottom:366.735000px;}
.yef{bottom:369.255000px;}
.y6e{bottom:373.215000px;}
.yc3{bottom:375.735000px;}
.y8a{bottom:378.435000px;}
.y13a{bottom:379.155000px;}
.yee{bottom:388.155000px;}
.y6d{bottom:392.115000px;}
.yab{bottom:396.075000px;}
.y89{bottom:397.335000px;}
.y139{bottom:398.235000px;}
.yed{bottom:407.235000px;}
.y6c{bottom:411.195000px;}
.yc2{bottom:412.455000px;}
.yaa{bottom:415.155000px;}
.y88{bottom:416.235000px;}
.y138{bottom:417.135000px;}
.y41{bottom:419.655000px;}
.yec{bottom:426.135000px;}
.y6b{bottom:430.095000px;}
.yfd{bottom:433.335000px;}
.ya9{bottom:434.055000px;}
.y87{bottom:435.315000px;}
.y137{bottom:436.035000px;}
.y40{bottom:436.935000px;}
.yeb{bottom:445.035000px;}
.y6a{bottom:448.995000px;}
.yc1{bottom:449.715000px;}
.ya8{bottom:452.955000px;}
.y3f{bottom:454.215000px;}
.y136{bottom:455.115000px;}
.yea{bottom:459.975000px;}
.ybf{bottom:464.655000px;}
.y69{bottom:468.075000px;}
.y3e{bottom:471.315000px;}
.ya7{bottom:471.855000px;}
.y86{bottom:473.115000px;}
.y135{bottom:474.015000px;}
.y66{bottom:483.015000px;}
.ybe{bottom:483.735000px;}
.y3d{bottom:488.595000px;}
.ya6{bottom:490.935000px;}
.y85{bottom:492.195000px;}
.y134{bottom:492.915000px;}
.yba{bottom:502.815000px;}
.y3c{bottom:505.875000px;}
.ye9{bottom:506.955000px;}
.ya5{bottom:509.835000px;}
.y84{bottom:511.095000px;}
.y133{bottom:511.995000px;}
.yb7{bottom:522.795000px;}
.y3b{bottom:523.155000px;}
.ya4{bottom:528.735000px;}
.y64{bottom:529.815000px;}
.y83{bottom:529.995000px;}
.y132{bottom:530.895000px;}
.y3a{bottom:540.435000px;}
.ya3{bottom:547.815000px;}
.y82{bottom:549.075000px;}
.y131{bottom:549.795000px;}
.y39{bottom:557.715000px;}
.ya2{bottom:566.715000px;}
.y81{bottom:567.975000px;}
.y130{bottom:568.875000px;}
.y38{bottom:574.845000px;}
.y118{bottom:582.405000px;}
.ya1{bottom:585.645000px;}
.y80{bottom:586.905000px;}
.y12f{bottom:587.805000px;}
.y37{bottom:592.125000px;}
.yb6{bottom:594.285000px;}
.y117{bottom:601.305000px;}
.ya0{bottom:604.725000px;}
.y7f{bottom:605.985000px;}
.y12e{bottom:606.705000px;}
.y36{bottom:609.405000px;}
.ydc{bottom:611.025000px;}
.yb5{bottom:613.185000px;}
.y116{bottom:620.205000px;}
.y9f{bottom:623.625000px;}
.y12d{bottom:625.785000px;}
.y35{bottom:626.685000px;}
.ydb{bottom:630.105000px;}
.yb4{bottom:632.085000px;}
.y115{bottom:639.285000px;}
.y7e{bottom:642.525000px;}
.y34{bottom:643.965000px;}
.y12c{bottom:644.685000px;}
.yda{bottom:649.005000px;}
.yb3{bottom:651.165000px;}
.y114{bottom:658.185000px;}
.y9e{bottom:661.605000px;}
.y12b{bottom:663.585000px;}
.yd9{bottom:667.905000px;}
.yb2{bottom:670.065000px;}
.y113{bottom:677.085000px;}
.y33{bottom:679.605000px;}
.y7d{bottom:679.785000px;}
.y9d{bottom:680.505000px;}
.y12a{bottom:682.305000px;}
.yd8{bottom:686.985000px;}
.y112{bottom:696.165000px;}
.y7c{bottom:698.865000px;}
.yd7{bottom:705.885000px;}
.yb1{bottom:706.965000px;}
.y111{bottom:715.065000px;}
.y32{bottom:716.505000px;}
.y9c{bottom:717.405000px;}
.y63{bottom:717.765000px;}
.y129{bottom:719.565000px;}
.yd6{bottom:724.785000px;}
.yb0{bottom:726.045000px;}
.y110{bottom:733.965000px;}
.y31{bottom:735.585000px;}
.y9b{bottom:736.485000px;}
.y62{bottom:736.665000px;}
.y128{bottom:738.465000px;}
.yd5{bottom:743.865000px;}
.yaf{bottom:744.945000px;}
.y10f{bottom:753.045000px;}
.y9a{bottom:755.385000px;}
.y61{bottom:755.565000px;}
.y127{bottom:757.545000px;}
.yad{bottom:759.885000px;}
.y30{bottom:760.425000px;}
.yd4{bottom:762.765000px;}
.y10e{bottom:771.945000px;}
.y2f{bottom:773.385000px;}
.y99{bottom:774.285000px;}
.y60{bottom:774.645000px;}
.y126{bottom:776.085000px;}
.yd3{bottom:781.665000px;}
.y97{bottom:789.225000px;}
.y10d{bottom:790.845000px;}
.y2e{bottom:792.285000px;}
.y5f{bottom:793.545000px;}
.yd1{bottom:796.605000px;}
.y2d{bottom:798.225000px;}
.yac{bottom:806.865000px;}
.y10c{bottom:809.925000px;}
.ye8{bottom:811.185000px;}
.y2c{bottom:811.365000px;}
.y5e{bottom:812.445000px;}
.y125{bottom:813.345000px;}
.y96{bottom:817.305000px;}
.y10b{bottom:828.825000px;}
.ye7{bottom:830.085000px;}
.y5d{bottom:831.525000px;}
.y124{bottom:832.425000px;}
.y2b{bottom:836.205000px;}
.y10a{bottom:847.725000px;}
.ye6{bottom:849.165000px;}
.y5c{bottom:850.470000px;}
.y123{bottom:851.370000px;}
.y2a{bottom:857.490000px;}
.y18{bottom:862.260000px;}
.yd0{bottom:862.530000px;}
.y108{bottom:862.710000px;}
.ye5{bottom:868.110000px;}
.y5b{bottom:869.370000px;}
.y122{bottom:870.270000px;}
.y17{bottom:874.260000px;}
.y8{bottom:874.500000px;}
.y16{bottom:886.260000px;}
.ye4{bottom:887.010000px;}
.y5a{bottom:888.450000px;}
.y121{bottom:888.990000px;}
.y15{bottom:898.260000px;}
.ye3{bottom:901.950000px;}
.y7{bottom:903.600000px;}
.y59{bottom:907.350000px;}
.y29{bottom:920.850000px;}
.y14{bottom:921.510000px;}
.y58{bottom:926.250000px;}
.y107{bottom:928.770000px;}
.y13{bottom:933.510000px;}
.y6{bottom:943.950000px;}
.y120{bottom:945.150000px;}
.y57{bottom:945.330000px;}
.y12{bottom:945.510000px;}
.ye2{bottom:948.930000px;}
.y28{bottom:950.190000px;}
.y11{bottom:957.510000px;}
.y56{bottom:964.230000px;}
.y10{bottom:980.760000px;}
.y5{bottom:982.365000px;}
.y55{bottom:983.130000px;}
.yf{bottom:992.760000px;}
.y54{bottom:1002.210000px;}
.ye{bottom:1004.760000px;}
.y4{bottom:1011.165000px;}
.yd{bottom:1016.760000px;}
.y53{bottom:1021.110000px;}
.yc{bottom:1028.760000px;}
.y3{bottom:1039.965000px;}
.y52{bottom:1040.010000px;}
.yb{bottom:1040.760000px;}
.ya{bottom:1052.760000px;}
.y51{bottom:1059.090000px;}
.y50{bottom:1077.990000px;}
.y9{bottom:1078.260000px;}
.y2{bottom:1081.485000px;}
.y1f{bottom:1144.500000px;}
.y26{bottom:1153.260000px;}
.y1e{bottom:1165.500000px;}
.y25{bottom:1172.340000px;}
.y24{bottom:1191.240000px;}
.y1{bottom:1191.570000px;}
.y23{bottom:1210.140000px;}
.y22{bottom:1229.220000px;}
.y21{bottom:1248.120000px;}
.h1e{height:19.080000px;}
.h1d{height:19.260000px;}
.h18{height:28.080000px;}
.he{height:34.827188px;}
.h9{height:37.494141px;}
.h1b{height:38.340000px;}
.h8{height:42.942899px;}
.h5{height:43.804688px;}
.h7{height:46.538700px;}
.h14{height:46.800000px;}
.h1a{height:46.980000px;}
.h4{height:50.062500px;}
.h16{height:54.596250px;}
.ha{height:55.243125px;}
.h2{height:56.320312px;}
.h10{height:56.795625px;}
.h11{height:58.587188px;}
.hf{height:58.651172px;}
.hd{height:59.565938px;}
.h1c{height:60.226875px;}
.h13{height:65.010937px;}
.h20{height:65.916000px;}
.h27{height:66.060000px;}
.h15{height:66.757500px;}
.h29{height:68.084282px;}
.h3{height:72.000000px;}
.h1{height:75.093750px;}
.h25{height:84.960000px;}
.hc{height:87.662813px;}
.h22{height:144.000000px;}
.h26{height:164.160000px;}
.h12{height:183.990000px;}
.h1f{height:230.400000px;}
.h21{height:232.590000px;}
.h28{height:272.190000px;}
.h17{height:275.610000px;}
.h19{height:286.050000px;}
.h23{height:300.270000px;}
.h24{height:394.050000px;}
.hb{height:1240.560000px;}
.h0{height:1263.000000px;}
.h6{height:1263.060000px;}
.w9{width:27.000000px;}
.wb{width:36.036000px;}
.wd{width:46.080000px;}
.we{width:46.116000px;}
.wf{width:46.260000px;}
.w8{width:70.776000px;}
.wa{width:75.960000px;}
.wc{width:78.480000px;}
.w7{width:115.380000px;}
.w5{width:298.515000px;}
.w6{width:597.030000px;}
.w10{width:630.690000px;}
.w3{width:683.273100px;}
.w0{width:892.500000px;}
.w4{width:892.979987px;}
.w1{width:892.980000px;}
.w2{width:893.250000px;}
.x0{left:0.000000px;}
.x8{left:1.337034px;}
.x1e{left:4.140000px;}
.x2e{left:5.220000px;}
.x31{left:8.670000px;}
.x2f{left:10.980000px;}
.x29{left:13.680000px;}
.x22{left:14.760000px;}
.x26{left:16.560000px;}
.x30{left:18.930000px;}
.x15{left:20.514000px;}
.x2d{left:23.220000px;}
.x14{left:25.560000px;}
.x33{left:27.180000px;}
.x3d{left:28.614000px;}
.x32{left:29.700000px;}
.x1c{left:31.365000px;}
.x20{left:32.760000px;}
.x24{left:36.180000px;}
.x13{left:40.494000px;}
.x19{left:43.734000px;}
.x43{left:45.894000px;}
.x3b{left:54.894000px;}
.x1{left:58.500000px;}
.x7{left:76.052700px;}
.x1a{left:98.094000px;}
.x6{left:103.466400px;}
.x9{left:105.000000px;}
.xd{left:106.416000px;}
.x10{left:127.656000px;}
.x3f{left:131.256000px;}
.x12{left:148.176000px;}
.x44{left:165.819000px;}
.x37{left:168.519000px;}
.x41{left:180.219000px;}
.x5{left:213.105000px;}
.x16{left:214.419000px;}
.x1b{left:221.790000px;}
.x39{left:232.779000px;}
.x3e{left:262.839000px;}
.x35{left:276.369000px;}
.x1d{left:292.575000px;}
.x1f{left:319.575000px;}
.x21{left:395.535000px;}
.x36{left:424.509000px;}
.x23{left:431.565000px;}
.x45{left:443.325000px;}
.xc{left:446.670000px;}
.x17{left:477.294000px;}
.x18{left:489.714000px;}
.x42{left:505.554000px;}
.x25{left:510.045000px;}
.x3c{left:511.134000px;}
.x27{left:556.125000px;}
.x38{left:558.294000px;}
.x3a{left:564.234000px;}
.x34{left:567.294000px;}
.xb{left:571.950000px;}
.x28{left:602.250000px;}
.x2{left:605.490000px;}
.x40{left:622.404000px;}
.x4{left:627.990000px;}
.x3{left:634.410000px;}
.x2a{left:648.510000px;}
.x2b{left:694.590000px;}
.xa{left:704.355000px;}
.x2c{left:740.670000px;}
.xe{left:774.360000px;}
.xf{left:781.920000px;}
.x11{left:786.960000px;}
@media print{
.v4{vertical-align:-67.840000pt;}
.v2{vertical-align:-21.120000pt;}
.v3{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.lsc{letter-spacing:-1.045333pt;}
.ls1c{letter-spacing:-1.008000pt;}
.ls11{letter-spacing:-0.912000pt;}
.ls10{letter-spacing:-0.640000pt;}
.lsd{letter-spacing:-0.406933pt;}
.lsb{letter-spacing:-0.368533pt;}
.lse{letter-spacing:-0.271467pt;}
.ls12{letter-spacing:-0.233067pt;}
.ls1a{letter-spacing:-0.230933pt;}
.ls9{letter-spacing:-0.102400pt;}
.lsf{letter-spacing:-0.097067pt;}
.ls19{letter-spacing:-0.094933pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1b{letter-spacing:0.047360pt;}
.ls7{letter-spacing:0.097067pt;}
.ls17{letter-spacing:0.135467pt;}
.ls18{letter-spacing:0.136533pt;}
.ls6{letter-spacing:0.158933pt;}
.ls2{letter-spacing:0.160000pt;}
.ls1e{letter-spacing:0.184533pt;}
.ls15{letter-spacing:0.231040pt;}
.ls16{letter-spacing:0.232960pt;}
.lsa{letter-spacing:0.233067pt;}
.ls5{letter-spacing:0.271360pt;}
.ls8{letter-spacing:0.271467pt;}
.ls14{letter-spacing:0.320000pt;}
.ls4{letter-spacing:0.456533pt;}
.ls1d{letter-spacing:0.544000pt;}
.ls1{letter-spacing:0.640000pt;}
.ls3{letter-spacing:0.736000pt;}
.ls20{letter-spacing:36.751360pt;}
.ls1f{letter-spacing:66.191360pt;}
.ls13{letter-spacing:417.898667pt;}
.ws2{word-spacing:-58.880000pt;}
.ws8{word-spacing:-58.777600pt;}
.ws19{word-spacing:-37.304533pt;}
.ws1{word-spacing:-32.000000pt;}
.ws18{word-spacing:-15.264000pt;}
.ws7{word-spacing:-14.991467pt;}
.ws9{word-spacing:-14.953067pt;}
.wsf{word-spacing:-14.817067pt;}
.ws5{word-spacing:-14.720000pt;}
.wsd{word-spacing:-14.622933pt;}
.ws10{word-spacing:-14.486933pt;}
.wsc{word-spacing:-14.448533pt;}
.wsa{word-spacing:-14.351467pt;}
.wse{word-spacing:-14.080000pt;}
.ws17{word-spacing:-13.712000pt;}
.wsb{word-spacing:-13.674667pt;}
.ws15{word-spacing:-13.600000pt;}
.ws16{word-spacing:-13.440000pt;}
.ws11{word-spacing:-13.416533pt;}
.ws14{word-spacing:-13.327360pt;}
.ws4{word-spacing:-13.280000pt;}
.ws12{word-spacing:-13.185067pt;}
.ws13{word-spacing:-13.049067pt;}
.ws6{word-spacing:-9.438933pt;}
.ws3{word-spacing:-9.280000pt;}
.ws0{word-spacing:0.000000pt;}
._13{margin-left:-3.837213pt;}
._e{margin-left:-2.885120pt;}
._6{margin-left:-1.976360pt;}
._1{margin-left:-1.062680pt;}
._4{width:0.971800pt;}
._7{width:2.134040pt;}
._b{width:3.231080pt;}
._c{width:4.196560pt;}
._d{width:5.577600pt;}
._0{width:6.645421pt;}
._a{width:7.925427pt;}
._8{width:8.888680pt;}
._9{width:9.882520pt;}
._f{width:10.962213pt;}
._19{width:12.162600pt;}
._5{width:13.130240pt;}
._2{width:14.721403pt;}
._17{width:15.857027pt;}
._15{width:16.957440pt;}
._14{width:17.899520pt;}
._16{width:18.916693pt;}
._18{width:22.315520pt;}
._1a{width:25.612800pt;}
._1b{width:26.672640pt;}
._12{width:103.042387pt;}
._3{width:121.653333pt;}
._10{width:195.395027pt;}
._11{width:211.840000pt;}
.fs8{font-size:37.120000pt;}
.fs4{font-size:37.333333pt;}
.fs5{font-size:42.507200pt;}
.fs3{font-size:42.666667pt;}
.fs1{font-size:48.000000pt;}
.fs9{font-size:53.120000pt;}
.fs6{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:85.333333pt;}
.fs7{font-size:90.880000pt;}
.y0{bottom:0.000000pt;}
.ybb{bottom:2.880000pt;}
.ybc{bottom:3.200000pt;}
.y68{bottom:3.520000pt;}
.y98{bottom:3.680000pt;}
.y1d{bottom:3.812733pt;}
.yc0{bottom:4.800000pt;}
.ybd{bottom:4.960000pt;}
.y1c{bottom:17.096233pt;}
.y27{bottom:20.000000pt;}
.y67{bottom:20.320000pt;}
.yae{bottom:20.480000pt;}
.yb8{bottom:21.600000pt;}
.yb9{bottom:21.920000pt;}
.y1b{bottom:30.379733pt;}
.yd2{bottom:37.280000pt;}
.y109{bottom:37.440000pt;}
.y19{bottom:51.573333pt;}
.yff{bottom:54.240000pt;}
.y1a{bottom:54.852400pt;}
.y20{bottom:57.333333pt;}
.y4f{bottom:107.232000pt;}
.yfc{bottom:109.152000pt;}
.y7b{bottom:112.672000pt;}
.y11f{bottom:116.672000pt;}
.y4e{bottom:124.032000pt;}
.yfb{bottom:125.952000pt;}
.y7a{bottom:129.472000pt;}
.ycf{bottom:131.712000pt;}
.y11e{bottom:133.626667pt;}
.y4d{bottom:140.826667pt;}
.yfa{bottom:142.746667pt;}
.y79{bottom:146.266667pt;}
.yce{bottom:148.666667pt;}
.y65{bottom:150.266667pt;}
.y11d{bottom:150.426667pt;}
.y95{bottom:150.906667pt;}
.y145{bottom:151.706667pt;}
.y4c{bottom:157.786667pt;}
.yf9{bottom:159.706667pt;}
.y78{bottom:163.226667pt;}
.ycd{bottom:165.466667pt;}
.y11c{bottom:167.226667pt;}
.y94{bottom:167.706667pt;}
.y144{bottom:168.506667pt;}
.y4b{bottom:174.586667pt;}
.yf8{bottom:176.506667pt;}
.y106{bottom:179.226667pt;}
.y77{bottom:180.026667pt;}
.ycc{bottom:182.266667pt;}
.y11b{bottom:183.866667pt;}
.y93{bottom:184.666667pt;}
.y143{bottom:185.466667pt;}
.y4a{bottom:191.386667pt;}
.yf7{bottom:193.306667pt;}
.y105{bottom:196.186667pt;}
.y76{bottom:196.826667pt;}
.ycb{bottom:199.226667pt;}
.y92{bottom:201.466667pt;}
.y142{bottom:202.266667pt;}
.y49{bottom:208.346667pt;}
.yf6{bottom:210.266667pt;}
.y104{bottom:212.986667pt;}
.y11a{bottom:213.466667pt;}
.y75{bottom:213.786667pt;}
.yca{bottom:216.026667pt;}
.y91{bottom:218.266667pt;}
.y141{bottom:219.066667pt;}
.y48{bottom:225.146667pt;}
.yf5{bottom:227.066667pt;}
.ye1{bottom:227.226667pt;}
.y103{bottom:229.786667pt;}
.y74{bottom:230.586667pt;}
.yc9{bottom:232.826667pt;}
.y90{bottom:235.226667pt;}
.y140{bottom:236.026667pt;}
.y47{bottom:241.946667pt;}
.yf4{bottom:243.866667pt;}
.ye0{bottom:244.186667pt;}
.y102{bottom:246.746667pt;}
.y73{bottom:247.386667pt;}
.yc8{bottom:249.786667pt;}
.y8f{bottom:252.026667pt;}
.y13f{bottom:252.826667pt;}
.y46{bottom:258.906667pt;}
.yf3{bottom:260.826667pt;}
.ydf{bottom:260.986667pt;}
.y101{bottom:263.546667pt;}
.y72{bottom:264.386667pt;}
.yc7{bottom:266.626667pt;}
.y8e{bottom:268.866667pt;}
.y13e{bottom:269.666667pt;}
.y119{bottom:272.066667pt;}
.yde{bottom:274.306667pt;}
.y45{bottom:275.746667pt;}
.yf2{bottom:277.666667pt;}
.y100{bottom:280.386667pt;}
.y71{bottom:281.186667pt;}
.yc6{bottom:283.426667pt;}
.y8d{bottom:285.826667pt;}
.y13d{bottom:286.626667pt;}
.y44{bottom:292.546667pt;}
.yf1{bottom:294.466667pt;}
.y70{bottom:297.986667pt;}
.yc5{bottom:300.386667pt;}
.y8c{bottom:302.626667pt;}
.y13c{bottom:303.426667pt;}
.y43{bottom:309.346667pt;}
.yfe{bottom:309.666667pt;}
.yf0{bottom:311.426667pt;}
.y6f{bottom:314.946667pt;}
.ydd{bottom:316.066667pt;}
.yc4{bottom:317.186667pt;}
.y8b{bottom:319.426667pt;}
.y13b{bottom:320.226667pt;}
.y42{bottom:325.986667pt;}
.yef{bottom:328.226667pt;}
.y6e{bottom:331.746667pt;}
.yc3{bottom:333.986667pt;}
.y8a{bottom:336.386667pt;}
.y13a{bottom:337.026667pt;}
.yee{bottom:345.026667pt;}
.y6d{bottom:348.546667pt;}
.yab{bottom:352.066667pt;}
.y89{bottom:353.186667pt;}
.y139{bottom:353.986667pt;}
.yed{bottom:361.986667pt;}
.y6c{bottom:365.506667pt;}
.yc2{bottom:366.626667pt;}
.yaa{bottom:369.026667pt;}
.y88{bottom:369.986667pt;}
.y138{bottom:370.786667pt;}
.y41{bottom:373.026667pt;}
.yec{bottom:378.786667pt;}
.y6b{bottom:382.306667pt;}
.yfd{bottom:385.186667pt;}
.ya9{bottom:385.826667pt;}
.y87{bottom:386.946667pt;}
.y137{bottom:387.586667pt;}
.y40{bottom:388.386667pt;}
.yeb{bottom:395.586667pt;}
.y6a{bottom:399.106667pt;}
.yc1{bottom:399.746667pt;}
.ya8{bottom:402.626667pt;}
.y3f{bottom:403.746667pt;}
.y136{bottom:404.546667pt;}
.yea{bottom:408.866667pt;}
.ybf{bottom:413.026667pt;}
.y69{bottom:416.066667pt;}
.y3e{bottom:418.946667pt;}
.ya7{bottom:419.426667pt;}
.y86{bottom:420.546667pt;}
.y135{bottom:421.346667pt;}
.y66{bottom:429.346667pt;}
.ybe{bottom:429.986667pt;}
.y3d{bottom:434.306667pt;}
.ya6{bottom:436.386667pt;}
.y85{bottom:437.506667pt;}
.y134{bottom:438.146667pt;}
.yba{bottom:446.946667pt;}
.y3c{bottom:449.666667pt;}
.ye9{bottom:450.626667pt;}
.ya5{bottom:453.186667pt;}
.y84{bottom:454.306667pt;}
.y133{bottom:455.106667pt;}
.yb7{bottom:464.706667pt;}
.y3b{bottom:465.026667pt;}
.ya4{bottom:469.986667pt;}
.y64{bottom:470.946667pt;}
.y83{bottom:471.106667pt;}
.y132{bottom:471.906667pt;}
.y3a{bottom:480.386667pt;}
.ya3{bottom:486.946667pt;}
.y82{bottom:488.066667pt;}
.y131{bottom:488.706667pt;}
.y39{bottom:495.746667pt;}
.ya2{bottom:503.746667pt;}
.y81{bottom:504.866667pt;}
.y130{bottom:505.666667pt;}
.y38{bottom:510.973333pt;}
.y118{bottom:517.693333pt;}
.ya1{bottom:520.573333pt;}
.y80{bottom:521.693333pt;}
.y12f{bottom:522.493333pt;}
.y37{bottom:526.333333pt;}
.yb6{bottom:528.253333pt;}
.y117{bottom:534.493333pt;}
.ya0{bottom:537.533333pt;}
.y7f{bottom:538.653333pt;}
.y12e{bottom:539.293333pt;}
.y36{bottom:541.693333pt;}
.ydc{bottom:543.133333pt;}
.yb5{bottom:545.053333pt;}
.y116{bottom:551.293333pt;}
.y9f{bottom:554.333333pt;}
.y12d{bottom:556.253333pt;}
.y35{bottom:557.053333pt;}
.ydb{bottom:560.093333pt;}
.yb4{bottom:561.853333pt;}
.y115{bottom:568.253333pt;}
.y7e{bottom:571.133333pt;}
.y34{bottom:572.413333pt;}
.y12c{bottom:573.053333pt;}
.yda{bottom:576.893333pt;}
.yb3{bottom:578.813333pt;}
.y114{bottom:585.053333pt;}
.y9e{bottom:588.093333pt;}
.y12b{bottom:589.853333pt;}
.yd9{bottom:593.693333pt;}
.yb2{bottom:595.613333pt;}
.y113{bottom:601.853333pt;}
.y33{bottom:604.093333pt;}
.y7d{bottom:604.253333pt;}
.y9d{bottom:604.893333pt;}
.y12a{bottom:606.493333pt;}
.yd8{bottom:610.653333pt;}
.y112{bottom:618.813333pt;}
.y7c{bottom:621.213333pt;}
.yd7{bottom:627.453333pt;}
.yb1{bottom:628.413333pt;}
.y111{bottom:635.613333pt;}
.y32{bottom:636.893333pt;}
.y9c{bottom:637.693333pt;}
.y63{bottom:638.013333pt;}
.y129{bottom:639.613333pt;}
.yd6{bottom:644.253333pt;}
.yb0{bottom:645.373333pt;}
.y110{bottom:652.413333pt;}
.y31{bottom:653.853333pt;}
.y9b{bottom:654.653333pt;}
.y62{bottom:654.813333pt;}
.y128{bottom:656.413333pt;}
.yd5{bottom:661.213333pt;}
.yaf{bottom:662.173333pt;}
.y10f{bottom:669.373333pt;}
.y9a{bottom:671.453333pt;}
.y61{bottom:671.613333pt;}
.y127{bottom:673.373333pt;}
.yad{bottom:675.453333pt;}
.y30{bottom:675.933333pt;}
.yd4{bottom:678.013333pt;}
.y10e{bottom:686.173333pt;}
.y2f{bottom:687.453333pt;}
.y99{bottom:688.253333pt;}
.y60{bottom:688.573333pt;}
.y126{bottom:689.853333pt;}
.yd3{bottom:694.813333pt;}
.y97{bottom:701.533333pt;}
.y10d{bottom:702.973333pt;}
.y2e{bottom:704.253333pt;}
.y5f{bottom:705.373333pt;}
.yd1{bottom:708.093333pt;}
.y2d{bottom:709.533333pt;}
.yac{bottom:717.213333pt;}
.y10c{bottom:719.933333pt;}
.ye8{bottom:721.053333pt;}
.y2c{bottom:721.213333pt;}
.y5e{bottom:722.173333pt;}
.y125{bottom:722.973333pt;}
.y96{bottom:726.493333pt;}
.y10b{bottom:736.733333pt;}
.ye7{bottom:737.853333pt;}
.y5d{bottom:739.133333pt;}
.y124{bottom:739.933333pt;}
.y2b{bottom:743.293333pt;}
.y10a{bottom:753.533333pt;}
.ye6{bottom:754.813333pt;}
.y5c{bottom:755.973333pt;}
.y123{bottom:756.773333pt;}
.y2a{bottom:762.213333pt;}
.y18{bottom:766.453333pt;}
.yd0{bottom:766.693333pt;}
.y108{bottom:766.853333pt;}
.ye5{bottom:771.653333pt;}
.y5b{bottom:772.773333pt;}
.y122{bottom:773.573333pt;}
.y17{bottom:777.120000pt;}
.y8{bottom:777.333333pt;}
.y16{bottom:787.786667pt;}
.ye4{bottom:788.453333pt;}
.y5a{bottom:789.733333pt;}
.y121{bottom:790.213333pt;}
.y15{bottom:798.453333pt;}
.ye3{bottom:801.733333pt;}
.y7{bottom:803.200000pt;}
.y59{bottom:806.533333pt;}
.y29{bottom:818.533333pt;}
.y14{bottom:819.120000pt;}
.y58{bottom:823.333333pt;}
.y107{bottom:825.573333pt;}
.y13{bottom:829.786667pt;}
.y6{bottom:839.066667pt;}
.y120{bottom:840.133333pt;}
.y57{bottom:840.293333pt;}
.y12{bottom:840.453333pt;}
.ye2{bottom:843.493333pt;}
.y28{bottom:844.613333pt;}
.y11{bottom:851.120000pt;}
.y56{bottom:857.093333pt;}
.y10{bottom:871.786667pt;}
.y5{bottom:873.213333pt;}
.y55{bottom:873.893333pt;}
.yf{bottom:882.453333pt;}
.y54{bottom:890.853333pt;}
.ye{bottom:893.120000pt;}
.y4{bottom:898.813333pt;}
.yd{bottom:903.786667pt;}
.y53{bottom:907.653333pt;}
.yc{bottom:914.453333pt;}
.y3{bottom:924.413333pt;}
.y52{bottom:924.453333pt;}
.yb{bottom:925.120000pt;}
.ya{bottom:935.786667pt;}
.y51{bottom:941.413333pt;}
.y50{bottom:958.213333pt;}
.y9{bottom:958.453333pt;}
.y2{bottom:961.320000pt;}
.y1f{bottom:1017.333333pt;}
.y26{bottom:1025.120000pt;}
.y1e{bottom:1036.000000pt;}
.y25{bottom:1042.080000pt;}
.y24{bottom:1058.880000pt;}
.y1{bottom:1059.173333pt;}
.y23{bottom:1075.680000pt;}
.y22{bottom:1092.640000pt;}
.y21{bottom:1109.440000pt;}
.h1e{height:16.960000pt;}
.h1d{height:17.120000pt;}
.h18{height:24.960000pt;}
.he{height:30.957500pt;}
.h9{height:33.328125pt;}
.h1b{height:34.080000pt;}
.h8{height:38.171466pt;}
.h5{height:38.937500pt;}
.h7{height:41.367733pt;}
.h14{height:41.600000pt;}
.h1a{height:41.760000pt;}
.h4{height:44.500000pt;}
.h16{height:48.530000pt;}
.ha{height:49.105000pt;}
.h2{height:50.062500pt;}
.h10{height:50.485000pt;}
.h11{height:52.077500pt;}
.hf{height:52.134375pt;}
.hd{height:52.947500pt;}
.h1c{height:53.535000pt;}
.h13{height:57.787500pt;}
.h20{height:58.592000pt;}
.h27{height:58.720000pt;}
.h15{height:59.340000pt;}
.h29{height:60.519362pt;}
.h3{height:64.000000pt;}
.h1{height:66.750000pt;}
.h25{height:75.520000pt;}
.hc{height:77.922500pt;}
.h22{height:128.000000pt;}
.h26{height:145.920000pt;}
.h12{height:163.546667pt;}
.h1f{height:204.800000pt;}
.h21{height:206.746667pt;}
.h28{height:241.946667pt;}
.h17{height:244.986667pt;}
.h19{height:254.266667pt;}
.h23{height:266.906667pt;}
.h24{height:350.266667pt;}
.hb{height:1102.720000pt;}
.h0{height:1122.666667pt;}
.h6{height:1122.720000pt;}
.w9{width:24.000000pt;}
.wb{width:32.032000pt;}
.wd{width:40.960000pt;}
.we{width:40.992000pt;}
.wf{width:41.120000pt;}
.w8{width:62.912000pt;}
.wa{width:67.520000pt;}
.wc{width:69.760000pt;}
.w7{width:102.560000pt;}
.w5{width:265.346667pt;}
.w6{width:530.693333pt;}
.w10{width:560.613333pt;}
.w3{width:607.353867pt;}
.w0{width:793.333333pt;}
.w4{width:793.759988pt;}
.w1{width:793.760000pt;}
.w2{width:794.000000pt;}
.x0{left:0.000000pt;}
.x8{left:1.188474pt;}
.x1e{left:3.680000pt;}
.x2e{left:4.640000pt;}
.x31{left:7.706667pt;}
.x2f{left:9.760000pt;}
.x29{left:12.160000pt;}
.x22{left:13.120000pt;}
.x26{left:14.720000pt;}
.x30{left:16.826667pt;}
.x15{left:18.234667pt;}
.x2d{left:20.640000pt;}
.x14{left:22.720000pt;}
.x33{left:24.160000pt;}
.x3d{left:25.434667pt;}
.x32{left:26.400000pt;}
.x1c{left:27.880000pt;}
.x20{left:29.120000pt;}
.x24{left:32.160000pt;}
.x13{left:35.994667pt;}
.x19{left:38.874667pt;}
.x43{left:40.794667pt;}
.x3b{left:48.794667pt;}
.x1{left:52.000000pt;}
.x7{left:67.602400pt;}
.x1a{left:87.194667pt;}
.x6{left:91.970133pt;}
.x9{left:93.333333pt;}
.xd{left:94.592000pt;}
.x10{left:113.472000pt;}
.x3f{left:116.672000pt;}
.x12{left:131.712000pt;}
.x44{left:147.394667pt;}
.x37{left:149.794667pt;}
.x41{left:160.194667pt;}
.x5{left:189.426667pt;}
.x16{left:190.594667pt;}
.x1b{left:197.146667pt;}
.x39{left:206.914667pt;}
.x3e{left:233.634667pt;}
.x35{left:245.661333pt;}
.x1d{left:260.066667pt;}
.x1f{left:284.066667pt;}
.x21{left:351.586667pt;}
.x36{left:377.341333pt;}
.x23{left:383.613333pt;}
.x45{left:394.066667pt;}
.xc{left:397.040000pt;}
.x17{left:424.261333pt;}
.x18{left:435.301333pt;}
.x42{left:449.381333pt;}
.x25{left:453.373333pt;}
.x3c{left:454.341333pt;}
.x27{left:494.333333pt;}
.x38{left:496.261333pt;}
.x3a{left:501.541333pt;}
.x34{left:504.261333pt;}
.xb{left:508.400000pt;}
.x28{left:535.333333pt;}
.x2{left:538.213333pt;}
.x40{left:553.248000pt;}
.x4{left:558.213333pt;}
.x3{left:563.920000pt;}
.x2a{left:576.453333pt;}
.x2b{left:617.413333pt;}
.xa{left:626.093333pt;}
.x2c{left:658.373333pt;}
.xe{left:688.320000pt;}
.xf{left:695.040000pt;}
.x11{left:699.520000pt;}
}


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