
/* 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_7caaee23b6e8.woff")format("woff");}.ff1{font-family:ff1;line-height:0.969000;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_767c698203b9.woff")format("woff");}.ff2{font-family:ff2;line-height:0.947000;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_3c824261093d.woff")format("woff");}.ff3{font-family:ff3;line-height:0.947000;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_5c4dcd2877a1.woff")format("woff");}.ff4{font-family:ff4;line-height:0.969000;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_ae380975f927.woff")format("woff");}.ff5{font-family:ff5;line-height:0.969000;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_36377af5b9f1.woff")format("woff");}.ff6{font-family:ff6;line-height:0.969000;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_bc06df9a9b3a.woff")format("woff");}.ff7{font-family:ff7;line-height:0.969000;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_4c735af6c686.woff")format("woff");}.ff8{font-family:ff8;line-height:1.186000;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_8a03d8ea4fc9.woff")format("woff");}.ff9{font-family:ff9;line-height:0.850000;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_d7de714b3848.woff")format("woff");}.ffa{font-family:ffa;line-height:0.952000;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_4737a5d05cc2.woff")format("woff");}.ffb{font-family:ffb;line-height:1.070000;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_c77357cd889b.woff")format("woff");}.ffc{font-family:ffc;line-height:0.940000;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);}
.v0{vertical-align:0.000000px;}
.ls11{letter-spacing:-2.376000px;}
.lsc{letter-spacing:-0.855000px;}
.ls12{letter-spacing:-0.798000px;}
.ls13{letter-spacing:-0.780000px;}
.ls2{letter-spacing:-0.660000px;}
.ls7{letter-spacing:-0.228000px;}
.lse{letter-spacing:-0.057000px;}
.ls0{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.342000px;}
.lsa{letter-spacing:0.360000px;}
.ls8{letter-spacing:0.420000px;}
.lsd{letter-spacing:0.432000px;}
.ls9{letter-spacing:0.480000px;}
.ls6{letter-spacing:0.513000px;}
.ls5{letter-spacing:0.588000px;}
.ls3{letter-spacing:0.720000px;}
.lsb{letter-spacing:0.756000px;}
.ls1{letter-spacing:0.792000px;}
.lsf{letter-spacing:0.840000px;}
.ls4{letter-spacing:1.200000px;}
.ls14{letter-spacing:1.428000px;}
.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;}
}
.ws1b{word-spacing:-17.136000px;}
.ws2{word-spacing:-16.296000px;}
.ws1{word-spacing:-14.256000px;}
.ws10{word-spacing:-13.896000px;}
.ws19{word-spacing:-13.464000px;}
.ws16{word-spacing:-11.700000px;}
.ws1a{word-spacing:-11.172000px;}
.ws17{word-spacing:-11.088000px;}
.ws13{word-spacing:-4.845000px;}
.ws4{word-spacing:-1.200000px;}
.ws12{word-spacing:-0.912000px;}
.ws14{word-spacing:-0.627000px;}
.ws7{word-spacing:-0.513000px;}
.wsc{word-spacing:-0.480000px;}
.wsa{word-spacing:-0.456000px;}
.wsb{word-spacing:-0.420000px;}
.wse{word-spacing:-0.360000px;}
.ws6{word-spacing:-0.342000px;}
.ws9{word-spacing:-0.285000px;}
.ws11{word-spacing:-0.228000px;}
.ws0{word-spacing:0.000000px;}
.wsf{word-spacing:0.084000px;}
.ws8{word-spacing:0.252000px;}
.ws3{word-spacing:0.660000px;}
.ws5{word-spacing:0.741000px;}
.wsd{word-spacing:52.991376px;}
.ws18{word-spacing:54.538224px;}
.ws15{word-spacing:54.539376px;}
._8{margin-left:-543.576000px;}
._a{margin-left:-542.496000px;}
._c{margin-left:-536.250471px;}
._4{margin-left:-7.560000px;}
._9{margin-left:-5.398920px;}
._7{margin-left:-3.827724px;}
._3{margin-left:-2.350776px;}
._2{margin-left:-1.164000px;}
._0{width:1.029600px;}
._6{width:2.178471px;}
._1{width:3.206400px;}
._b{width:5.110782px;}
._5{width:63.834000px;}
.fc4{color:rgb(96,97,99);}
.fc3{color:rgb(169,172,174);}
.fc2{color:transparent;}
.fc1{color:rgb(96,96,96);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:6.000000px;}
.fs7{font-size:57.000000px;}
.fs8{font-size:60.000000px;}
.fs2{font-size:66.000000px;}
.fs5{font-size:72.000000px;}
.fs6{font-size:84.000000px;}
.fs0{font-size:96.000000px;}
.fs4{font-size:120.000000px;}
.fs1{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y10{bottom:1.828500px;}
.y5b{bottom:72.523500px;}
.y83{bottom:72.577500px;}
.y116{bottom:78.472500px;}
.y131{bottom:78.495000px;}
.y3d{bottom:78.498000px;}
.yd4{bottom:78.600000px;}
.yf{bottom:80.200500px;}
.yae{bottom:84.489000px;}
.y104{bottom:84.490500px;}
.yf8{bottom:84.565500px;}
.y5a{bottom:90.520500px;}
.y82{bottom:90.574500px;}
.yfc{bottom:96.472500px;}
.y130{bottom:96.492000px;}
.y3c{bottom:96.495000px;}
.yd3{bottom:96.597000px;}
.ye{bottom:100.825500px;}
.yad{bottom:102.487500px;}
.yf7{bottom:102.564000px;}
.y59{bottom:108.517500px;}
.y81{bottom:108.571500px;}
.y12f{bottom:114.489000px;}
.y3b{bottom:114.492000px;}
.yd2{bottom:114.594000px;}
.yac{bottom:120.484500px;}
.yf6{bottom:120.561000px;}
.yd{bottom:121.450500px;}
.y103{bottom:126.484500px;}
.y58{bottom:126.514500px;}
.y80{bottom:126.568500px;}
.y12e{bottom:132.487500px;}
.y3a{bottom:132.489000px;}
.yd1{bottom:132.591000px;}
.yab{bottom:138.481500px;}
.yf5{bottom:138.559500px;}
.yc{bottom:142.075500px;}
.y102{bottom:144.481500px;}
.y57{bottom:144.511500px;}
.y12d{bottom:150.484500px;}
.y39{bottom:150.487500px;}
.y7f{bottom:150.565500px;}
.yd0{bottom:150.589500px;}
.yaa{bottom:156.478500px;}
.yf4{bottom:156.556500px;}
.y101{bottom:162.478500px;}
.y56{bottom:162.510000px;}
.y12c{bottom:168.481500px;}
.y38{bottom:168.484500px;}
.y7e{bottom:168.562500px;}
.ya9{bottom:174.475500px;}
.yf3{bottom:174.553500px;}
.ycf{bottom:174.586500px;}
.y100{bottom:180.475500px;}
.y55{bottom:180.507000px;}
.y12b{bottom:186.478500px;}
.y37{bottom:186.481500px;}
.y7d{bottom:186.559500px;}
.ya8{bottom:192.472500px;}
.yce{bottom:192.583500px;}
.yff{bottom:198.472500px;}
.y54{bottom:198.504000px;}
.yf2{bottom:198.550500px;}
.y12a{bottom:204.475500px;}
.y36{bottom:204.478500px;}
.y7c{bottom:204.556500px;}
.yb{bottom:209.914650px;}
.ycd{bottom:210.580500px;}
.ya7{bottom:216.472500px;}
.y53{bottom:216.501000px;}
.yf1{bottom:216.547500px;}
.y129{bottom:222.472500px;}
.y35{bottom:222.475500px;}
.y7b{bottom:222.555000px;}
.yfe{bottom:228.472500px;}
.ycc{bottom:228.577500px;}
.ya{bottom:230.623500px;}
.y52{bottom:234.498000px;}
.yf0{bottom:234.544500px;}
.y34{bottom:240.472500px;}
.y7a{bottom:240.552000px;}
.y128{bottom:246.472500px;}
.ycb{bottom:246.574500px;}
.y9{bottom:251.131500px;}
.yef{bottom:252.541500px;}
.y51{bottom:258.495000px;}
.y79{bottom:258.549000px;}
.ya6{bottom:258.577500px;}
.y33{bottom:264.472500px;}
.yca{bottom:264.571500px;}
.yee{bottom:270.538500px;}
.y8{bottom:271.740000px;}
.y50{bottom:276.492000px;}
.ya5{bottom:276.574500px;}
.y78{bottom:282.546000px;}
.yc9{bottom:282.570000px;}
.yed{bottom:288.537000px;}
.y127{bottom:288.570000px;}
.y7{bottom:292.449000px;}
.y4f{bottom:294.489000px;}
.ya4{bottom:294.571500px;}
.y77{bottom:300.543000px;}
.yec{bottom:306.534000px;}
.y32{bottom:306.541500px;}
.yc8{bottom:306.567000px;}
.y4e{bottom:312.487500px;}
.ya3{bottom:312.568500px;}
.y6{bottom:313.057500px;}
.y76{bottom:318.540000px;}
.yfa{bottom:324.472500px;}
.yeb{bottom:324.531000px;}
.y31{bottom:324.540000px;}
.y126{bottom:324.564000px;}
.yc7{bottom:324.565500px;}
.y4d{bottom:330.484500px;}
.ya2{bottom:330.565500px;}
.y5{bottom:333.453000px;}
.y75{bottom:336.537000px;}
.yf9{bottom:342.472500px;}
.yea{bottom:342.528000px;}
.y30{bottom:342.537000px;}
.y125{bottom:342.561000px;}
.yc6{bottom:342.562500px;}
.y4c{bottom:348.481500px;}
.ya1{bottom:348.564000px;}
.y74{bottom:354.535500px;}
.ye9{bottom:360.525000px;}
.y2f{bottom:360.534000px;}
.y124{bottom:360.558000px;}
.yc5{bottom:360.559500px;}
.y4b{bottom:366.478500px;}
.ya0{bottom:366.561000px;}
.y73{bottom:372.532500px;}
.y11{bottom:374.313000px;}
.y142{bottom:378.510000px;}
.ye8{bottom:378.522000px;}
.y2e{bottom:378.531000px;}
.yc4{bottom:378.556500px;}
.y4a{bottom:384.475500px;}
.y123{bottom:384.555000px;}
.y9f{bottom:384.558000px;}
.y72{bottom:390.529500px;}
.ye7{bottom:396.520500px;}
.y2d{bottom:396.528000px;}
.yc3{bottom:396.553500px;}
.y49{bottom:402.472500px;}
.y141{bottom:402.507000px;}
.y122{bottom:402.553500px;}
.y9e{bottom:402.555000px;}
.y71{bottom:408.526500px;}
.ye6{bottom:414.517500px;}
.y2c{bottom:414.526500px;}
.yc2{bottom:414.550500px;}
.y140{bottom:420.504000px;}
.y115{bottom:420.550500px;}
.y9d{bottom:420.552000px;}
.y70{bottom:426.523500px;}
.y48{bottom:432.472500px;}
.ye5{bottom:432.514500px;}
.y2b{bottom:432.523500px;}
.yc1{bottom:432.549000px;}
.y114{bottom:438.547500px;}
.y9c{bottom:438.549000px;}
.y13f{bottom:444.501000px;}
.y6f{bottom:444.520500px;}
.y47{bottom:450.472500px;}
.ye4{bottom:450.511500px;}
.y2a{bottom:450.520500px;}
.y113{bottom:456.544500px;}
.yc0{bottom:456.546000px;}
.y9b{bottom:456.547500px;}
.y13e{bottom:462.498000px;}
.y6e{bottom:462.519000px;}
.yfb{bottom:468.472500px;}
.y29{bottom:468.517500px;}
.ye3{bottom:474.508500px;}
.y112{bottom:474.541500px;}
.y9a{bottom:474.544500px;}
.y13d{bottom:486.495000px;}
.y28{bottom:486.514500px;}
.y6d{bottom:486.516000px;}
.ye2{bottom:492.505500px;}
.y111{bottom:492.538500px;}
.y99{bottom:492.541500px;}
.y13c{bottom:504.492000px;}
.y6c{bottom:504.514500px;}
.ye1{bottom:510.502500px;}
.y27{bottom:510.511500px;}
.y110{bottom:510.535500px;}
.y121{bottom:510.537000px;}
.y98{bottom:510.538500px;}
.y13b{bottom:522.489000px;}
.ye0{bottom:528.499500px;}
.y26{bottom:528.508500px;}
.y6b{bottom:528.511500px;}
.y10f{bottom:528.534000px;}
.y97{bottom:528.535500px;}
.y120{bottom:534.534000px;}
.y13a{bottom:540.487500px;}
.ydf{bottom:546.498000px;}
.y25{bottom:546.505500px;}
.y6a{bottom:546.510000px;}
.y10e{bottom:546.531000px;}
.y96{bottom:546.532500px;}
.ybf{bottom:552.532500px;}
.y139{bottom:564.484500px;}
.yde{bottom:564.495000px;}
.y24{bottom:564.504000px;}
.y69{bottom:564.507000px;}
.y10d{bottom:564.528000px;}
.y95{bottom:564.529500px;}
.ybe{bottom:570.529500px;}
.ydd{bottom:582.492000px;}
.y23{bottom:582.501000px;}
.y68{bottom:582.504000px;}
.y10c{bottom:582.525000px;}
.y94{bottom:582.526500px;}
.y138{bottom:588.481500px;}
.ybd{bottom:588.526500px;}
.ydc{bottom:600.489000px;}
.y22{bottom:600.498000px;}
.y10b{bottom:600.522000px;}
.y93{bottom:600.523500px;}
.y67{bottom:606.501000px;}
.y11f{bottom:606.523500px;}
.ybc{bottom:606.525000px;}
.yfd{bottom:612.472500px;}
.y137{bottom:612.478500px;}
.ydb{bottom:618.486000px;}
.y21{bottom:618.495000px;}
.y92{bottom:618.520500px;}
.y66{bottom:624.498000px;}
.y11e{bottom:624.520500px;}
.ybb{bottom:624.522000px;}
.y136{bottom:636.475500px;}
.yda{bottom:636.484500px;}
.y91{bottom:636.517500px;}
.y20{bottom:642.492000px;}
.y65{bottom:642.495000px;}
.y11d{bottom:642.517500px;}
.yba{bottom:642.519000px;}
.y135{bottom:654.472500px;}
.yd9{bottom:654.481500px;}
.y10a{bottom:654.514500px;}
.y90{bottom:654.516000px;}
.y1f{bottom:660.489000px;}
.yb9{bottom:660.516000px;}
.y64{bottom:666.492000px;}
.yd8{bottom:672.478500px;}
.y109{bottom:672.511500px;}
.y8f{bottom:672.513000px;}
.y134{bottom:678.472500px;}
.y1e{bottom:678.486000px;}
.y11c{bottom:678.513000px;}
.y63{bottom:684.489000px;}
.yb8{bottom:684.513000px;}
.yd7{bottom:690.475500px;}
.y108{bottom:690.508500px;}
.y8e{bottom:690.510000px;}
.y1d{bottom:696.483000px;}
.y11b{bottom:696.510000px;}
.y62{bottom:702.486000px;}
.yb7{bottom:702.510000px;}
.yd6{bottom:708.472500px;}
.y107{bottom:708.505500px;}
.y8d{bottom:708.507000px;}
.y1c{bottom:714.481500px;}
.y11a{bottom:714.507000px;}
.y61{bottom:720.484500px;}
.yb6{bottom:720.507000px;}
.y8c{bottom:726.504000px;}
.yd5{bottom:732.472500px;}
.y1b{bottom:732.478500px;}
.y119{bottom:732.504000px;}
.y60{bottom:738.481500px;}
.y133{bottom:738.504000px;}
.yb5{bottom:738.505500px;}
.y8b{bottom:744.501000px;}
.y1a{bottom:750.475500px;}
.y106{bottom:750.501000px;}
.y4{bottom:751.939500px;}
.y5f{bottom:756.478500px;}
.y132{bottom:756.501000px;}
.yb4{bottom:756.502500px;}
.y8a{bottom:762.499500px;}
.y19{bottom:768.472500px;}
.y105{bottom:768.499500px;}
.y5e{bottom:774.475500px;}
.y118{bottom:774.498000px;}
.yb3{bottom:774.499500px;}
.y3{bottom:774.924000px;}
.y89{bottom:780.496500px;}
.y46{bottom:786.496500px;}
.y18{bottom:792.472500px;}
.y117{bottom:792.495000px;}
.yb2{bottom:792.496500px;}
.y88{bottom:798.493500px;}
.y45{bottom:804.493500px;}
.yb1{bottom:810.493500px;}
.y5d{bottom:816.469500px;}
.y87{bottom:816.490500px;}
.y44{bottom:822.490500px;}
.yb0{bottom:828.490500px;}
.y5c{bottom:840.472500px;}
.y43{bottom:840.487500px;}
.yaf{bottom:846.487500px;}
.y86{bottom:858.484500px;}
.y17{bottom:864.472500px;}
.y42{bottom:864.484500px;}
.y85{bottom:876.481500px;}
.y41{bottom:882.481500px;}
.y13{bottom:886.600500px;}
.y16{bottom:888.472500px;}
.y84{bottom:894.478500px;}
.y40{bottom:900.478500px;}
.y3f{bottom:918.475500px;}
.y12{bottom:922.600500px;}
.y3e{bottom:936.472500px;}
.y15{bottom:936.504000px;}
.y2{bottom:966.889500px;}
.y14{bottom:972.472500px;}
.y1{bottom:1008.166500px;}
.h7{height:5.796000px;}
.hf{height:39.900000px;}
.h10{height:40.620000px;}
.hc{height:46.200000px;}
.h4{height:46.398000px;}
.h5{height:46.992000px;}
.h6{height:46.992600px;}
.he{height:47.025000px;}
.hb{height:48.744000px;}
.h11{height:56.868000px;}
.h2{height:68.352000px;}
.hd{height:81.240000px;}
.h8{height:85.440000px;}
.h3{height:101.232000px;}
.h9{height:1020.472500px;}
.ha{height:1020.750000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:722.835000px;}
.w3{width:723.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:4.252500px;}
.x4{left:22.179000px;}
.x7{left:59.553000px;}
.x6{left:61.654500px;}
.x1{left:68.032500px;}
.x8{left:78.667950px;}
.xc{left:95.668950px;}
.xd{left:165.852000px;}
.xa{left:167.952000px;}
.xb{left:184.966500px;}
.x5{left:424.924500px;}
.x9{left:678.189000px;}
.x3{left:745.473000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls11{letter-spacing:-2.112000pt;}
.lsc{letter-spacing:-0.760000pt;}
.ls12{letter-spacing:-0.709333pt;}
.ls13{letter-spacing:-0.693333pt;}
.ls2{letter-spacing:-0.586667pt;}
.ls7{letter-spacing:-0.202667pt;}
.lse{letter-spacing:-0.050667pt;}
.ls0{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.304000pt;}
.lsa{letter-spacing:0.320000pt;}
.ls8{letter-spacing:0.373333pt;}
.lsd{letter-spacing:0.384000pt;}
.ls9{letter-spacing:0.426667pt;}
.ls6{letter-spacing:0.456000pt;}
.ls5{letter-spacing:0.522667pt;}
.ls3{letter-spacing:0.640000pt;}
.lsb{letter-spacing:0.672000pt;}
.ls1{letter-spacing:0.704000pt;}
.lsf{letter-spacing:0.746667pt;}
.ls4{letter-spacing:1.066667pt;}
.ls14{letter-spacing:1.269333pt;}
.ws1b{word-spacing:-15.232000pt;}
.ws2{word-spacing:-14.485333pt;}
.ws1{word-spacing:-12.672000pt;}
.ws10{word-spacing:-12.352000pt;}
.ws19{word-spacing:-11.968000pt;}
.ws16{word-spacing:-10.400000pt;}
.ws1a{word-spacing:-9.930667pt;}
.ws17{word-spacing:-9.856000pt;}
.ws13{word-spacing:-4.306667pt;}
.ws4{word-spacing:-1.066667pt;}
.ws12{word-spacing:-0.810667pt;}
.ws14{word-spacing:-0.557333pt;}
.ws7{word-spacing:-0.456000pt;}
.wsc{word-spacing:-0.426667pt;}
.wsa{word-spacing:-0.405333pt;}
.wsb{word-spacing:-0.373333pt;}
.wse{word-spacing:-0.320000pt;}
.ws6{word-spacing:-0.304000pt;}
.ws9{word-spacing:-0.253333pt;}
.ws11{word-spacing:-0.202667pt;}
.ws0{word-spacing:0.000000pt;}
.wsf{word-spacing:0.074667pt;}
.ws8{word-spacing:0.224000pt;}
.ws3{word-spacing:0.586667pt;}
.ws5{word-spacing:0.658667pt;}
.wsd{word-spacing:47.103445pt;}
.ws18{word-spacing:48.478421pt;}
.ws15{word-spacing:48.479445pt;}
._8{margin-left:-483.178667pt;}
._a{margin-left:-482.218667pt;}
._c{margin-left:-476.667085pt;}
._4{margin-left:-6.720000pt;}
._9{margin-left:-4.799040pt;}
._7{margin-left:-3.402421pt;}
._3{margin-left:-2.089579pt;}
._2{margin-left:-1.034667pt;}
._0{width:0.915200pt;}
._6{width:1.936419pt;}
._1{width:2.850133pt;}
._b{width:4.542917pt;}
._5{width:56.741333pt;}
.fs3{font-size:5.333333pt;}
.fs7{font-size:50.666667pt;}
.fs8{font-size:53.333333pt;}
.fs2{font-size:58.666667pt;}
.fs5{font-size:64.000000pt;}
.fs6{font-size:74.666667pt;}
.fs0{font-size:85.333333pt;}
.fs4{font-size:106.666667pt;}
.fs1{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y10{bottom:1.625333pt;}
.y5b{bottom:64.465333pt;}
.y83{bottom:64.513333pt;}
.y116{bottom:69.753333pt;}
.y131{bottom:69.773333pt;}
.y3d{bottom:69.776000pt;}
.yd4{bottom:69.866667pt;}
.yf{bottom:71.289333pt;}
.yae{bottom:75.101333pt;}
.y104{bottom:75.102667pt;}
.yf8{bottom:75.169333pt;}
.y5a{bottom:80.462667pt;}
.y82{bottom:80.510667pt;}
.yfc{bottom:85.753333pt;}
.y130{bottom:85.770667pt;}
.y3c{bottom:85.773333pt;}
.yd3{bottom:85.864000pt;}
.ye{bottom:89.622667pt;}
.yad{bottom:91.100000pt;}
.yf7{bottom:91.168000pt;}
.y59{bottom:96.460000pt;}
.y81{bottom:96.508000pt;}
.y12f{bottom:101.768000pt;}
.y3b{bottom:101.770667pt;}
.yd2{bottom:101.861333pt;}
.yac{bottom:107.097333pt;}
.yf6{bottom:107.165333pt;}
.yd{bottom:107.956000pt;}
.y103{bottom:112.430667pt;}
.y58{bottom:112.457333pt;}
.y80{bottom:112.505333pt;}
.y12e{bottom:117.766667pt;}
.y3a{bottom:117.768000pt;}
.yd1{bottom:117.858667pt;}
.yab{bottom:123.094667pt;}
.yf5{bottom:123.164000pt;}
.yc{bottom:126.289333pt;}
.y102{bottom:128.428000pt;}
.y57{bottom:128.454667pt;}
.y12d{bottom:133.764000pt;}
.y39{bottom:133.766667pt;}
.y7f{bottom:133.836000pt;}
.yd0{bottom:133.857333pt;}
.yaa{bottom:139.092000pt;}
.yf4{bottom:139.161333pt;}
.y101{bottom:144.425333pt;}
.y56{bottom:144.453333pt;}
.y12c{bottom:149.761333pt;}
.y38{bottom:149.764000pt;}
.y7e{bottom:149.833333pt;}
.ya9{bottom:155.089333pt;}
.yf3{bottom:155.158667pt;}
.ycf{bottom:155.188000pt;}
.y100{bottom:160.422667pt;}
.y55{bottom:160.450667pt;}
.y12b{bottom:165.758667pt;}
.y37{bottom:165.761333pt;}
.y7d{bottom:165.830667pt;}
.ya8{bottom:171.086667pt;}
.yce{bottom:171.185333pt;}
.yff{bottom:176.420000pt;}
.y54{bottom:176.448000pt;}
.yf2{bottom:176.489333pt;}
.y12a{bottom:181.756000pt;}
.y36{bottom:181.758667pt;}
.y7c{bottom:181.828000pt;}
.yb{bottom:186.590800pt;}
.ycd{bottom:187.182667pt;}
.ya7{bottom:192.420000pt;}
.y53{bottom:192.445333pt;}
.yf1{bottom:192.486667pt;}
.y129{bottom:197.753333pt;}
.y35{bottom:197.756000pt;}
.y7b{bottom:197.826667pt;}
.yfe{bottom:203.086667pt;}
.ycc{bottom:203.180000pt;}
.ya{bottom:204.998667pt;}
.y52{bottom:208.442667pt;}
.yf0{bottom:208.484000pt;}
.y34{bottom:213.753333pt;}
.y7a{bottom:213.824000pt;}
.y128{bottom:219.086667pt;}
.ycb{bottom:219.177333pt;}
.y9{bottom:223.228000pt;}
.yef{bottom:224.481333pt;}
.y51{bottom:229.773333pt;}
.y79{bottom:229.821333pt;}
.ya6{bottom:229.846667pt;}
.y33{bottom:235.086667pt;}
.yca{bottom:235.174667pt;}
.yee{bottom:240.478667pt;}
.y8{bottom:241.546667pt;}
.y50{bottom:245.770667pt;}
.ya5{bottom:245.844000pt;}
.y78{bottom:251.152000pt;}
.yc9{bottom:251.173333pt;}
.yed{bottom:256.477333pt;}
.y127{bottom:256.506667pt;}
.y7{bottom:259.954667pt;}
.y4f{bottom:261.768000pt;}
.ya4{bottom:261.841333pt;}
.y77{bottom:267.149333pt;}
.yec{bottom:272.474667pt;}
.y32{bottom:272.481333pt;}
.yc8{bottom:272.504000pt;}
.y4e{bottom:277.766667pt;}
.ya3{bottom:277.838667pt;}
.y6{bottom:278.273333pt;}
.y76{bottom:283.146667pt;}
.yfa{bottom:288.420000pt;}
.yeb{bottom:288.472000pt;}
.y31{bottom:288.480000pt;}
.y126{bottom:288.501333pt;}
.yc7{bottom:288.502667pt;}
.y4d{bottom:293.764000pt;}
.ya2{bottom:293.836000pt;}
.y5{bottom:296.402667pt;}
.y75{bottom:299.144000pt;}
.yf9{bottom:304.420000pt;}
.yea{bottom:304.469333pt;}
.y30{bottom:304.477333pt;}
.y125{bottom:304.498667pt;}
.yc6{bottom:304.500000pt;}
.y4c{bottom:309.761333pt;}
.ya1{bottom:309.834667pt;}
.y74{bottom:315.142667pt;}
.ye9{bottom:320.466667pt;}
.y2f{bottom:320.474667pt;}
.y124{bottom:320.496000pt;}
.yc5{bottom:320.497333pt;}
.y4b{bottom:325.758667pt;}
.ya0{bottom:325.832000pt;}
.y73{bottom:331.140000pt;}
.y11{bottom:332.722667pt;}
.y142{bottom:336.453333pt;}
.ye8{bottom:336.464000pt;}
.y2e{bottom:336.472000pt;}
.yc4{bottom:336.494667pt;}
.y4a{bottom:341.756000pt;}
.y123{bottom:341.826667pt;}
.y9f{bottom:341.829333pt;}
.y72{bottom:347.137333pt;}
.ye7{bottom:352.462667pt;}
.y2d{bottom:352.469333pt;}
.yc3{bottom:352.492000pt;}
.y49{bottom:357.753333pt;}
.y141{bottom:357.784000pt;}
.y122{bottom:357.825333pt;}
.y9e{bottom:357.826667pt;}
.y71{bottom:363.134667pt;}
.ye6{bottom:368.460000pt;}
.y2c{bottom:368.468000pt;}
.yc2{bottom:368.489333pt;}
.y140{bottom:373.781333pt;}
.y115{bottom:373.822667pt;}
.y9d{bottom:373.824000pt;}
.y70{bottom:379.132000pt;}
.y48{bottom:384.420000pt;}
.ye5{bottom:384.457333pt;}
.y2b{bottom:384.465333pt;}
.yc1{bottom:384.488000pt;}
.y114{bottom:389.820000pt;}
.y9c{bottom:389.821333pt;}
.y13f{bottom:395.112000pt;}
.y6f{bottom:395.129333pt;}
.y47{bottom:400.420000pt;}
.ye4{bottom:400.454667pt;}
.y2a{bottom:400.462667pt;}
.y113{bottom:405.817333pt;}
.yc0{bottom:405.818667pt;}
.y9b{bottom:405.820000pt;}
.y13e{bottom:411.109333pt;}
.y6e{bottom:411.128000pt;}
.yfb{bottom:416.420000pt;}
.y29{bottom:416.460000pt;}
.ye3{bottom:421.785333pt;}
.y112{bottom:421.814667pt;}
.y9a{bottom:421.817333pt;}
.y13d{bottom:432.440000pt;}
.y28{bottom:432.457333pt;}
.y6d{bottom:432.458667pt;}
.ye2{bottom:437.782667pt;}
.y111{bottom:437.812000pt;}
.y99{bottom:437.814667pt;}
.y13c{bottom:448.437333pt;}
.y6c{bottom:448.457333pt;}
.ye1{bottom:453.780000pt;}
.y27{bottom:453.788000pt;}
.y110{bottom:453.809333pt;}
.y121{bottom:453.810667pt;}
.y98{bottom:453.812000pt;}
.y13b{bottom:464.434667pt;}
.ye0{bottom:469.777333pt;}
.y26{bottom:469.785333pt;}
.y6b{bottom:469.788000pt;}
.y10f{bottom:469.808000pt;}
.y97{bottom:469.809333pt;}
.y120{bottom:475.141333pt;}
.y13a{bottom:480.433333pt;}
.ydf{bottom:485.776000pt;}
.y25{bottom:485.782667pt;}
.y6a{bottom:485.786667pt;}
.y10e{bottom:485.805333pt;}
.y96{bottom:485.806667pt;}
.ybf{bottom:491.140000pt;}
.y139{bottom:501.764000pt;}
.yde{bottom:501.773333pt;}
.y24{bottom:501.781333pt;}
.y69{bottom:501.784000pt;}
.y10d{bottom:501.802667pt;}
.y95{bottom:501.804000pt;}
.ybe{bottom:507.137333pt;}
.ydd{bottom:517.770667pt;}
.y23{bottom:517.778667pt;}
.y68{bottom:517.781333pt;}
.y10c{bottom:517.800000pt;}
.y94{bottom:517.801333pt;}
.y138{bottom:523.094667pt;}
.ybd{bottom:523.134667pt;}
.ydc{bottom:533.768000pt;}
.y22{bottom:533.776000pt;}
.y10b{bottom:533.797333pt;}
.y93{bottom:533.798667pt;}
.y67{bottom:539.112000pt;}
.y11f{bottom:539.132000pt;}
.ybc{bottom:539.133333pt;}
.yfd{bottom:544.420000pt;}
.y137{bottom:544.425333pt;}
.ydb{bottom:549.765333pt;}
.y21{bottom:549.773333pt;}
.y92{bottom:549.796000pt;}
.y66{bottom:555.109333pt;}
.y11e{bottom:555.129333pt;}
.ybb{bottom:555.130667pt;}
.y136{bottom:565.756000pt;}
.yda{bottom:565.764000pt;}
.y91{bottom:565.793333pt;}
.y20{bottom:571.104000pt;}
.y65{bottom:571.106667pt;}
.y11d{bottom:571.126667pt;}
.yba{bottom:571.128000pt;}
.y135{bottom:581.753333pt;}
.yd9{bottom:581.761333pt;}
.y10a{bottom:581.790667pt;}
.y90{bottom:581.792000pt;}
.y1f{bottom:587.101333pt;}
.yb9{bottom:587.125333pt;}
.y64{bottom:592.437333pt;}
.yd8{bottom:597.758667pt;}
.y109{bottom:597.788000pt;}
.y8f{bottom:597.789333pt;}
.y134{bottom:603.086667pt;}
.y1e{bottom:603.098667pt;}
.y11c{bottom:603.122667pt;}
.y63{bottom:608.434667pt;}
.yb8{bottom:608.456000pt;}
.yd7{bottom:613.756000pt;}
.y108{bottom:613.785333pt;}
.y8e{bottom:613.786667pt;}
.y1d{bottom:619.096000pt;}
.y11b{bottom:619.120000pt;}
.y62{bottom:624.432000pt;}
.yb7{bottom:624.453333pt;}
.yd6{bottom:629.753333pt;}
.y107{bottom:629.782667pt;}
.y8d{bottom:629.784000pt;}
.y1c{bottom:635.094667pt;}
.y11a{bottom:635.117333pt;}
.y61{bottom:640.430667pt;}
.yb6{bottom:640.450667pt;}
.y8c{bottom:645.781333pt;}
.yd5{bottom:651.086667pt;}
.y1b{bottom:651.092000pt;}
.y119{bottom:651.114667pt;}
.y60{bottom:656.428000pt;}
.y133{bottom:656.448000pt;}
.yb5{bottom:656.449333pt;}
.y8b{bottom:661.778667pt;}
.y1a{bottom:667.089333pt;}
.y106{bottom:667.112000pt;}
.y4{bottom:668.390667pt;}
.y5f{bottom:672.425333pt;}
.y132{bottom:672.445333pt;}
.yb4{bottom:672.446667pt;}
.y8a{bottom:677.777333pt;}
.y19{bottom:683.086667pt;}
.y105{bottom:683.110667pt;}
.y5e{bottom:688.422667pt;}
.y118{bottom:688.442667pt;}
.yb3{bottom:688.444000pt;}
.y3{bottom:688.821333pt;}
.y89{bottom:693.774667pt;}
.y46{bottom:699.108000pt;}
.y18{bottom:704.420000pt;}
.y117{bottom:704.440000pt;}
.yb2{bottom:704.441333pt;}
.y88{bottom:709.772000pt;}
.y45{bottom:715.105333pt;}
.yb1{bottom:720.438667pt;}
.y5d{bottom:725.750667pt;}
.y87{bottom:725.769333pt;}
.y44{bottom:731.102667pt;}
.yb0{bottom:736.436000pt;}
.y5c{bottom:747.086667pt;}
.y43{bottom:747.100000pt;}
.yaf{bottom:752.433333pt;}
.y86{bottom:763.097333pt;}
.y17{bottom:768.420000pt;}
.y42{bottom:768.430667pt;}
.y85{bottom:779.094667pt;}
.y41{bottom:784.428000pt;}
.y13{bottom:788.089333pt;}
.y16{bottom:789.753333pt;}
.y84{bottom:795.092000pt;}
.y40{bottom:800.425333pt;}
.y3f{bottom:816.422667pt;}
.y12{bottom:820.089333pt;}
.y3e{bottom:832.420000pt;}
.y15{bottom:832.448000pt;}
.y2{bottom:859.457333pt;}
.y14{bottom:864.420000pt;}
.y1{bottom:896.148000pt;}
.h7{height:5.152000pt;}
.hf{height:35.466667pt;}
.h10{height:36.106667pt;}
.hc{height:41.066667pt;}
.h4{height:41.242667pt;}
.h5{height:41.770667pt;}
.h6{height:41.771200pt;}
.he{height:41.800000pt;}
.hb{height:43.328000pt;}
.h11{height:50.549333pt;}
.h2{height:60.757333pt;}
.hd{height:72.213333pt;}
.h8{height:75.946667pt;}
.h3{height:89.984000pt;}
.h9{height:907.086667pt;}
.ha{height:907.333333pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:642.520000pt;}
.w3{width:642.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:3.780000pt;}
.x4{left:19.714667pt;}
.x7{left:52.936000pt;}
.x6{left:54.804000pt;}
.x1{left:60.473333pt;}
.x8{left:69.927067pt;}
.xc{left:85.039067pt;}
.xd{left:147.424000pt;}
.xa{left:149.290667pt;}
.xb{left:164.414667pt;}
.x5{left:377.710667pt;}
.x9{left:602.834667pt;}
.x3{left:662.642667pt;}
}


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