
/* 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_0e73759bc5bb.woff")format("woff");}.ff1{font-family:ff1;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:ff2;src:url("fonts/font_0001_cd787d983da4.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_26544362f25d.woff")format("woff");}.ff3{font-family:ff3;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url("fonts/font_0003_a2772164d17e.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_5f510e3df567.woff")format("woff");}.ff5{font-family:ff5;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;}
.m1{transform:matrix(0.250350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250350,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250352,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250352,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250352,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-82.080066px;}
.v0{vertical-align:0.000000px;}
.ls3{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.115501px;}
.ls0{letter-spacing:0.115620px;}
.ls6{letter-spacing:0.115633px;}
.ls5{letter-spacing:0.231222px;}
.ls4{letter-spacing:0.231266px;}
.ls1{letter-spacing:249.603800px;}
.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:-20.247282px;}
.ws3{word-spacing:-20.247238px;}
.ws0{word-spacing:-20.016016px;}
.ws1{word-spacing:0.000000px;}
._5{margin-left:-12.248098px;}
._2{margin-left:-2.207687px;}
._0{margin-left:-1.113245px;}
._1{width:1.314482px;}
._4{width:2.621065px;}
._3{width:27.783977px;}
._6{width:84.237187px;}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:59.760048px;}
.fs1{font-size:66.240053px;}
.fs2{font-size:72.000058px;}
.y0{bottom:0.000000px;}
.y2{bottom:56.160045px;}
.y1{bottom:57.960046px;}
.y34{bottom:105.300084px;}
.y91{bottom:108.720087px;}
.y33{bottom:126.000101px;}
.y52{bottom:126.180101px;}
.y90{bottom:129.420104px;}
.y32{bottom:146.700117px;}
.y92{bottom:146.880118px;}
.y8f{bottom:150.120120px;}
.y31{bottom:167.400134px;}
.y64{bottom:167.580134px;}
.y8e{bottom:171.000137px;}
.y30{bottom:188.100150px;}
.y51{bottom:188.280151px;}
.y8d{bottom:191.700153px;}
.y2f{bottom:208.800167px;}
.y50{bottom:208.980167px;}
.y8c{bottom:212.220170px;}
.y2e{bottom:229.500184px;}
.y5c{bottom:229.680184px;}
.y8b{bottom:232.920186px;}
.y5b{bottom:250.200200px;}
.y2d{bottom:250.380200px;}
.y8a{bottom:253.800203px;}
.y5a{bottom:270.900217px;}
.y2c{bottom:271.080217px;}
.y89{bottom:274.320219px;}
.y2b{bottom:291.600233px;}
.y4f{bottom:291.780233px;}
.y88{bottom:295.020236px;}
.y2a{bottom:312.300250px;}
.y59{bottom:312.480250px;}
.y87{bottom:315.720253px;}
.y63{bottom:333.000266px;}
.y29{bottom:333.180267px;}
.y86{bottom:336.600269px;}
.y28{bottom:353.700283px;}
.y4e{bottom:353.880283px;}
.y85{bottom:357.120286px;}
.y27{bottom:374.400300px;}
.y62{bottom:374.580300px;}
.y84{bottom:377.820302px;}
.y26{bottom:395.100316px;}
.y83{bottom:398.700319px;}
.y25{bottom:415.800333px;}
.y4d{bottom:415.980333px;}
.y82{bottom:419.220335px;}
.y24{bottom:436.320349px;}
.y4c{bottom:436.500349px;}
.y81{bottom:439.920352px;}
.y4b{bottom:457.020366px;}
.y23{bottom:457.200366px;}
.y80{bottom:460.800369px;}
.y22{bottom:477.720382px;}
.y61{bottom:477.900382px;}
.y7f{bottom:481.320385px;}
.y21{bottom:498.420399px;}
.y4a{bottom:498.600399px;}
.y7e{bottom:502.020402px;}
.y60{bottom:519.120415px;}
.y20{bottom:519.300415px;}
.y7d{bottom:522.720418px;}
.y49{bottom:539.820432px;}
.y1f{bottom:540.000432px;}
.y7c{bottom:543.420435px;}
.y1e{bottom:560.520448px;}
.y5f{bottom:560.700449px;}
.y7b{bottom:564.300451px;}
.y1d{bottom:581.220465px;}
.y48{bottom:581.400465px;}
.y7a{bottom:584.820468px;}
.y1c{bottom:601.920482px;}
.y47{bottom:602.100482px;}
.y79{bottom:605.520484px;}
.y46{bottom:622.620498px;}
.y1b{bottom:622.800498px;}
.y78{bottom:626.400501px;}
.y45{bottom:643.320515px;}
.y1a{bottom:643.500515px;}
.y77{bottom:646.920518px;}
.y19{bottom:664.020531px;}
.y44{bottom:664.200531px;}
.y76{bottom:667.620534px;}
.y18{bottom:684.720548px;}
.y43{bottom:684.900548px;}
.y75{bottom:688.500551px;}
.y17{bottom:705.420564px;}
.y58{bottom:705.600564px;}
.y74{bottom:709.200567px;}
.y16{bottom:726.120581px;}
.y42{bottom:726.300581px;}
.y73{bottom:729.720584px;}
.y15{bottom:746.820597px;}
.y41{bottom:747.000598px;}
.y72{bottom:750.420600px;}
.y14{bottom:767.520614px;}
.y40{bottom:767.700614px;}
.y71{bottom:771.300617px;}
.y3f{bottom:788.220631px;}
.y13{bottom:788.400631px;}
.y70{bottom:791.640633px;}
.y3e{bottom:808.920647px;}
.y12{bottom:809.100647px;}
.y6f{bottom:812.340650px;}
.y11{bottom:829.620664px;}
.y3d{bottom:829.800664px;}
.y6e{bottom:833.220667px;}
.y10{bottom:850.320680px;}
.y3c{bottom:850.500680px;}
.y6d{bottom:853.740683px;}
.yf{bottom:871.020697px;}
.y57{bottom:871.200697px;}
.y6c{bottom:874.440700px;}
.y3b{bottom:891.720713px;}
.ye{bottom:891.900714px;}
.y6b{bottom:895.320716px;}
.y3a{bottom:912.420730px;}
.y5e{bottom:912.600730px;}
.y6a{bottom:916.020733px;}
.yd{bottom:933.120746px;}
.y39{bottom:933.300747px;}
.y69{bottom:936.540749px;}
.yc{bottom:953.820763px;}
.y38{bottom:954.000763px;}
.y68{bottom:957.240766px;}
.yb{bottom:974.520780px;}
.y56{bottom:974.700780px;}
.y67{bottom:978.120782px;}
.y37{bottom:995.220796px;}
.ya{bottom:995.400796px;}
.y66{bottom:998.100798px;}
.y36{bottom:1015.920813px;}
.y9{bottom:1016.100813px;}
.y55{bottom:1036.620829px;}
.y8{bottom:1036.800829px;}
.y54{bottom:1057.320846px;}
.y7{bottom:1057.500846px;}
.y6{bottom:1078.020862px;}
.y35{bottom:1078.200863px;}
.y5{bottom:1098.720879px;}
.y5d{bottom:1098.900879px;}
.y4{bottom:1119.420896px;}
.y65{bottom:1119.600896px;}
.y3{bottom:1140.120912px;}
.y53{bottom:1140.300912px;}
.h1{height:58.651219px;}
.h4{height:62.327862px;}
.h2{height:69.086305px;}
.h3{height:75.093810px;}
.h0{height:1263.000000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x1{left:148.861469px;}
.xa{left:162.359936px;}
.x6{left:175.862519px;}
.x3{left:180.360545px;}
.x5{left:182.701654px;}
.x8{left:191.700216px;}
.x7{left:202.860819px;}
.x9{left:205.201387px;}
.x4{left:216.360923px;}
.x2{left:798.662139px;}
@media print{
.v1{vertical-align:-72.960058pt;}
.v0{vertical-align:0.000000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.102668pt;}
.ls0{letter-spacing:0.102773pt;}
.ls6{letter-spacing:0.102785pt;}
.ls5{letter-spacing:0.205530pt;}
.ls4{letter-spacing:0.205569pt;}
.ls1{letter-spacing:221.870044pt;}
.ws2{word-spacing:-17.997584pt;}
.ws3{word-spacing:-17.997545pt;}
.ws0{word-spacing:-17.792014pt;}
.ws1{word-spacing:0.000000pt;}
._5{margin-left:-10.887198pt;}
._2{margin-left:-1.962389pt;}
._0{margin-left:-0.989551pt;}
._1{width:1.168428pt;}
._4{width:2.329836pt;}
._3{width:24.696868pt;}
._6{width:74.877500pt;}
.fs0{font-size:53.120042pt;}
.fs1{font-size:58.880047pt;}
.fs2{font-size:64.000051pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:49.920040pt;}
.y1{bottom:51.520041pt;}
.y34{bottom:93.600075pt;}
.y91{bottom:96.640077pt;}
.y33{bottom:112.000090pt;}
.y52{bottom:112.160090pt;}
.y90{bottom:115.040092pt;}
.y32{bottom:130.400104pt;}
.y92{bottom:130.560104pt;}
.y8f{bottom:133.440107pt;}
.y31{bottom:148.800119pt;}
.y64{bottom:148.960119pt;}
.y8e{bottom:152.000122pt;}
.y30{bottom:167.200134pt;}
.y51{bottom:167.360134pt;}
.y8d{bottom:170.400136pt;}
.y2f{bottom:185.600148pt;}
.y50{bottom:185.760149pt;}
.y8c{bottom:188.640151pt;}
.y2e{bottom:204.000163pt;}
.y5c{bottom:204.160163pt;}
.y8b{bottom:207.040166pt;}
.y5b{bottom:222.400178pt;}
.y2d{bottom:222.560178pt;}
.y8a{bottom:225.600180pt;}
.y5a{bottom:240.800193pt;}
.y2c{bottom:240.960193pt;}
.y89{bottom:243.840195pt;}
.y2b{bottom:259.200207pt;}
.y4f{bottom:259.360207pt;}
.y88{bottom:262.240210pt;}
.y2a{bottom:277.600222pt;}
.y59{bottom:277.760222pt;}
.y87{bottom:280.640225pt;}
.y63{bottom:296.000237pt;}
.y29{bottom:296.160237pt;}
.y86{bottom:299.200239pt;}
.y28{bottom:314.400252pt;}
.y4e{bottom:314.560252pt;}
.y85{bottom:317.440254pt;}
.y27{bottom:332.800266pt;}
.y62{bottom:332.960266pt;}
.y84{bottom:335.840269pt;}
.y26{bottom:351.200281pt;}
.y83{bottom:354.400284pt;}
.y25{bottom:369.600296pt;}
.y4d{bottom:369.760296pt;}
.y82{bottom:372.640298pt;}
.y24{bottom:387.840310pt;}
.y4c{bottom:388.000310pt;}
.y81{bottom:391.040313pt;}
.y4b{bottom:406.240325pt;}
.y23{bottom:406.400325pt;}
.y80{bottom:409.600328pt;}
.y22{bottom:424.640340pt;}
.y61{bottom:424.800340pt;}
.y7f{bottom:427.840342pt;}
.y21{bottom:443.040354pt;}
.y4a{bottom:443.200355pt;}
.y7e{bottom:446.240357pt;}
.y60{bottom:461.440369pt;}
.y20{bottom:461.600369pt;}
.y7d{bottom:464.640372pt;}
.y49{bottom:479.840384pt;}
.y1f{bottom:480.000384pt;}
.y7c{bottom:483.040386pt;}
.y1e{bottom:498.240399pt;}
.y5f{bottom:498.400399pt;}
.y7b{bottom:501.600401pt;}
.y1d{bottom:516.640413pt;}
.y48{bottom:516.800413pt;}
.y7a{bottom:519.840416pt;}
.y1c{bottom:535.040428pt;}
.y47{bottom:535.200428pt;}
.y79{bottom:538.240431pt;}
.y46{bottom:553.440443pt;}
.y1b{bottom:553.600443pt;}
.y78{bottom:556.800445pt;}
.y45{bottom:571.840457pt;}
.y1a{bottom:572.000458pt;}
.y77{bottom:575.040460pt;}
.y19{bottom:590.240472pt;}
.y44{bottom:590.400472pt;}
.y76{bottom:593.440475pt;}
.y18{bottom:608.640487pt;}
.y43{bottom:608.800487pt;}
.y75{bottom:612.000490pt;}
.y17{bottom:627.040502pt;}
.y58{bottom:627.200502pt;}
.y74{bottom:630.400504pt;}
.y16{bottom:645.440516pt;}
.y42{bottom:645.600516pt;}
.y73{bottom:648.640519pt;}
.y15{bottom:663.840531pt;}
.y41{bottom:664.000531pt;}
.y72{bottom:667.040534pt;}
.y14{bottom:682.240546pt;}
.y40{bottom:682.400546pt;}
.y71{bottom:685.600548pt;}
.y3f{bottom:700.640561pt;}
.y13{bottom:700.800561pt;}
.y70{bottom:703.680563pt;}
.y3e{bottom:719.040575pt;}
.y12{bottom:719.200575pt;}
.y6f{bottom:722.080578pt;}
.y11{bottom:737.440590pt;}
.y3d{bottom:737.600590pt;}
.y6e{bottom:740.640593pt;}
.y10{bottom:755.840605pt;}
.y3c{bottom:756.000605pt;}
.y6d{bottom:758.880607pt;}
.yf{bottom:774.240619pt;}
.y57{bottom:774.400620pt;}
.y6c{bottom:777.280622pt;}
.y3b{bottom:792.640634pt;}
.ye{bottom:792.800634pt;}
.y6b{bottom:795.840637pt;}
.y3a{bottom:811.040649pt;}
.y5e{bottom:811.200649pt;}
.y6a{bottom:814.240651pt;}
.yd{bottom:829.440664pt;}
.y39{bottom:829.600664pt;}
.y69{bottom:832.480666pt;}
.yc{bottom:847.840678pt;}
.y38{bottom:848.000678pt;}
.y68{bottom:850.880681pt;}
.yb{bottom:866.240693pt;}
.y56{bottom:866.400693pt;}
.y67{bottom:869.440696pt;}
.y37{bottom:884.640708pt;}
.ya{bottom:884.800708pt;}
.y66{bottom:887.200710pt;}
.y36{bottom:903.040722pt;}
.y9{bottom:903.200723pt;}
.y55{bottom:921.440737pt;}
.y8{bottom:921.600737pt;}
.y54{bottom:939.840752pt;}
.y7{bottom:940.000752pt;}
.y6{bottom:958.240767pt;}
.y35{bottom:958.400767pt;}
.y5{bottom:976.640781pt;}
.y5d{bottom:976.800781pt;}
.y4{bottom:995.040796pt;}
.y65{bottom:995.200796pt;}
.y3{bottom:1013.440811pt;}
.y53{bottom:1013.600811pt;}
.h1{height:52.134417pt;}
.h4{height:55.402544pt;}
.h2{height:61.410049pt;}
.h3{height:66.750053pt;}
.h0{height:1122.666667pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x1{left:132.321306pt;}
.xa{left:144.319943pt;}
.x6{left:156.322239pt;}
.x3{left:160.320485pt;}
.x5{left:162.401470pt;}
.x8{left:170.400192pt;}
.x7{left:180.320728pt;}
.x9{left:182.401232pt;}
.x4{left:192.320821pt;}
.x2{left:709.921901pt;}
}


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