
/* 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_a6279006700f.woff")format("woff");}.ff1{font-family:ff1;line-height:0.959000;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_b005032c9f70.woff")format("woff");}.ff2{font-family:ff2;line-height:0.962000;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_b29e2564df64.woff")format("woff");}.ff3{font-family:ff3;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:ff4;src:url("fonts/font_0003_a29cf759e8d9.woff")format("woff");}.ff4{font-family:ff4;line-height:0.675781;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_db4bb3a31115.woff")format("woff");}.ff5{font-family:ff5;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:ff6;src:url("fonts/font_0005_69f47648bfc0.woff")format("woff");}.ff6{font-family:ff6;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url("fonts/font_0006_29049f3ae75f.woff")format("woff");}.ff7{font-family:ff7;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:ff8;src:url("fonts/font_0007_4e058d419e87.woff")format("woff");}.ff8{font-family:ff8;line-height:0.666504;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_283b3ac5578d.woff")format("woff");}.ff9{font-family:ff9;line-height:0.708008;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.247000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{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);}
.v2{vertical-align:-20.879880px;}
.v4{vertical-align:-5.759946px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:5.759946px;}
.v3{vertical-align:20.879880px;}
.v1{vertical-align:27.359988px;}
.lsd{letter-spacing:-0.288000px;}
.ls13{letter-spacing:-0.216000px;}
.ls8{letter-spacing:-0.190080px;}
.ls1f{letter-spacing:-0.179280px;}
.lsa{letter-spacing:-0.144000px;}
.ls7{letter-spacing:-0.126720px;}
.ls6{letter-spacing:-0.072000px;}
.ls9{letter-spacing:-0.063360px;}
.ls0{letter-spacing:0.000000px;}
.ls11{letter-spacing:0.059760px;}
.ls27{letter-spacing:0.071958px;}
.ls2d{letter-spacing:0.071982px;}
.ls5{letter-spacing:0.072000px;}
.lsc{letter-spacing:0.120114px;}
.ls25{letter-spacing:0.136086px;}
.lse{letter-spacing:0.144000px;}
.ls24{letter-spacing:0.179280px;}
.ls26{letter-spacing:0.179988px;}
.ls2b{letter-spacing:0.192960px;}
.ls18{letter-spacing:0.216000px;}
.ls10{letter-spacing:0.239040px;}
.ls12{letter-spacing:0.259926px;}
.ls2a{letter-spacing:0.288000px;}
.ls15{letter-spacing:0.298800px;}
.ls1e{letter-spacing:0.337680px;}
.ls14{letter-spacing:0.358560px;}
.ls1{letter-spacing:0.359916px;}
.ls23{letter-spacing:0.360012px;}
.ls20{letter-spacing:0.360102px;}
.ls1a{letter-spacing:0.432000px;}
.ls22{letter-spacing:0.432054px;}
.ls31{letter-spacing:0.503916px;}
.ls1b{letter-spacing:0.504000px;}
.ls28{letter-spacing:0.504102px;}
.ls1c{letter-spacing:0.576000px;}
.ls1d{letter-spacing:0.719970px;}
.ls21{letter-spacing:0.719976px;}
.ls17{letter-spacing:0.720000px;}
.ls2e{letter-spacing:0.864000px;}
.ls4{letter-spacing:15.506040px;}
.ls2{letter-spacing:15.839970px;}
.ls3{letter-spacing:15.839976px;}
.ls29{letter-spacing:17.783952px;}
.ls16{letter-spacing:17.963940px;}
.ls19{letter-spacing:17.976012px;}
.lsb{letter-spacing:18.000000px;}
.ls2f{letter-spacing:18.135996px;}
.ls30{letter-spacing:18.359922px;}
.ls2c{letter-spacing:18.576054px;}
.lsf{letter-spacing:18.719970px;}
.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;}
}
.ws7{word-spacing:-28.131840px;}
.ws71{word-spacing:-20.088000px;}
.ws75{word-spacing:-19.944000px;}
.ws24{word-spacing:-18.720000px;}
.ws29{word-spacing:-18.216000px;}
.ws66{word-spacing:-18.144000px;}
.ws12{word-spacing:-18.072000px;}
.ws8{word-spacing:-18.000000px;}
.ws6f{word-spacing:-17.928000px;}
.ws4a{word-spacing:-17.856000px;}
.ws13{word-spacing:-17.784000px;}
.wsa{word-spacing:-17.712000px;}
.ws5{word-spacing:-15.840000px;}
.ws3{word-spacing:-15.786786px;}
.ws6{word-spacing:-15.649920px;}
.ws14{word-spacing:-15.298560px;}
.ws3d{word-spacing:-14.760720px;}
.ws3e{word-spacing:-12.397680px;}
.ws63{word-spacing:-2.879940px;}
.ws38{word-spacing:-2.268012px;}
.ws37{word-spacing:-2.088006px;}
.ws56{word-spacing:-2.015934px;}
.ws17{word-spacing:-1.103976px;}
.ws55{word-spacing:-1.079958px;}
.ws5e{word-spacing:-1.079916px;}
.ws34{word-spacing:-0.936006px;}
.ws1a{word-spacing:-0.936000px;}
.ws21{word-spacing:-0.887994px;}
.ws51{word-spacing:-0.864042px;}
.ws78{word-spacing:-0.864006px;}
.ws52{word-spacing:-0.840990px;}
.ws3c{word-spacing:-0.756012px;}
.ws43{word-spacing:-0.744072px;}
.ws2d{word-spacing:-0.744006px;}
.ws1f{word-spacing:-0.720108px;}
.ws18{word-spacing:-0.678258px;}
.wsf{word-spacing:-0.612048px;}
.ws35{word-spacing:-0.576096px;}
.ws11{word-spacing:-0.528000px;}
.ws58{word-spacing:-0.504006px;}
.ws4e{word-spacing:-0.504000px;}
.ws76{word-spacing:-0.503994px;}
.ws74{word-spacing:-0.503970px;}
.ws3b{word-spacing:-0.503874px;}
.ws4f{word-spacing:-0.456000px;}
.ws2a{word-spacing:-0.432006px;}
.ws5d{word-spacing:-0.432000px;}
.ws2e{word-spacing:-0.431988px;}
.ws6b{word-spacing:-0.431928px;}
.ws27{word-spacing:-0.431916px;}
.ws4c{word-spacing:-0.431910px;}
.ws1c{word-spacing:-0.395934px;}
.ws65{word-spacing:-0.384000px;}
.ws2f{word-spacing:-0.360048px;}
.ws53{word-spacing:-0.360042px;}
.ws9{word-spacing:-0.360000px;}
.ws59{word-spacing:-0.359994px;}
.ws26{word-spacing:-0.324000px;}
.ws45{word-spacing:-0.312024px;}
.ws57{word-spacing:-0.288084px;}
.ws31{word-spacing:-0.288006px;}
.ws3f{word-spacing:-0.287994px;}
.ws42{word-spacing:-0.287964px;}
.ws32{word-spacing:-0.287952px;}
.ws64{word-spacing:-0.252012px;}
.ws5c{word-spacing:-0.216090px;}
.ws16{word-spacing:-0.216048px;}
.ws72{word-spacing:-0.216042px;}
.ws1b{word-spacing:-0.216036px;}
.ws4b{word-spacing:-0.216006px;}
.wsc{word-spacing:-0.215952px;}
.ws41{word-spacing:-0.168060px;}
.wsd{word-spacing:-0.144000px;}
.ws6c{word-spacing:-0.143964px;}
.wsb{word-spacing:-0.108132px;}
.ws23{word-spacing:-0.108012px;}
.ws5b{word-spacing:-0.108006px;}
.ws46{word-spacing:-0.072012px;}
.ws19{word-spacing:-0.071964px;}
.ws47{word-spacing:-0.064110px;}
.ws0{word-spacing:0.000000px;}
.ws77{word-spacing:0.000054px;}
.ws60{word-spacing:0.035958px;}
.ws70{word-spacing:0.071958px;}
.ws20{word-spacing:0.071976px;}
.ws48{word-spacing:0.072042px;}
.ws22{word-spacing:0.144060px;}
.ws4{word-spacing:0.170361px;}
.ws2b{word-spacing:0.264024px;}
.ws25{word-spacing:0.287994px;}
.ws2c{word-spacing:0.336000px;}
.ws6e{word-spacing:0.360042px;}
.ws62{word-spacing:0.360090px;}
.ws33{word-spacing:0.395874px;}
.ws28{word-spacing:0.431952px;}
.wse{word-spacing:0.431994px;}
.ws39{word-spacing:0.432090px;}
.ws49{word-spacing:0.539946px;}
.ws40{word-spacing:0.576054px;}
.ws3a{word-spacing:0.647946px;}
.ws1d{word-spacing:0.648132px;}
.ws15{word-spacing:0.719970px;}
.ws5f{word-spacing:0.755862px;}
.ws5a{word-spacing:0.755982px;}
.ws50{word-spacing:0.791898px;}
.ws68{word-spacing:0.840006px;}
.ws69{word-spacing:0.863994px;}
.ws61{word-spacing:0.911952px;}
.ws36{word-spacing:0.983952px;}
.ws4d{word-spacing:0.984000px;}
.ws30{word-spacing:1.008000px;}
.ws6a{word-spacing:1.044006px;}
.ws44{word-spacing:1.080024px;}
.ws10{word-spacing:1.080060px;}
.ws67{word-spacing:1.584138px;}
.ws1e{word-spacing:1.727994px;}
.ws54{word-spacing:5.902518px;}
.ws2{word-spacing:15.729999px;}
.ws1{word-spacing:31.459998px;}
.ws73{word-spacing:84.215976px;}
.ws6d{word-spacing:120.215976px;}
._b{margin-left:-8.006967px;}
._8{margin-left:-5.962635px;}
._d{margin-left:-4.248000px;}
._2{margin-left:-3.180072px;}
._1{margin-left:-1.362888px;}
._0{width:1.362888px;}
._7{width:2.952924px;}
._5{width:9.483429px;}
._c{width:16.968012px;}
._6{width:18.682923px;}
._a{width:19.989024px;}
._9{width:30.778554px;}
._4{width:37.252272px;}
._3{width:45.145665px;}
._f{width:102.215976px;}
._e{width:138.215976px;}
.fc1{color:rgb(91,75,75);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:41.760000px;}
.fs4{font-size:48.240000px;}
.fs2{font-size:56.787000px;}
.fs7{font-size:59.760000px;}
.fs6{font-size:63.360000px;}
.fs3{font-size:72.000000px;}
.fs0{font-size:90.859200px;}
.fs1{font-size:113.574000px;}
.y0{bottom:0.000000px;}
.y14{bottom:0.495000px;}
.y13{bottom:3.960040px;}
.y11{bottom:111.475500px;}
.y95{bottom:113.429995px;}
.y46{bottom:115.409995px;}
.y74{bottom:122.790003px;}
.y2f{bottom:123.509997px;}
.y10{bottom:129.409500px;}
.y7c{bottom:134.850004px;}
.y3a{bottom:136.650000px;}
.ya4{bottom:143.670001px;}
.y53{bottom:143.850004px;}
.ya5{bottom:144.390006px;}
.yf{bottom:147.342000px;}
.y62{bottom:150.150000px;}
.y94{bottom:154.830004px;}
.y45{bottom:156.810004px;}
.y7b{bottom:160.770003px;}
.y73{bottom:164.190001px;}
.y2e{bottom:164.909995px;}
.ye{bottom:165.274500px;}
.y6d{bottom:174.989997px;}
.y39{bottom:178.049998px;}
.ya3{bottom:185.069998px;}
.y52{bottom:185.250003px;}
.y79{bottom:185.790003px;}
.y61{bottom:191.549998px;}
.y93{bottom:196.229991px;}
.y72{bottom:205.589998px;}
.y2d{bottom:206.309992px;}
.y6c{bottom:209.549998px;}
.y44{bottom:214.950007px;}
.y38{bottom:219.450007px;}
.ya2{bottom:226.469997px;}
.y51{bottom:226.649989px;}
.y78{bottom:227.189989px;}
.y60{bottom:232.950007px;}
.yd{bottom:237.006000px;}
.y92{bottom:237.630000px;}
.y6b{bottom:243.929995px;}
.y71{bottom:246.990007px;}
.y2c{bottom:247.710001px;}
.yc{bottom:254.938500px;}
.y37{bottom:260.849994px;}
.ya1{bottom:267.870006px;}
.y67{bottom:268.049998px;}
.y77{bottom:268.589998px;}
.yb{bottom:272.871000px;}
.y5f{bottom:274.394992px;}
.y6a{bottom:278.535006px;}
.y91{bottom:279.075007px;}
.y70{bottom:288.434992px;}
.y2b{bottom:289.155009px;}
.y36{bottom:302.295001px;}
.ya0{bottom:309.314989px;}
.y66{bottom:309.495006px;}
.y76{bottom:310.035006px;}
.y69{bottom:313.094997px;}
.y90{bottom:320.474994px;}
.ya{bottom:326.668500px;}
.y2a{bottom:330.554995px;}
.y5e{bottom:336.854991px;}
.y35{bottom:343.695010px;}
.y9{bottom:344.602500px;}
.y68{bottom:347.474994px;}
.y9f{bottom:350.714998px;}
.y65{bottom:350.894992px;}
.y75{bottom:351.434992px;}
.y8f{bottom:361.875003px;}
.y50{bottom:371.955004px;}
.y5d{bottom:378.255000px;}
.y8{bottom:380.467500px;}
.y34{bottom:385.094997px;}
.y9e{bottom:392.114985px;}
.y64{bottom:392.294978px;}
.y29{bottom:392.835001px;}
.y7{bottom:398.400000px;}
.y8e{bottom:403.274990px;}
.y4f{bottom:413.354991px;}
.y6{bottom:416.332500px;}
.y5c{bottom:419.655009px;}
.y9d{bottom:433.514994px;}
.y63{bottom:433.694986px;}
.y28{bottom:434.235010px;}
.y5{bottom:434.265000px;}
.y8d{bottom:444.674998px;}
.y4e{bottom:454.755000px;}
.y5b{bottom:461.055018px;}
.y33{bottom:463.575007px;}
.y9c{bottom:474.915003px;}
.y6f{bottom:475.094997px;}
.y27{bottom:475.635019px;}
.y4{bottom:479.097000px;}
.y8c{bottom:486.075007px;}
.y4d{bottom:496.155009px;}
.y32{bottom:498.135019px;}
.y5a{bottom:502.454982px;}
.y9b{bottom:516.315013px;}
.y6e{bottom:516.495006px;}
.y26{bottom:517.034983px;}
.y8b{bottom:527.475016px;}
.y31{bottom:532.694986px;}
.y4c{bottom:537.555018px;}
.y59{bottom:543.854991px;}
.y9a{bottom:557.745006px;}
.y43{bottom:557.924998px;}
.y25{bottom:558.465023px;}
.y30{bottom:567.104991px;}
.y8a{bottom:568.905009px;}
.y4b{bottom:578.985010px;}
.y99{bottom:599.145015px;}
.y42{bottom:599.325007px;}
.y24{bottom:599.864985px;}
.y58{bottom:602.024989px;}
.y89{bottom:610.305018px;}
.y4a{bottom:620.385019px;}
.y57{bottom:636.585001px;}
.y98{bottom:640.544977px;}
.y41{bottom:640.725016px;}
.y23{bottom:641.264994px;}
.y88{bottom:651.704982px;}
.y49{bottom:661.784983px;}
.y56{bottom:670.965023px;}
.y97{bottom:681.944986px;}
.y40{bottom:682.124980px;}
.y22{bottom:682.665003px;}
.y87{bottom:693.104991px;}
.y48{bottom:703.184992px;}
.y3f{bottom:723.524989px;}
.y96{bottom:723.704982px;}
.y21{bottom:724.065013px;}
.y86{bottom:734.505000px;}
.y47{bottom:744.585001px;}
.y20{bottom:765.465023px;}
.y19{bottom:772.665003px;}
.y85{bottom:775.904964px;}
.y3e{bottom:785.805018px;}
.y1f{bottom:806.864985px;}
.y18{bottom:814.244960px;}
.y84{bottom:817.305018px;}
.y3d{bottom:827.204982px;}
.y17{bottom:848.309992px;}
.y83{bottom:858.750025px;}
.y3{bottom:863.829000px;}
.y3c{bottom:868.649989px;}
.y1e{bottom:889.709956px;}
.y2{bottom:899.695500px;}
.y3b{bottom:910.050043px;}
.y82{bottom:920.849970px;}
.y1d{bottom:931.110011px;}
.y55{bottom:951.450007px;}
.y81{bottom:951.809992px;}
.y1{bottom:962.460000px;}
.y1c{bottom:972.509974px;}
.y80{bottom:982.950007px;}
.y54{bottom:992.849970px;}
.y1b{bottom:1013.910030px;}
.y7a{bottom:1034.250025px;}
.y7f{bottom:1045.050043px;}
.y16{bottom:1055.309992px;}
.y7e{bottom:1076.009974px;}
.y15{bottom:1096.709956px;}
.y7d{bottom:1107.149989px;}
.y1a{bottom:1138.140040px;}
.y12{bottom:1188.675000px;}
.h8{height:20.700000px;}
.hc{height:41.304495px;}
.h5{height:42.079167px;}
.h4{height:42.192741px;}
.hf{height:58.651172px;}
.hd{height:62.184375px;}
.h2{height:67.326667px;}
.h15{height:70.628906px;}
.h9{height:70.664062px;}
.he{height:72.562500px;}
.h14{height:74.681349px;}
.h10{height:74.681355px;}
.h11{height:74.681715px;}
.h13{height:74.704904px;}
.hb{height:74.704910px;}
.h12{height:74.861343px;}
.h3{height:84.385482px;}
.h0{height:1262.835000px;}
.ha{height:1262.880000px;}
.h1{height:1263.000000px;}
.h6{height:1263.375000px;}
.h7{height:1263.750000px;}
.w3{width:9.000000px;}
.w5{width:18.000000px;}
.w2{width:598.974000px;}
.w0{width:892.914000px;}
.w4{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:101.025000px;}
.x1{left:102.046500px;}
.x3{left:108.036000px;}
.x5{left:133.775997px;}
.x12{left:156.089997px;}
.xc{left:162.029996px;}
.x8{left:198.750000px;}
.x9{left:305.535003px;}
.x7{left:322.815010px;}
.x10{left:358.094994px;}
.xb{left:397.515015px;}
.x11{left:404.535003px;}
.xf{left:405.974991px;}
.x6{left:414.974991px;}
.xa{left:416.054993px;}
.xd{left:418.574982px;}
.xe{left:767.130000px;}
.x4{left:776.130000px;}
@media print{
.v2{vertical-align:-18.559893pt;}
.v4{vertical-align:-5.119952pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:5.119952pt;}
.v3{vertical-align:18.559893pt;}
.v1{vertical-align:24.319989pt;}
.lsd{letter-spacing:-0.256000pt;}
.ls13{letter-spacing:-0.192000pt;}
.ls8{letter-spacing:-0.168960pt;}
.ls1f{letter-spacing:-0.159360pt;}
.lsa{letter-spacing:-0.128000pt;}
.ls7{letter-spacing:-0.112640pt;}
.ls6{letter-spacing:-0.064000pt;}
.ls9{letter-spacing:-0.056320pt;}
.ls0{letter-spacing:0.000000pt;}
.ls11{letter-spacing:0.053120pt;}
.ls27{letter-spacing:0.063963pt;}
.ls2d{letter-spacing:0.063984pt;}
.ls5{letter-spacing:0.064000pt;}
.lsc{letter-spacing:0.106768pt;}
.ls25{letter-spacing:0.120965pt;}
.lse{letter-spacing:0.128000pt;}
.ls24{letter-spacing:0.159360pt;}
.ls26{letter-spacing:0.159989pt;}
.ls2b{letter-spacing:0.171520pt;}
.ls18{letter-spacing:0.192000pt;}
.ls10{letter-spacing:0.212480pt;}
.ls12{letter-spacing:0.231045pt;}
.ls2a{letter-spacing:0.256000pt;}
.ls15{letter-spacing:0.265600pt;}
.ls1e{letter-spacing:0.300160pt;}
.ls14{letter-spacing:0.318720pt;}
.ls1{letter-spacing:0.319925pt;}
.ls23{letter-spacing:0.320011pt;}
.ls20{letter-spacing:0.320091pt;}
.ls1a{letter-spacing:0.384000pt;}
.ls22{letter-spacing:0.384048pt;}
.ls31{letter-spacing:0.447925pt;}
.ls1b{letter-spacing:0.448000pt;}
.ls28{letter-spacing:0.448091pt;}
.ls1c{letter-spacing:0.512000pt;}
.ls1d{letter-spacing:0.639973pt;}
.ls21{letter-spacing:0.639979pt;}
.ls17{letter-spacing:0.640000pt;}
.ls2e{letter-spacing:0.768000pt;}
.ls4{letter-spacing:13.783147pt;}
.ls2{letter-spacing:14.079973pt;}
.ls3{letter-spacing:14.079979pt;}
.ls29{letter-spacing:15.807957pt;}
.ls16{letter-spacing:15.967947pt;}
.ls19{letter-spacing:15.978677pt;}
.lsb{letter-spacing:16.000000pt;}
.ls2f{letter-spacing:16.120885pt;}
.ls30{letter-spacing:16.319931pt;}
.ls2c{letter-spacing:16.512048pt;}
.lsf{letter-spacing:16.639973pt;}
.ws7{word-spacing:-25.006080pt;}
.ws71{word-spacing:-17.856000pt;}
.ws75{word-spacing:-17.728000pt;}
.ws24{word-spacing:-16.640000pt;}
.ws29{word-spacing:-16.192000pt;}
.ws66{word-spacing:-16.128000pt;}
.ws12{word-spacing:-16.064000pt;}
.ws8{word-spacing:-16.000000pt;}
.ws6f{word-spacing:-15.936000pt;}
.ws4a{word-spacing:-15.872000pt;}
.ws13{word-spacing:-15.808000pt;}
.wsa{word-spacing:-15.744000pt;}
.ws5{word-spacing:-14.080000pt;}
.ws3{word-spacing:-14.032699pt;}
.ws6{word-spacing:-13.911040pt;}
.ws14{word-spacing:-13.598720pt;}
.ws3d{word-spacing:-13.120640pt;}
.ws3e{word-spacing:-11.020160pt;}
.ws63{word-spacing:-2.559947pt;}
.ws38{word-spacing:-2.016011pt;}
.ws37{word-spacing:-1.856005pt;}
.ws56{word-spacing:-1.791941pt;}
.ws17{word-spacing:-0.981312pt;}
.ws55{word-spacing:-0.959963pt;}
.ws5e{word-spacing:-0.959925pt;}
.ws34{word-spacing:-0.832005pt;}
.ws1a{word-spacing:-0.832000pt;}
.ws21{word-spacing:-0.789328pt;}
.ws51{word-spacing:-0.768037pt;}
.ws78{word-spacing:-0.768005pt;}
.ws52{word-spacing:-0.747547pt;}
.ws3c{word-spacing:-0.672011pt;}
.ws43{word-spacing:-0.661397pt;}
.ws2d{word-spacing:-0.661339pt;}
.ws1f{word-spacing:-0.640096pt;}
.ws18{word-spacing:-0.602896pt;}
.wsf{word-spacing:-0.544043pt;}
.ws35{word-spacing:-0.512085pt;}
.ws11{word-spacing:-0.469333pt;}
.ws58{word-spacing:-0.448005pt;}
.ws4e{word-spacing:-0.448000pt;}
.ws76{word-spacing:-0.447995pt;}
.ws74{word-spacing:-0.447973pt;}
.ws3b{word-spacing:-0.447888pt;}
.ws4f{word-spacing:-0.405333pt;}
.ws2a{word-spacing:-0.384005pt;}
.ws5d{word-spacing:-0.384000pt;}
.ws2e{word-spacing:-0.383989pt;}
.ws6b{word-spacing:-0.383936pt;}
.ws27{word-spacing:-0.383925pt;}
.ws4c{word-spacing:-0.383920pt;}
.ws1c{word-spacing:-0.351941pt;}
.ws65{word-spacing:-0.341333pt;}
.ws2f{word-spacing:-0.320043pt;}
.ws53{word-spacing:-0.320037pt;}
.ws9{word-spacing:-0.320000pt;}
.ws59{word-spacing:-0.319995pt;}
.ws26{word-spacing:-0.288000pt;}
.ws45{word-spacing:-0.277355pt;}
.ws57{word-spacing:-0.256075pt;}
.ws31{word-spacing:-0.256005pt;}
.ws3f{word-spacing:-0.255995pt;}
.ws42{word-spacing:-0.255968pt;}
.ws32{word-spacing:-0.255957pt;}
.ws64{word-spacing:-0.224011pt;}
.ws5c{word-spacing:-0.192080pt;}
.ws16{word-spacing:-0.192043pt;}
.ws72{word-spacing:-0.192037pt;}
.ws1b{word-spacing:-0.192032pt;}
.ws4b{word-spacing:-0.192005pt;}
.wsc{word-spacing:-0.191957pt;}
.ws41{word-spacing:-0.149387pt;}
.wsd{word-spacing:-0.128000pt;}
.ws6c{word-spacing:-0.127968pt;}
.wsb{word-spacing:-0.096117pt;}
.ws23{word-spacing:-0.096011pt;}
.ws5b{word-spacing:-0.096005pt;}
.ws46{word-spacing:-0.064011pt;}
.ws19{word-spacing:-0.063968pt;}
.ws47{word-spacing:-0.056987pt;}
.ws0{word-spacing:0.000000pt;}
.ws77{word-spacing:0.000048pt;}
.ws60{word-spacing:0.031963pt;}
.ws70{word-spacing:0.063963pt;}
.ws20{word-spacing:0.063979pt;}
.ws48{word-spacing:0.064037pt;}
.ws22{word-spacing:0.128053pt;}
.ws4{word-spacing:0.151432pt;}
.ws2b{word-spacing:0.234688pt;}
.ws25{word-spacing:0.255995pt;}
.ws2c{word-spacing:0.298667pt;}
.ws6e{word-spacing:0.320037pt;}
.ws62{word-spacing:0.320080pt;}
.ws33{word-spacing:0.351888pt;}
.ws28{word-spacing:0.383957pt;}
.wse{word-spacing:0.383995pt;}
.ws39{word-spacing:0.384080pt;}
.ws49{word-spacing:0.479952pt;}
.ws40{word-spacing:0.512048pt;}
.ws3a{word-spacing:0.575952pt;}
.ws1d{word-spacing:0.576117pt;}
.ws15{word-spacing:0.639973pt;}
.ws5f{word-spacing:0.671877pt;}
.ws5a{word-spacing:0.671984pt;}
.ws50{word-spacing:0.703909pt;}
.ws68{word-spacing:0.746672pt;}
.ws69{word-spacing:0.767995pt;}
.ws61{word-spacing:0.810624pt;}
.ws36{word-spacing:0.874624pt;}
.ws4d{word-spacing:0.874667pt;}
.ws30{word-spacing:0.896000pt;}
.ws6a{word-spacing:0.928005pt;}
.ws44{word-spacing:0.960021pt;}
.ws10{word-spacing:0.960053pt;}
.ws67{word-spacing:1.408123pt;}
.ws1e{word-spacing:1.535995pt;}
.ws54{word-spacing:5.246683pt;}
.ws2{word-spacing:13.982221pt;}
.ws1{word-spacing:27.964443pt;}
.ws73{word-spacing:74.858645pt;}
.ws6d{word-spacing:106.858645pt;}
._b{margin-left:-7.117304pt;}
._8{margin-left:-5.300120pt;}
._d{margin-left:-3.776000pt;}
._2{margin-left:-2.826731pt;}
._1{margin-left:-1.211456pt;}
._0{width:1.211456pt;}
._7{width:2.624821pt;}
._5{width:8.429715pt;}
._c{width:15.082677pt;}
._6{width:16.607043pt;}
._a{width:17.768021pt;}
._9{width:27.358715pt;}
._4{width:33.113131pt;}
._3{width:40.129480pt;}
._f{width:90.858645pt;}
._e{width:122.858645pt;}
.fs5{font-size:37.120000pt;}
.fs4{font-size:42.880000pt;}
.fs2{font-size:50.477333pt;}
.fs7{font-size:53.120000pt;}
.fs6{font-size:56.320000pt;}
.fs3{font-size:64.000000pt;}
.fs0{font-size:80.763733pt;}
.fs1{font-size:100.954667pt;}
.y0{bottom:0.000000pt;}
.y14{bottom:0.440000pt;}
.y13{bottom:3.520036pt;}
.y11{bottom:99.089333pt;}
.y95{bottom:100.826663pt;}
.y46{bottom:102.586663pt;}
.y74{bottom:109.146669pt;}
.y2f{bottom:109.786664pt;}
.y10{bottom:115.030667pt;}
.y7c{bottom:119.866671pt;}
.y3a{bottom:121.466667pt;}
.ya4{bottom:127.706668pt;}
.y53{bottom:127.866671pt;}
.ya5{bottom:128.346672pt;}
.yf{bottom:130.970667pt;}
.y62{bottom:133.466667pt;}
.y94{bottom:137.626671pt;}
.y45{bottom:139.386671pt;}
.y7b{bottom:142.906669pt;}
.y73{bottom:145.946668pt;}
.y2e{bottom:146.586663pt;}
.ye{bottom:146.910667pt;}
.y6d{bottom:155.546664pt;}
.y39{bottom:158.266665pt;}
.ya3{bottom:164.506665pt;}
.y52{bottom:164.666669pt;}
.y79{bottom:165.146669pt;}
.y61{bottom:170.266665pt;}
.y93{bottom:174.426659pt;}
.y72{bottom:182.746665pt;}
.y2d{bottom:183.386660pt;}
.y6c{bottom:186.266665pt;}
.y44{bottom:191.066673pt;}
.y38{bottom:195.066673pt;}
.ya2{bottom:201.306664pt;}
.y51{bottom:201.466657pt;}
.y78{bottom:201.946657pt;}
.y60{bottom:207.066673pt;}
.yd{bottom:210.672000pt;}
.y92{bottom:211.226667pt;}
.y6b{bottom:216.826663pt;}
.y71{bottom:219.546673pt;}
.y2c{bottom:220.186668pt;}
.yc{bottom:226.612000pt;}
.y37{bottom:231.866661pt;}
.ya1{bottom:238.106672pt;}
.y67{bottom:238.266665pt;}
.y77{bottom:238.746665pt;}
.yb{bottom:242.552000pt;}
.y5f{bottom:243.906660pt;}
.y6a{bottom:247.586672pt;}
.y91{bottom:248.066673pt;}
.y70{bottom:256.386660pt;}
.y2b{bottom:257.026675pt;}
.y36{bottom:268.706668pt;}
.ya0{bottom:274.946657pt;}
.y66{bottom:275.106672pt;}
.y76{bottom:275.586672pt;}
.y69{bottom:278.306664pt;}
.y90{bottom:284.866661pt;}
.ya{bottom:290.372000pt;}
.y2a{bottom:293.826663pt;}
.y5e{bottom:299.426659pt;}
.y35{bottom:305.506676pt;}
.y9{bottom:306.313333pt;}
.y68{bottom:308.866661pt;}
.y9f{bottom:311.746665pt;}
.y65{bottom:311.906660pt;}
.y75{bottom:312.386660pt;}
.y8f{bottom:321.666669pt;}
.y50{bottom:330.626671pt;}
.y5d{bottom:336.226667pt;}
.y8{bottom:338.193333pt;}
.y34{bottom:342.306664pt;}
.y9e{bottom:348.546653pt;}
.y64{bottom:348.706647pt;}
.y29{bottom:349.186668pt;}
.y7{bottom:354.133333pt;}
.y8e{bottom:358.466657pt;}
.y4f{bottom:367.426659pt;}
.y6{bottom:370.073333pt;}
.y5c{bottom:373.026675pt;}
.y9d{bottom:385.346661pt;}
.y63{bottom:385.506655pt;}
.y28{bottom:385.986676pt;}
.y5{bottom:386.013333pt;}
.y8d{bottom:395.266665pt;}
.y4e{bottom:404.226667pt;}
.y5b{bottom:409.826683pt;}
.y33{bottom:412.066673pt;}
.y9c{bottom:422.146669pt;}
.y6f{bottom:422.306664pt;}
.y27{bottom:422.786684pt;}
.y4{bottom:425.864000pt;}
.y8c{bottom:432.066673pt;}
.y4d{bottom:441.026675pt;}
.y32{bottom:442.786684pt;}
.y5a{bottom:446.626651pt;}
.y9b{bottom:458.946679pt;}
.y6e{bottom:459.106672pt;}
.y26{bottom:459.586652pt;}
.y8b{bottom:468.866681pt;}
.y31{bottom:473.506655pt;}
.y4c{bottom:477.826683pt;}
.y59{bottom:483.426659pt;}
.y9a{bottom:495.773339pt;}
.y43{bottom:495.933332pt;}
.y25{bottom:496.413353pt;}
.y30{bottom:504.093325pt;}
.y8a{bottom:505.693341pt;}
.y4b{bottom:514.653343pt;}
.y99{bottom:532.573347pt;}
.y42{bottom:532.733340pt;}
.y24{bottom:533.213320pt;}
.y58{bottom:535.133324pt;}
.y89{bottom:542.493349pt;}
.y4a{bottom:551.453351pt;}
.y57{bottom:565.853335pt;}
.y98{bottom:569.373313pt;}
.y41{bottom:569.533348pt;}
.y23{bottom:570.013328pt;}
.y88{bottom:579.293317pt;}
.y49{bottom:588.253319pt;}
.y56{bottom:596.413353pt;}
.y97{bottom:606.173321pt;}
.y40{bottom:606.333316pt;}
.y22{bottom:606.813336pt;}
.y87{bottom:616.093325pt;}
.y48{bottom:625.053327pt;}
.y3f{bottom:643.133324pt;}
.y96{bottom:643.293317pt;}
.y21{bottom:643.613345pt;}
.y86{bottom:652.893333pt;}
.y47{bottom:661.853335pt;}
.y20{bottom:680.413353pt;}
.y19{bottom:686.813336pt;}
.y85{bottom:689.693301pt;}
.y3e{bottom:698.493349pt;}
.y1f{bottom:717.213320pt;}
.y18{bottom:723.773297pt;}
.y84{bottom:726.493349pt;}
.y3d{bottom:735.293317pt;}
.y17{bottom:754.053327pt;}
.y83{bottom:763.333356pt;}
.y3{bottom:767.848000pt;}
.y3c{bottom:772.133324pt;}
.y1e{bottom:790.853295pt;}
.y2{bottom:799.729333pt;}
.y3b{bottom:808.933372pt;}
.y82{bottom:818.533307pt;}
.y1d{bottom:827.653343pt;}
.y55{bottom:845.733340pt;}
.y81{bottom:846.053327pt;}
.y1{bottom:855.520000pt;}
.y1c{bottom:864.453311pt;}
.y80{bottom:873.733340pt;}
.y54{bottom:882.533307pt;}
.y1b{bottom:901.253360pt;}
.y7a{bottom:919.333356pt;}
.y7f{bottom:928.933372pt;}
.y16{bottom:938.053327pt;}
.y7e{bottom:956.453311pt;}
.y15{bottom:974.853295pt;}
.y7d{bottom:984.133324pt;}
.y1a{bottom:1011.680036pt;}
.y12{bottom:1056.600000pt;}
.h8{height:18.400000pt;}
.hc{height:36.715107pt;}
.h5{height:37.403704pt;}
.h4{height:37.504659pt;}
.hf{height:52.134375pt;}
.hd{height:55.275000pt;}
.h2{height:59.845926pt;}
.h15{height:62.781250pt;}
.h9{height:62.812500pt;}
.he{height:64.500000pt;}
.h14{height:66.383422pt;}
.h10{height:66.383427pt;}
.h11{height:66.383747pt;}
.h13{height:66.404359pt;}
.hb{height:66.404364pt;}
.h12{height:66.543416pt;}
.h3{height:75.009317pt;}
.h0{height:1122.520000pt;}
.ha{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.h6{height:1123.000000pt;}
.h7{height:1123.333333pt;}
.w3{width:8.000000pt;}
.w5{width:16.000000pt;}
.w2{width:532.421333pt;}
.w0{width:793.701333pt;}
.w4{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:89.800000pt;}
.x1{left:90.708000pt;}
.x3{left:96.032000pt;}
.x5{left:118.911997pt;}
.x12{left:138.746664pt;}
.xc{left:144.026663pt;}
.x8{left:176.666667pt;}
.x9{left:271.586669pt;}
.x7{left:286.946676pt;}
.x10{left:318.306661pt;}
.xb{left:353.346680pt;}
.x11{left:359.586669pt;}
.xf{left:360.866659pt;}
.x6{left:368.866659pt;}
.xa{left:369.826660pt;}
.xd{left:372.066651pt;}
.xe{left:681.893333pt;}
.x4{left:689.893333pt;}
}


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