
/* 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_dcf8b5ddb4b0.woff")format("woff");}.ff1{font-family:ff1;line-height:1.163086;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_f39c666e6453.woff")format("woff");}.ff2{font-family:ff2;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;}
.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);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:23.452200px;}
.ls2{letter-spacing:29.998379px;}
.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;}
}
.ws13{word-spacing:-7.773917px;}
.wsa{word-spacing:-4.871332px;}
.ws39{word-spacing:-0.158059px;}
.ws0{word-spacing:0.000000px;}
.wse{word-spacing:3.562272px;}
.ws4{word-spacing:4.058400px;}
.ws34{word-spacing:4.860170px;}
.ws1a{word-spacing:5.214270px;}
.ws32{word-spacing:5.731285px;}
.ws3{word-spacing:5.801808px;}
.ws3b{word-spacing:5.866567px;}
.ws6{word-spacing:6.825000px;}
.ws31{word-spacing:6.840170px;}
.wsd{word-spacing:7.046335px;}
.ws19{word-spacing:7.333624px;}
.ws36{word-spacing:7.392888px;}
.ws3a{word-spacing:7.845967px;}
.ws30{word-spacing:7.912200px;}
.ws7{word-spacing:8.196245px;}
.ws5{word-spacing:8.893907px;}
.ws2f{word-spacing:9.021085px;}
.ws35{word-spacing:9.372288px;}
.ws10{word-spacing:9.842400px;}
.ws14{word-spacing:9.880421px;}
.ws3d{word-spacing:10.202797px;}
.ws2e{word-spacing:10.747560px;}
.ws21{word-spacing:11.177288px;}
.ws26{word-spacing:11.423548px;}
.ws8{word-spacing:12.761205px;}
.wsc{word-spacing:12.855996px;}
.ws2b{word-spacing:13.266181px;}
.wsb{word-spacing:13.479672px;}
.wsf{word-spacing:13.797534px;}
.ws12{word-spacing:14.249549px;}
.ws29{word-spacing:16.252464px;}
.ws2a{word-spacing:16.939885px;}
.ws11{word-spacing:17.164536px;}
.ws15{word-spacing:18.249600px;}
.ws16{word-spacing:18.864488px;}
.ws9{word-spacing:18.915144px;}
.ws3f{word-spacing:18.990600px;}
.ws28{word-spacing:19.387370px;}
.ws18{word-spacing:20.489874px;}
.ws1f{word-spacing:20.936712px;}
.ws3e{word-spacing:23.901738px;}
.ws40{word-spacing:23.913600px;}
.ws3c{word-spacing:23.950137px;}
.ws1d{word-spacing:24.106783px;}
.ws2{word-spacing:25.154871px;}
.ws1b{word-spacing:25.354671px;}
.ws24{word-spacing:25.693200px;}
.ws38{word-spacing:26.151264px;}
.ws23{word-spacing:26.475109px;}
.ws1e{word-spacing:27.584279px;}
.ws20{word-spacing:27.584879px;}
.ws1c{word-spacing:31.291671px;}
.ws22{word-spacing:34.035079px;}
.ws27{word-spacing:38.080113px;}
.ws33{word-spacing:38.949443px;}
.ws25{word-spacing:39.513000px;}
.ws37{word-spacing:69.484137px;}
.ws17{word-spacing:83.961535px;}
.ws2c{word-spacing:91.060200px;}
.ws2d{word-spacing:91.506097px;}
.ws1{word-spacing:102.571318px;}
._8{width:21.897636px;}
._31{width:25.021093px;}
._16{width:26.591459px;}
._4{width:29.675880px;}
._26{width:30.779443px;}
._14{width:33.112658px;}
._15{width:34.916400px;}
._6{width:36.440928px;}
._5{width:38.183063px;}
._25{width:39.258854px;}
._34{width:40.344787px;}
._7{width:41.458800px;}
._2b{width:42.631472px;}
._3a{width:44.600584px;}
._12{width:45.834000px;}
._27{width:47.593168px;}
._3{width:49.076280px;}
._e{width:50.731463px;}
._10{width:52.769871px;}
._13{width:54.045602px;}
._1c{width:55.151987px;}
._c{width:57.553079px;}
._33{width:59.384580px;}
._1b{width:60.799708px;}
._3e{width:65.176800px;}
._18{width:66.364999px;}
._1e{width:67.391337px;}
._d{width:68.492758px;}
._3b{width:71.863363px;}
._22{width:74.760170px;}
._1{width:76.287767px;}
._19{width:78.524104px;}
._35{width:79.954539px;}
._2{width:82.540063px;}
._17{width:84.035861px;}
._2a{width:85.061403px;}
._3c{width:87.909638px;}
._20{width:89.755515px;}
._1d{width:92.633567px;}
._11{width:94.682567px;}
._9{width:95.701767px;}
._24{width:97.219382px;}
._39{width:98.471516px;}
._1f{width:100.595485px;}
._28{width:101.935831px;}
._36{width:104.865796px;}
._32{width:107.800900px;}
._29{width:111.751597px;}
._1a{width:114.016003px;}
._2d{width:115.880852px;}
._0{width:116.889863px;}
._a{width:122.518543px;}
._38{width:126.405906px;}
._30{width:132.517627px;}
._f{width:134.348309px;}
._b{width:137.155288px;}
._37{width:138.772377px;}
._21{width:144.901519px;}
._2f{width:149.241897px;}
._2e{width:151.560484px;}
._23{width:166.117194px;}
._2c{width:183.358799px;}
._3d{width:976.969184px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:54.000000px;}
.fs7{font-size:60.000000px;}
.fsa{font-size:66.000000px;}
.fs5{font-size:72.000000px;}
.fs4{font-size:78.000000px;}
.fs2{font-size:84.000000px;}
.fs9{font-size:90.000000px;}
.fs1{font-size:96.000000px;}
.fs8{font-size:102.000000px;}
.fs0{font-size:108.000000px;}
.fs3{font-size:216.000000px;}
.y0{bottom:0.000000px;}
.y15{bottom:73.994865px;}
.y14{bottom:95.601030px;}
.y3c{bottom:109.325490px;}
.y3b{bottom:131.858235px;}
.y3a{bottom:152.295750px;}
.y23{bottom:170.716500px;}
.y8{bottom:181.594500px;}
.y22{bottom:201.285150px;}
.y21{bottom:231.853800px;}
.y20{bottom:262.422450px;}
.y39{bottom:275.670450px;}
.y1f{bottom:292.990950px;}
.y38{bottom:305.260200px;}
.y37{bottom:399.045000px;}
.y36{bottom:425.625750px;}
.y13{bottom:437.962800px;}
.y35{bottom:457.221750px;}
.y34{bottom:487.814550px;}
.y12{bottom:530.060250px;}
.y11{bottom:575.608350px;}
.y33{bottom:583.605450px;}
.y32{bottom:609.684600px;}
.y10{bottom:617.152200px;}
.y31{bottom:644.289750px;}
.yf{bottom:662.199900px;}
.ye{bottom:707.748000px;}
.y30{bottom:733.059300px;}
.y7{bottom:745.960650px;}
.yd{bottom:753.296100px;}
.y1e{bottom:758.452500px;}
.y2f{bottom:763.652250px;}
.y6{bottom:790.960650px;}
.y2e{bottom:797.254200px;}
.yc{bottom:798.844200px;}
.y2d{bottom:824.336400px;}
.y1d{bottom:829.111050px;}
.y5{bottom:850.464600px;}
.y2c{bottom:854.929350px;}
.y1c{bottom:864.189750px;}
.y4{bottom:877.464600px;}
.y2b{bottom:885.522300px;}
.y1b{bottom:896.261850px;}
.y3{bottom:904.464600px;}
.y2a{bottom:916.115100px;}
.y1a{bottom:930.839400px;}
.y2{bottom:931.464600px;}
.y19{bottom:966.419250px;}
.y29{bottom:976.799400px;}
.y18{bottom:1001.999100px;}
.y28{bottom:1007.893800px;}
.y1{bottom:1026.992100px;}
.y17{bottom:1037.578950px;}
.y27{bottom:1038.486750px;}
.yb{bottom:1054.030650px;}
.y26{bottom:1068.578100px;}
.ya{bottom:1078.389750px;}
.y25{bottom:1102.681650px;}
.y9{bottom:1114.511250px;}
.y24{bottom:1189.027200px;}
.y16{bottom:1196.602650px;}
.h7{height:50.039062px;}
.h9{height:55.042969px;}
.h6{height:65.050781px;}
.ha{height:70.054688px;}
.h4{height:77.888672px;}
.h8{height:85.066406px;}
.h3{height:89.015625px;}
.h2{height:100.142578px;}
.h5{height:180.140625px;}
.h0{height:1262.834700px;}
.h1{height:1263.000000px;}
.w0{width:892.913400px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:78.001620px;}
.x3{left:99.939120px;}
.x4{left:117.446925px;}
.x24{left:129.700755px;}
.x1f{left:131.185560px;}
.x1e{left:132.670350px;}
.x1b{left:137.522205px;}
.x1c{left:139.006275px;}
.x8{left:154.992885px;}
.x22{left:157.416900px;}
.x20{left:159.396630px;}
.x9{left:172.283100px;}
.x21{left:184.638045px;}
.x1{left:192.857085px;}
.xd{left:202.417500px;}
.xf{left:225.141750px;}
.x17{left:227.555985px;}
.x12{left:249.348150px;}
.x27{left:268.115715px;}
.x10{left:273.554400px;}
.x7{left:277.016040px;}
.x19{left:294.339285px;}
.xe{left:308.134950px;}
.x11{left:310.110900px;}
.x13{left:313.569000px;}
.x5{left:315.104190px;}
.x18{left:326.988885px;}
.x1a{left:328.472835px;}
.x6{left:347.609040px;}
.xa{left:364.945650px;}
.xc{left:368.403600px;}
.x16{left:384.373035px;}
.xb{left:416.322300px;}
.x23{left:426.659445px;}
.x15{left:430.379235px;}
.x1d{left:459.819795px;}
.x14{left:466.491735px;}
.x26{left:527.130495px;}
.x25{left:542.473395px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:20.846400pt;}
.ls2{letter-spacing:26.665226pt;}
.ws13{word-spacing:-6.910148pt;}
.wsa{word-spacing:-4.330073pt;}
.ws39{word-spacing:-0.140497pt;}
.ws0{word-spacing:0.000000pt;}
.wse{word-spacing:3.166464pt;}
.ws4{word-spacing:3.607467pt;}
.ws34{word-spacing:4.320151pt;}
.ws1a{word-spacing:4.634907pt;}
.ws32{word-spacing:5.094476pt;}
.ws3{word-spacing:5.157163pt;}
.ws3b{word-spacing:5.214726pt;}
.ws6{word-spacing:6.066667pt;}
.ws31{word-spacing:6.080151pt;}
.wsd{word-spacing:6.263409pt;}
.ws19{word-spacing:6.518777pt;}
.ws36{word-spacing:6.571456pt;}
.ws3a{word-spacing:6.974193pt;}
.ws30{word-spacing:7.033067pt;}
.ws7{word-spacing:7.285551pt;}
.ws5{word-spacing:7.905695pt;}
.ws2f{word-spacing:8.018742pt;}
.ws35{word-spacing:8.330923pt;}
.ws10{word-spacing:8.748800pt;}
.ws14{word-spacing:8.782596pt;}
.ws3d{word-spacing:9.069153pt;}
.ws2e{word-spacing:9.553387pt;}
.ws21{word-spacing:9.935367pt;}
.ws26{word-spacing:10.154265pt;}
.ws8{word-spacing:11.343293pt;}
.wsc{word-spacing:11.427552pt;}
.ws2b{word-spacing:11.792161pt;}
.wsb{word-spacing:11.981931pt;}
.wsf{word-spacing:12.264475pt;}
.ws12{word-spacing:12.666266pt;}
.ws29{word-spacing:14.446635pt;}
.ws2a{word-spacing:15.057676pt;}
.ws11{word-spacing:15.257365pt;}
.ws15{word-spacing:16.221867pt;}
.ws16{word-spacing:16.768434pt;}
.ws9{word-spacing:16.813461pt;}
.ws3f{word-spacing:16.880533pt;}
.ws28{word-spacing:17.233218pt;}
.ws18{word-spacing:18.213221pt;}
.ws1f{word-spacing:18.610411pt;}
.ws3e{word-spacing:21.245989pt;}
.ws40{word-spacing:21.256533pt;}
.ws3c{word-spacing:21.289011pt;}
.ws1d{word-spacing:21.428252pt;}
.ws2{word-spacing:22.359885pt;}
.ws1b{word-spacing:22.537485pt;}
.ws24{word-spacing:22.838400pt;}
.ws38{word-spacing:23.245568pt;}
.ws23{word-spacing:23.533430pt;}
.ws1e{word-spacing:24.519359pt;}
.ws20{word-spacing:24.519893pt;}
.ws1c{word-spacing:27.814819pt;}
.ws22{word-spacing:30.253403pt;}
.ws27{word-spacing:33.848989pt;}
.ws33{word-spacing:34.621727pt;}
.ws25{word-spacing:35.122667pt;}
.ws37{word-spacing:61.763677pt;}
.ws17{word-spacing:74.632476pt;}
.ws2c{word-spacing:80.942400pt;}
.ws2d{word-spacing:81.338753pt;}
.ws1{word-spacing:91.174505pt;}
._8{width:19.464565pt;}
._31{width:22.240972pt;}
._16{width:23.636852pt;}
._4{width:26.378560pt;}
._26{width:27.359505pt;}
._14{width:29.433474pt;}
._15{width:31.036800pt;}
._6{width:32.391936pt;}
._5{width:33.940501pt;}
._25{width:34.896759pt;}
._34{width:35.862033pt;}
._7{width:36.852267pt;}
._2b{width:37.894642pt;}
._3a{width:39.644964pt;}
._12{width:40.741333pt;}
._27{width:42.305038pt;}
._3{width:43.623360pt;}
._e{width:45.094634pt;}
._10{width:46.906552pt;}
._13{width:48.040535pt;}
._1c{width:49.023989pt;}
._c{width:51.158293pt;}
._33{width:52.786293pt;}
._1b{width:54.044185pt;}
._3e{width:57.934933pt;}
._18{width:58.991110pt;}
._1e{width:59.903411pt;}
._d{width:60.882452pt;}
._3b{width:63.878545pt;}
._22{width:66.453485pt;}
._1{width:67.811348pt;}
._19{width:69.799203pt;}
._35{width:71.070701pt;}
._2{width:73.368945pt;}
._17{width:74.698543pt;}
._2a{width:75.610136pt;}
._3c{width:78.141900pt;}
._20{width:79.782680pt;}
._1d{width:82.340948pt;}
._11{width:84.162282pt;}
._9{width:85.068237pt;}
._24{width:86.417228pt;}
._39{width:87.530236pt;}
._1f{width:89.418209pt;}
._28{width:90.609627pt;}
._36{width:93.214041pt;}
._32{width:95.823022pt;}
._29{width:99.334753pt;}
._1a{width:101.347558pt;}
._2d{width:103.005202pt;}
._0{width:103.902100pt;}
._a{width:108.905371pt;}
._38{width:112.360805pt;}
._30{width:117.793446pt;}
._f{width:119.420719pt;}
._b{width:121.915811pt;}
._37{width:123.353224pt;}
._21{width:128.801350pt;}
._2f{width:132.659464pt;}
._2e{width:134.720430pt;}
._23{width:147.659728pt;}
._2c{width:162.985599pt;}
._3d{width:868.417052pt;}
.fs6{font-size:48.000000pt;}
.fs7{font-size:53.333333pt;}
.fsa{font-size:58.666667pt;}
.fs5{font-size:64.000000pt;}
.fs4{font-size:69.333333pt;}
.fs2{font-size:74.666667pt;}
.fs9{font-size:80.000000pt;}
.fs1{font-size:85.333333pt;}
.fs8{font-size:90.666667pt;}
.fs0{font-size:96.000000pt;}
.fs3{font-size:192.000000pt;}
.y0{bottom:0.000000pt;}
.y15{bottom:65.773213pt;}
.y14{bottom:84.978693pt;}
.y3c{bottom:97.178213pt;}
.y3b{bottom:117.207320pt;}
.y3a{bottom:135.374000pt;}
.y23{bottom:151.748000pt;}
.y8{bottom:161.417333pt;}
.y22{bottom:178.920133pt;}
.y21{bottom:206.092267pt;}
.y20{bottom:233.264400pt;}
.y39{bottom:245.040400pt;}
.y1f{bottom:260.436400pt;}
.y38{bottom:271.342400pt;}
.y37{bottom:354.706667pt;}
.y36{bottom:378.334000pt;}
.y13{bottom:389.300267pt;}
.y35{bottom:406.419333pt;}
.y34{bottom:433.612933pt;}
.y12{bottom:471.164667pt;}
.y11{bottom:511.651867pt;}
.y33{bottom:518.760400pt;}
.y32{bottom:541.941867pt;}
.y10{bottom:548.579733pt;}
.y31{bottom:572.702000pt;}
.yf{bottom:588.622133pt;}
.ye{bottom:629.109333pt;}
.y30{bottom:651.608267pt;}
.y7{bottom:663.076133pt;}
.yd{bottom:669.596533pt;}
.y1e{bottom:674.180000pt;}
.y2f{bottom:678.802000pt;}
.y6{bottom:703.076133pt;}
.y2e{bottom:708.670400pt;}
.yc{bottom:710.083733pt;}
.y2d{bottom:732.743467pt;}
.y1d{bottom:736.987600pt;}
.y5{bottom:755.968533pt;}
.y2c{bottom:759.937200pt;}
.y1c{bottom:768.168667pt;}
.y4{bottom:779.968533pt;}
.y2b{bottom:787.130933pt;}
.y1b{bottom:796.677200pt;}
.y3{bottom:803.968533pt;}
.y2a{bottom:814.324533pt;}
.y1a{bottom:827.412800pt;}
.y2{bottom:827.968533pt;}
.y19{bottom:859.039333pt;}
.y29{bottom:868.266133pt;}
.y18{bottom:890.665867pt;}
.y28{bottom:895.905600pt;}
.y1{bottom:912.881867pt;}
.y17{bottom:922.292400pt;}
.y27{bottom:923.099333pt;}
.yb{bottom:936.916133pt;}
.y26{bottom:949.847200pt;}
.ya{bottom:958.568667pt;}
.y25{bottom:980.161467pt;}
.y9{bottom:990.676667pt;}
.y24{bottom:1056.913067pt;}
.y16{bottom:1063.646800pt;}
.h7{height:44.479167pt;}
.h9{height:48.927083pt;}
.h6{height:57.822917pt;}
.ha{height:62.270833pt;}
.h4{height:69.234375pt;}
.h8{height:75.614583pt;}
.h3{height:79.125000pt;}
.h2{height:89.015625pt;}
.h5{height:160.125000pt;}
.h0{height:1122.519733pt;}
.h1{height:1122.666667pt;}
.w0{width:793.700800pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:69.334773pt;}
.x3{left:88.834773pt;}
.x4{left:104.397267pt;}
.x24{left:115.289560pt;}
.x1f{left:116.609387pt;}
.x1e{left:117.929200pt;}
.x1b{left:122.241960pt;}
.x1c{left:123.561133pt;}
.x8{left:137.771453pt;}
.x22{left:139.926133pt;}
.x20{left:141.685893pt;}
.x9{left:153.140533pt;}
.x21{left:164.122707pt;}
.x1{left:171.428520pt;}
.xd{left:179.926667pt;}
.xf{left:200.126000pt;}
.x17{left:202.271987pt;}
.x12{left:221.642800pt;}
.x27{left:238.325080pt;}
.x10{left:243.159467pt;}
.x7{left:246.236480pt;}
.x19{left:261.634920pt;}
.xe{left:273.897733pt;}
.x11{left:275.654133pt;}
.x13{left:278.728000pt;}
.x5{left:280.092613pt;}
.x18{left:290.656787pt;}
.x1a{left:291.975853pt;}
.x6{left:308.985813pt;}
.xa{left:324.396133pt;}
.xc{left:327.469867pt;}
.x16{left:341.664920pt;}
.xb{left:370.064267pt;}
.x23{left:379.252840pt;}
.x15{left:382.559320pt;}
.x1d{left:408.728707pt;}
.x14{left:414.659320pt;}
.x26{left:468.560440pt;}
.x25{left:482.198573pt;}
}


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