
/* 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_a60b7573136b.woff")format("woff");}.ff1{font-family:ff1;line-height:1.581543;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_41311134abbc.woff")format("woff");}.ff2{font-family:ff2;line-height:1.589369;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_5d2d9878dd09.woff")format("woff");}.ff3{font-family:ff3;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:ff4;src:url("fonts/font_0003_f51448b2ede7.woff")format("woff");}.ff4{font-family:ff4;line-height:0.919000;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_478971001e37.woff")format("woff");}.ff5{font-family:ff5;line-height:0.941000;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_81c77ac218b4.woff")format("woff");}.ff6{font-family:ff6;line-height:0.942000;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_2b7472f1e7c8.woff")format("woff");}.ff7{font-family:ff7;line-height:0.919000;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_51607167a916.woff")format("woff");}.ff8{font-family:ff8;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:ff9;src:url("fonts/font_0008_8b25413e4e5a.woff")format("woff");}.ff9{font-family:ff9;line-height:0.680000;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_2edc11cd0563.woff")format("woff");}.ffa{font-family:ffa;line-height:0.692000;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_0271021e3799.woff")format("woff");}.ffb{font-family:ffb;line-height:0.695000;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_96e3d6146296.woff")format("woff");}.ffc{font-family:ffc;line-height:0.919000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url("fonts/font_0012_254c6e746415.woff")format("woff");}.ffd{font-family:ffd;line-height:0.941000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url("fonts/font_0013_b46c6284834c.woff")format("woff");}.ffe{font-family:ffe;line-height:0.264000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url("fonts/font_0014_2e3b29713b23.woff")format("woff");}.fff{font-family:fff;line-height:0.984000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url("fonts/font_0015_0313a7d00eca.woff")format("woff");}.ff10{font-family:ff10;line-height:0.972000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url("fonts/font_0016_11eb9759febb.woff")format("woff");}.ff11{font-family:ff11;line-height:0.678000;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;}
.m7{transform:matrix(0.237489,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237489,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237489,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.237494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237494,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.237499,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237499,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237499,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);}
.m4{transform:matrix(0.267207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267207,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.281284,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281284,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281284,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.281287,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281287,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281287,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;}
.ls2f{letter-spacing:-0.005858px;}
.ls0{letter-spacing:0.000000px;}
.ls3e{letter-spacing:0.095642px;}
.ls3b{letter-spacing:0.174547px;}
.ls10{letter-spacing:0.292902px;}
.ls1{letter-spacing:0.544798px;}
.lsd{letter-spacing:0.556514px;}
.ls36{letter-spacing:0.585804px;}
.ls2{letter-spacing:0.632668px;}
.ls18{letter-spacing:0.638526px;}
.ls31{letter-spacing:0.650242px;}
.ls3{letter-spacing:0.661959px;}
.ls2b{letter-spacing:0.691249px;}
.ls14{letter-spacing:0.702965px;}
.ls1c{letter-spacing:0.708823px;}
.ls23{letter-spacing:0.714681px;}
.ls15{letter-spacing:0.720539px;}
.lse{letter-spacing:0.755687px;}
.ls30{letter-spacing:0.919712px;}
.lsb{letter-spacing:0.978293px;}
.ls39{letter-spacing:1.007583px;}
.ls11{letter-spacing:1.013441px;}
.ls24{letter-spacing:1.048589px;}
.ls5{letter-spacing:1.177466px;}
.ls7{letter-spacing:1.236046px;}
.ls1b{letter-spacing:1.253621px;}
.ls9{letter-spacing:1.259479px;}
.ls8{letter-spacing:1.318059px;}
.ls6{letter-spacing:1.329775px;}
.ls35{letter-spacing:1.493800px;}
.ls32{letter-spacing:1.640251px;}
.ls29{letter-spacing:1.646109px;}
.lsa{letter-spacing:1.739838px;}
.ls26{letter-spacing:1.845283px;}
.ls40{letter-spacing:1.912848px;}
.ls33{letter-spacing:1.915579px;}
.ls27{letter-spacing:1.944869px;}
.ls3f{letter-spacing:1.956585px;}
.ls3d{letter-spacing:1.998926px;}
.ls3c{letter-spacing:2.027619px;}
.ls22{letter-spacing:2.032740px;}
.lsf{letter-spacing:2.062030px;}
.ls17{letter-spacing:2.085462px;}
.ls25{letter-spacing:2.108894px;}
.ls21{letter-spacing:2.149901px;}
.ls2d{letter-spacing:2.161617px;}
.ls2c{letter-spacing:2.267061px;}
.ls20{letter-spacing:2.325642px;}
.ls19{letter-spacing:2.343216px;}
.ls28{letter-spacing:2.360790px;}
.ls1d{letter-spacing:2.372506px;}
.ls1f{letter-spacing:2.384222px;}
.ls1e{letter-spacing:2.390080px;}
.ls37{letter-spacing:2.460377px;}
.ls38{letter-spacing:2.513099px;}
.ls1a{letter-spacing:2.665408px;}
.ls13{letter-spacing:2.677124px;}
.ls34{letter-spacing:2.706414px;}
.ls16{letter-spacing:2.753279px;}
.ls4{letter-spacing:2.958310px;}
.lsc{letter-spacing:2.975884px;}
.ls12{letter-spacing:2.981742px;}
.ls3a{letter-spacing:14.883826px;}
.ls2a{letter-spacing:15.733175px;}
.ls2e{letter-spacing:23.930093px;}
.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;}
}
.ws2e{word-spacing:-23.988674px;}
.ws6b{word-spacing:-10.508400px;}
.wsd{word-spacing:-0.061568px;}
.ws50{word-spacing:-0.047821px;}
.ws5f{word-spacing:-0.044831px;}
.ws65{word-spacing:-0.043637px;}
.ws0{word-spacing:0.000000px;}
.ws52{word-spacing:12.845740px;}
.ws51{word-spacing:14.268395px;}
.ws68{word-spacing:14.356507px;}
.ws53{word-spacing:14.519452px;}
.ws4b{word-spacing:14.614841px;}
.ws6a{word-spacing:14.661965px;}
.ws69{word-spacing:14.705602px;}
.ws66{word-spacing:14.749238px;}
.ws67{word-spacing:14.792875px;}
.ws4c{word-spacing:14.794164px;}
.ws62{word-spacing:14.838995px;}
.ws63{word-spacing:14.883826px;}
.ws60{word-spacing:14.973487px;}
.ws49{word-spacing:15.018318px;}
.ws45{word-spacing:15.055163px;}
.ws64{word-spacing:15.107980px;}
.ws4a{word-spacing:15.197641px;}
.ws61{word-spacing:15.332134px;}
.ws70{word-spacing:15.494069px;}
.ws71{word-spacing:15.541890px;}
.ws4e{word-spacing:15.589711px;}
.ws4d{word-spacing:15.685354px;}
.ws6d{word-spacing:15.694918px;}
.ws6f{word-spacing:15.733175px;}
.ws4f{word-spacing:15.780996px;}
.ws6e{word-spacing:15.972281px;}
.ws59{word-spacing:16.051030px;}
.ws6c{word-spacing:16.163566px;}
.ws58{word-spacing:16.273635px;}
.ws5b{word-spacing:16.285351px;}
.ws56{word-spacing:16.320499px;}
.ws57{word-spacing:16.361506px;}
.ws3a{word-spacing:16.402512px;}
.ws5d{word-spacing:16.449376px;}
.ws54{word-spacing:16.455234px;}
.ws5a{word-spacing:16.548963px;}
.ws46{word-spacing:16.572395px;}
.ws48{word-spacing:16.636834px;}
.ws5c{word-spacing:16.701272px;}
.ws39{word-spacing:16.841865px;}
.ws47{word-spacing:16.929736px;}
.ws37{word-spacing:16.935594px;}
.ws41{word-spacing:16.976600px;}
.ws55{word-spacing:17.046896px;}
.ws3c{word-spacing:17.052754px;}
.ws3b{word-spacing:17.093761px;}
.ws31{word-spacing:17.099619px;}
.ws3e{word-spacing:17.164057px;}
.ws40{word-spacing:17.193347px;}
.ws38{word-spacing:17.240212px;}
.ws5e{word-spacing:17.281218px;}
.ws3d{word-spacing:17.298792px;}
.ws32{word-spacing:17.398379px;}
.ws43{word-spacing:17.456959px;}
.ws3f{word-spacing:17.984183px;}
.ws2d{word-spacing:19.032772px;}
.ws14{word-spacing:19.231945px;}
.ws29{word-spacing:19.313958px;}
.ws18{word-spacing:19.331532px;}
.ws26{word-spacing:19.337390px;}
.ws17{word-spacing:19.360822px;}
.ws2a{word-spacing:19.390112px;}
.ws2b{word-spacing:19.413545px;}
.ws16{word-spacing:19.419403px;}
.ws30{word-spacing:19.448693px;}
.ws2f{word-spacing:19.483841px;}
.ws10{word-spacing:19.548279px;}
.ws2c{word-spacing:19.571712px;}
.ws19{word-spacing:19.583428px;}
.ws25{word-spacing:19.636150px;}
.wsf{word-spacing:19.659582px;}
.ws27{word-spacing:19.665440px;}
.ws23{word-spacing:19.688872px;}
.ws15{word-spacing:19.753311px;}
.ws1b{word-spacing:19.759169px;}
.ws24{word-spacing:19.788459px;}
.ws1c{word-spacing:19.800175px;}
.ws12{word-spacing:19.852898px;}
.wse{word-spacing:19.893904px;}
.ws1a{word-spacing:20.034497px;}
.ws1f{word-spacing:20.210238px;}
.ws20{word-spacing:20.327399px;}
.ws22{word-spacing:20.503140px;}
.ws13{word-spacing:20.678881px;}
.ws1d{word-spacing:20.686982px;}
.ws21{word-spacing:20.737462px;}
.ws34{word-spacing:21.510723px;}
.ws33{word-spacing:21.528297px;}
.ws8{word-spacing:21.567312px;}
.wsb{word-spacing:21.633066px;}
.ws5{word-spacing:21.764574px;}
.ws9{word-spacing:21.830328px;}
.ws7{word-spacing:21.896082px;}
.ws6{word-spacing:21.961836px;}
.wsc{word-spacing:22.027590px;}
.wsa{word-spacing:22.224852px;}
.ws28{word-spacing:22.735053px;}
.ws11{word-spacing:22.934227px;}
.ws42{word-spacing:24.281576px;}
.ws44{word-spacing:25.464900px;}
.ws1{word-spacing:26.421060px;}
.ws1e{word-spacing:27.134441px;}
.ws35{word-spacing:27.140299px;}
.ws36{word-spacing:27.257460px;}
.ws2{word-spacing:47.916041px;}
.ws3{word-spacing:48.059502px;}
.ws4{word-spacing:48.202963px;}
._a{margin-left:-22.401145px;}
._9{margin-left:-21.006931px;}
._8{margin-left:-1.230188px;}
._4{width:1.031015px;}
._0{width:8.625699px;}
._e{width:13.998750px;}
._d{width:16.004596px;}
._c{width:17.164057px;}
._b{width:18.277085px;}
._7{width:20.444560px;}
._6{width:21.838773px;}
._3{width:22.882392px;}
._5{width:27.181306px;}
._1{width:34.191960px;}
._2{width:1437.771918px;}
.fc5{color:rgb(85,123,178);}
.fc2{color:transparent;}
.fc4{color:rgb(35,31,32);}
.fc3{color:rgb(255,255,255);}
.fc1{color:rgb(96,96,96);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:6.000000px;}
.fsc{font-size:29.883000px;}
.fs12{font-size:37.800000px;}
.fsa{font-size:39.048600px;}
.fs11{font-size:40.800000px;}
.fse{font-size:41.842800px;}
.fsf{font-size:43.636800px;}
.fs7{font-size:43.831200px;}
.fsb{font-size:44.830800px;}
.fsd{font-size:47.821200px;}
.fs2{font-size:48.000000px;}
.fs10{font-size:53.349000px;}
.fs9{font-size:58.580400px;}
.fs8{font-size:61.568400px;}
.fs6{font-size:65.754000px;}
.fs0{font-size:72.000000px;}
.fs4{font-size:77.709000px;}
.fs5{font-size:143.461200px;}
.fs1{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y11{bottom:1.828500px;}
.y91{bottom:83.848800px;}
.y68{bottom:86.149885px;}
.y90{bottom:94.347750px;}
.y67{bottom:98.054161px;}
.y10{bottom:100.669500px;}
.y66{bottom:110.042123px;}
.yf{bottom:115.669500px;}
.y65{bottom:121.946400px;}
.y8f{bottom:126.881550px;}
.ye{bottom:130.669500px;}
.y87{bottom:141.774233px;}
.y62{bottom:141.933631px;}
.y5d{bottom:144.487905px;}
.y8e{bottom:145.496550px;}
.yd{bottom:145.669500px;}
.y86{bottom:154.439814px;}
.y61{bottom:155.450118px;}
.y5c{bottom:162.428153px;}
.y8d{bottom:164.111550px;}
.y85{bottom:167.192669px;}
.y60{bottom:168.888150px;}
.y5f{bottom:173.820450px;}
.y84{bottom:179.858250px;}
.y5b{bottom:180.368400px;}
.y5e{bottom:182.324400px;}
.y8c{bottom:182.726550px;}
.y5a{bottom:198.311850px;}
.y8b{bottom:201.341550px;}
.y3e{bottom:216.206498px;}
.y8a{bottom:219.956550px;}
.y3d{bottom:234.146746px;}
.y59{bottom:234.173986px;}
.y83{bottom:235.893653px;}
.y89{bottom:251.346450px;}
.y3c{bottom:252.086993px;}
.y58{bottom:252.114234px;}
.y82{bottom:262.769718px;}
.y88{bottom:267.351150px;}
.y3b{bottom:270.027241px;}
.y57{bottom:270.054481px;}
.y81{bottom:276.207750px;}
.y7f{bottom:276.212564px;}
.y80{bottom:281.225100px;}
.y3a{bottom:287.967488px;}
.y56{bottom:287.994729px;}
.y7c{bottom:289.727268px;}
.y7e{bottom:289.729050px;}
.yc{bottom:292.008000px;}
.y7d{bottom:294.661350px;}
.y7b{bottom:303.165300px;}
.y39{bottom:305.907736px;}
.y55{bottom:305.934976px;}
.yb{bottom:307.008000px;}
.y7a{bottom:308.097600px;}
.y79{bottom:316.600867px;}
.ya{bottom:322.008000px;}
.y38{bottom:323.847983px;}
.y54{bottom:323.875224px;}
.y9{bottom:337.008000px;}
.y37{bottom:341.788231px;}
.y53{bottom:341.815471px;}
.y78{bottom:343.476931px;}
.y77{bottom:356.914964px;}
.y36{bottom:359.640608px;}
.y52{bottom:359.667848px;}
.y76{bottom:370.431450px;}
.y35{bottom:377.580855px;}
.y51{bottom:377.608096px;}
.y34{bottom:395.521103px;}
.y50{bottom:395.548343px;}
.y33{bottom:413.461350px;}
.y31{bottom:413.464402px;}
.y4f{bottom:413.488591px;}
.y75{bottom:415.289521px;}
.y32{bottom:420.009450px;}
.y2f{bottom:431.404650px;}
.y4e{bottom:431.428838px;}
.y74{bottom:433.229769px;}
.y30{bottom:437.867550px;}
.y2d{bottom:449.347950px;}
.y4d{bottom:449.369086px;}
.y73{bottom:451.082146px;}
.y2e{bottom:455.811000px;}
.y2c{bottom:467.291250px;}
.y4c{bottom:467.309333px;}
.y72{bottom:469.022393px;}
.y4b{bottom:485.249581px;}
.y71{bottom:486.962641px;}
.y4a{bottom:503.101957px;}
.y2b{bottom:503.129198px;}
.y70{bottom:504.902888px;}
.y49{bottom:521.042205px;}
.y2a{bottom:521.069446px;}
.y6f{bottom:522.843136px;}
.y48{bottom:538.982452px;}
.y29{bottom:539.009693px;}
.y6e{bottom:540.783383px;}
.y47{bottom:556.922700px;}
.y28{bottom:556.949941px;}
.y6d{bottom:558.723631px;}
.y46{bottom:574.866000px;}
.y27{bottom:574.890188px;}
.y6c{bottom:576.663878px;}
.y26{bottom:592.830436px;}
.y6b{bottom:594.516255px;}
.y25{bottom:610.770683px;}
.y45{bottom:610.818718px;}
.y6a{bottom:612.456502px;}
.y24{bottom:628.710931px;}
.y44{bottom:628.758965px;}
.y69{bottom:630.396750px;}
.y23{bottom:646.563307px;}
.y43{bottom:646.611342px;}
.y22{bottom:664.503555px;}
.y42{bottom:664.551590px;}
.y96{bottom:676.312245px;}
.y21{bottom:682.443802px;}
.y41{bottom:682.491837px;}
.y95{bottom:691.280280px;}
.y20{bottom:700.384050px;}
.y40{bottom:700.432085px;}
.y94{bottom:706.248316px;}
.y1f{bottom:718.327350px;}
.y3f{bottom:718.372332px;}
.y93{bottom:721.132664px;}
.y92{bottom:736.100700px;}
.y8{bottom:762.205500px;}
.y1e{bottom:773.597378px;}
.y7{bottom:779.214000px;}
.y1d{bottom:793.077000px;}
.y1b{bottom:824.449940px;}
.y1c{bottom:831.769800px;}
.y6{bottom:836.520000px;}
.y18{bottom:845.369689px;}
.y1a{bottom:845.376150px;}
.y19{bottom:852.689550px;}
.y16{bottom:866.295900px;}
.y17{bottom:873.609300px;}
.y5{bottom:881.520000px;}
.y15{bottom:902.067430px;}
.y4{bottom:926.520000px;}
.y14{bottom:940.945415px;}
.y3{bottom:966.498000px;}
.y13{bottom:979.823400px;}
.y2{bottom:988.998000px;}
.y1{bottom:1011.498000px;}
.y12{bottom:1036.629600px;}
.y98{bottom:1115.203263px;}
.y64{bottom:1115.203651px;}
.y97{bottom:1130.087611px;}
.y63{bottom:1130.088000px;}
.h6{height:5.796000px;}
.h12{height:21.545643px;}
.h10{height:26.435902px;}
.hf{height:28.271186px;}
.h18{height:28.350000px;}
.h14{height:30.168659px;}
.h17{height:31.089600px;}
.h15{height:31.462133px;}
.hc{height:31.602295px;}
.h11{height:32.323007px;}
.h13{height:34.479085px;}
.h16{height:40.651938px;}
.he{height:42.412210px;}
.hd{height:43.713564px;}
.hb{height:47.408634px;}
.h9{height:55.173390px;}
.h5{height:55.992188px;}
.h4{height:56.367839px;}
.h2{height:83.988281px;}
.ha{height:103.435525px;}
.h3{height:167.976562px;}
.h8{height:1190.250000px;}
.h7{height:1190.551500px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:4.252500px;}
.x1{left:68.032500px;}
.x4{left:85.039350px;}
.x24{left:89.036250px;}
.x3{left:90.396900px;}
.x2a{left:93.288150px;}
.x2d{left:94.393650px;}
.x1d{left:148.989000px;}
.x11{left:169.568550px;}
.x12{left:175.181100px;}
.x5{left:201.458250px;}
.x6{left:211.577850px;}
.x1f{left:253.247250px;}
.x20{left:263.792100px;}
.x25{left:267.873900px;}
.x13{left:291.940050px;}
.x7{left:293.130600px;}
.x14{left:297.552750px;}
.x8{left:298.743300px;}
.x21{left:321.278700px;}
.x22{left:334.714800px;}
.x28{left:345.004650px;}
.x29{left:349.086600px;}
.x26{left:358.270800px;}
.x27{left:362.267700px;}
.x9{left:412.951050px;}
.xa{left:418.563750px;}
.x15{left:420.264450px;}
.x16{left:425.877150px;}
.x1e{left:430.299150px;}
.x23{left:457.103901px;}
.x2c{left:478.983900px;}
.x2b{left:480.047400px;}
.xb{left:500.626650px;}
.xc{left:506.239350px;}
.x17{left:524.692800px;}
.x18{left:530.305350px;}
.xd{left:597.571500px;}
.xe{left:603.184050px;}
.x19{left:630.651900px;}
.x1a{left:636.264450px;}
.xf{left:706.421850px;}
.x10{left:712.034400px;}
.x1b{left:737.036100px;}
.x1c{left:742.648650px;}
.x2e{left:749.281073px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls2f{letter-spacing:-0.005207pt;}
.ls0{letter-spacing:0.000000pt;}
.ls3e{letter-spacing:0.085015pt;}
.ls3b{letter-spacing:0.155153pt;}
.ls10{letter-spacing:0.260357pt;}
.ls1{letter-spacing:0.484265pt;}
.lsd{letter-spacing:0.494679pt;}
.ls36{letter-spacing:0.520715pt;}
.ls2{letter-spacing:0.562372pt;}
.ls18{letter-spacing:0.567579pt;}
.ls31{letter-spacing:0.577993pt;}
.ls3{letter-spacing:0.588408pt;}
.ls2b{letter-spacing:0.614443pt;}
.ls14{letter-spacing:0.624858pt;}
.ls1c{letter-spacing:0.630065pt;}
.ls23{letter-spacing:0.635272pt;}
.ls15{letter-spacing:0.640479pt;}
.lse{letter-spacing:0.671722pt;}
.ls30{letter-spacing:0.817522pt;}
.lsb{letter-spacing:0.869593pt;}
.ls39{letter-spacing:0.895629pt;}
.ls11{letter-spacing:0.900836pt;}
.ls24{letter-spacing:0.932079pt;}
.ls5{letter-spacing:1.046636pt;}
.ls7{letter-spacing:1.098708pt;}
.ls1b{letter-spacing:1.114329pt;}
.ls9{letter-spacing:1.119537pt;}
.ls8{letter-spacing:1.171608pt;}
.ls6{letter-spacing:1.182022pt;}
.ls35{letter-spacing:1.327822pt;}
.ls32{letter-spacing:1.458001pt;}
.ls29{letter-spacing:1.463208pt;}
.lsa{letter-spacing:1.546523pt;}
.ls26{letter-spacing:1.640251pt;}
.ls40{letter-spacing:1.700309pt;}
.ls33{letter-spacing:1.702737pt;}
.ls27{letter-spacing:1.728773pt;}
.ls3f{letter-spacing:1.739187pt;}
.ls3d{letter-spacing:1.776823pt;}
.ls3c{letter-spacing:1.802328pt;}
.ls22{letter-spacing:1.806880pt;}
.lsf{letter-spacing:1.832916pt;}
.ls17{letter-spacing:1.853744pt;}
.ls25{letter-spacing:1.874573pt;}
.ls21{letter-spacing:1.911023pt;}
.ls2d{letter-spacing:1.921437pt;}
.ls2c{letter-spacing:2.015166pt;}
.ls20{letter-spacing:2.067237pt;}
.ls19{letter-spacing:2.082859pt;}
.ls28{letter-spacing:2.098480pt;}
.ls1d{letter-spacing:2.108894pt;}
.ls1f{letter-spacing:2.119309pt;}
.ls1e{letter-spacing:2.124516pt;}
.ls37{letter-spacing:2.187002pt;}
.ls38{letter-spacing:2.233866pt;}
.ls1a{letter-spacing:2.369252pt;}
.ls13{letter-spacing:2.379666pt;}
.ls34{letter-spacing:2.405702pt;}
.ls16{letter-spacing:2.447359pt;}
.ls4{letter-spacing:2.629609pt;}
.lsc{letter-spacing:2.645231pt;}
.ls12{letter-spacing:2.650438pt;}
.ls3a{letter-spacing:13.230067pt;}
.ls2a{letter-spacing:13.985044pt;}
.ls2e{letter-spacing:21.271194pt;}
.ws2e{word-spacing:-21.323266pt;}
.ws6b{word-spacing:-9.340800pt;}
.wsd{word-spacing:-0.054727pt;}
.ws50{word-spacing:-0.042508pt;}
.ws5f{word-spacing:-0.039850pt;}
.ws65{word-spacing:-0.038788pt;}
.ws0{word-spacing:0.000000pt;}
.ws52{word-spacing:11.418435pt;}
.ws51{word-spacing:12.683018pt;}
.ws68{word-spacing:12.761340pt;}
.ws53{word-spacing:12.906179pt;}
.ws4b{word-spacing:12.990970pt;}
.ws6a{word-spacing:13.032858pt;}
.ws69{word-spacing:13.071646pt;}
.ws66{word-spacing:13.110434pt;}
.ws67{word-spacing:13.149222pt;}
.ws4c{word-spacing:13.150368pt;}
.ws62{word-spacing:13.190218pt;}
.ws63{word-spacing:13.230067pt;}
.ws60{word-spacing:13.309766pt;}
.ws49{word-spacing:13.349616pt;}
.ws45{word-spacing:13.382367pt;}
.ws64{word-spacing:13.429315pt;}
.ws4a{word-spacing:13.509014pt;}
.ws61{word-spacing:13.628563pt;}
.ws70{word-spacing:13.772506pt;}
.ws71{word-spacing:13.815013pt;}
.ws4e{word-spacing:13.857521pt;}
.ws4d{word-spacing:13.942537pt;}
.ws6d{word-spacing:13.951038pt;}
.ws6f{word-spacing:13.985044pt;}
.ws4f{word-spacing:14.027552pt;}
.ws6e{word-spacing:14.197583pt;}
.ws59{word-spacing:14.267582pt;}
.ws6c{word-spacing:14.367614pt;}
.ws58{word-spacing:14.465453pt;}
.ws5b{word-spacing:14.475868pt;}
.ws56{word-spacing:14.507111pt;}
.ws57{word-spacing:14.543561pt;}
.ws3a{word-spacing:14.580011pt;}
.ws5d{word-spacing:14.621668pt;}
.ws54{word-spacing:14.626875pt;}
.ws5a{word-spacing:14.710189pt;}
.ws46{word-spacing:14.731018pt;}
.ws48{word-spacing:14.788297pt;}
.ws5c{word-spacing:14.845575pt;}
.ws39{word-spacing:14.970547pt;}
.ws47{word-spacing:15.048654pt;}
.ws37{word-spacing:15.053861pt;}
.ws41{word-spacing:15.090311pt;}
.ws55{word-spacing:15.152797pt;}
.ws3c{word-spacing:15.158004pt;}
.ws3b{word-spacing:15.194454pt;}
.ws31{word-spacing:15.199661pt;}
.ws3e{word-spacing:15.256940pt;}
.ws40{word-spacing:15.282975pt;}
.ws38{word-spacing:15.324633pt;}
.ws5e{word-spacing:15.361083pt;}
.ws3d{word-spacing:15.376704pt;}
.ws32{word-spacing:15.465226pt;}
.ws43{word-spacing:15.517297pt;}
.ws3f{word-spacing:15.985940pt;}
.ws2d{word-spacing:16.918020pt;}
.ws14{word-spacing:17.095063pt;}
.ws29{word-spacing:17.167963pt;}
.ws18{word-spacing:17.183584pt;}
.ws26{word-spacing:17.188791pt;}
.ws17{word-spacing:17.209620pt;}
.ws2a{word-spacing:17.235655pt;}
.ws2b{word-spacing:17.256484pt;}
.ws16{word-spacing:17.261691pt;}
.ws30{word-spacing:17.287727pt;}
.ws2f{word-spacing:17.318970pt;}
.ws10{word-spacing:17.376248pt;}
.ws2c{word-spacing:17.397077pt;}
.ws19{word-spacing:17.407491pt;}
.ws25{word-spacing:17.454356pt;}
.wsf{word-spacing:17.475184pt;}
.ws27{word-spacing:17.480391pt;}
.ws23{word-spacing:17.501220pt;}
.ws15{word-spacing:17.558499pt;}
.ws1b{word-spacing:17.563706pt;}
.ws24{word-spacing:17.589741pt;}
.ws1c{word-spacing:17.600156pt;}
.ws12{word-spacing:17.647020pt;}
.wse{word-spacing:17.683470pt;}
.ws1a{word-spacing:17.808442pt;}
.ws1f{word-spacing:17.964656pt;}
.ws20{word-spacing:18.068799pt;}
.ws22{word-spacing:18.225013pt;}
.ws13{word-spacing:18.381228pt;}
.ws1d{word-spacing:18.388429pt;}
.ws21{word-spacing:18.433299pt;}
.ws34{word-spacing:19.120643pt;}
.ws33{word-spacing:19.136264pt;}
.ws8{word-spacing:19.170944pt;}
.wsb{word-spacing:19.229392pt;}
.ws5{word-spacing:19.346288pt;}
.ws9{word-spacing:19.404736pt;}
.ws7{word-spacing:19.463184pt;}
.ws6{word-spacing:19.521632pt;}
.wsc{word-spacing:19.580080pt;}
.wsa{word-spacing:19.755424pt;}
.ws28{word-spacing:20.208936pt;}
.ws11{word-spacing:20.385979pt;}
.ws42{word-spacing:21.583623pt;}
.ws44{word-spacing:22.635467pt;}
.ws1{word-spacing:23.485387pt;}
.ws1e{word-spacing:24.119503pt;}
.ws35{word-spacing:24.124711pt;}
.ws36{word-spacing:24.228853pt;}
.ws2{word-spacing:42.592036pt;}
.ws3{word-spacing:42.719557pt;}
.ws4{word-spacing:42.847078pt;}
._a{margin-left:-19.912129pt;}
._9{margin-left:-18.672828pt;}
._8{margin-left:-1.093501pt;}
._4{width:0.916458pt;}
._0{width:7.667288pt;}
._e{width:12.443333pt;}
._d{width:14.226307pt;}
._c{width:15.256940pt;}
._b{width:16.246298pt;}
._7{width:18.172942pt;}
._6{width:19.412243pt;}
._3{width:20.339904pt;}
._5{width:24.161161pt;}
._1{width:30.392853pt;}
._2{width:1278.019483pt;}
.fs3{font-size:5.333333pt;}
.fsc{font-size:26.562667pt;}
.fs12{font-size:33.600000pt;}
.fsa{font-size:34.709867pt;}
.fs11{font-size:36.266667pt;}
.fse{font-size:37.193600pt;}
.fsf{font-size:38.788267pt;}
.fs7{font-size:38.961067pt;}
.fsb{font-size:39.849600pt;}
.fsd{font-size:42.507733pt;}
.fs2{font-size:42.666667pt;}
.fs10{font-size:47.421333pt;}
.fs9{font-size:52.071467pt;}
.fs8{font-size:54.727467pt;}
.fs6{font-size:58.448000pt;}
.fs0{font-size:64.000000pt;}
.fs4{font-size:69.074667pt;}
.fs5{font-size:127.521067pt;}
.fs1{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y11{bottom:1.625333pt;}
.y91{bottom:74.532267pt;}
.y68{bottom:76.577675pt;}
.y90{bottom:83.864667pt;}
.y67{bottom:87.159254pt;}
.y10{bottom:89.484000pt;}
.y66{bottom:97.815221pt;}
.yf{bottom:102.817333pt;}
.y65{bottom:108.396800pt;}
.y8f{bottom:112.783600pt;}
.ye{bottom:116.150667pt;}
.y87{bottom:126.021540pt;}
.y62{bottom:126.163228pt;}
.y5d{bottom:128.433693pt;}
.y8e{bottom:129.330267pt;}
.yd{bottom:129.484000pt;}
.y86{bottom:137.279835pt;}
.y61{bottom:138.177882pt;}
.y5c{bottom:144.380580pt;}
.y8d{bottom:145.876933pt;}
.y85{bottom:148.615706pt;}
.y60{bottom:150.122800pt;}
.y5f{bottom:154.507067pt;}
.y84{bottom:159.874000pt;}
.y5b{bottom:160.327467pt;}
.y5e{bottom:162.066133pt;}
.y8c{bottom:162.423600pt;}
.y5a{bottom:176.277200pt;}
.y8b{bottom:178.970267pt;}
.y3e{bottom:192.183554pt;}
.y8a{bottom:195.516933pt;}
.y3d{bottom:208.130441pt;}
.y59{bottom:208.154654pt;}
.y83{bottom:209.683247pt;}
.y89{bottom:223.419067pt;}
.y3c{bottom:224.077327pt;}
.y58{bottom:224.101541pt;}
.y82{bottom:233.573082pt;}
.y88{bottom:237.645467pt;}
.y3b{bottom:240.024214pt;}
.y57{bottom:240.048428pt;}
.y81{bottom:245.518000pt;}
.y7f{bottom:245.522279pt;}
.y80{bottom:249.977867pt;}
.y3a{bottom:255.971101pt;}
.y56{bottom:255.995314pt;}
.y7c{bottom:257.535349pt;}
.y7e{bottom:257.536933pt;}
.yc{bottom:259.562667pt;}
.y7d{bottom:261.921200pt;}
.y7b{bottom:269.480267pt;}
.y39{bottom:271.917987pt;}
.y55{bottom:271.942201pt;}
.yb{bottom:272.896000pt;}
.y7a{bottom:273.864533pt;}
.y79{bottom:281.422993pt;}
.ya{bottom:286.229333pt;}
.y38{bottom:287.864874pt;}
.y54{bottom:287.889088pt;}
.y9{bottom:299.562667pt;}
.y37{bottom:303.811761pt;}
.y53{bottom:303.835974pt;}
.y78{bottom:305.312828pt;}
.y77{bottom:317.257746pt;}
.y36{bottom:319.680540pt;}
.y52{bottom:319.704754pt;}
.y76{bottom:329.272400pt;}
.y35{bottom:335.627427pt;}
.y51{bottom:335.651641pt;}
.y34{bottom:351.574313pt;}
.y50{bottom:351.598527pt;}
.y33{bottom:367.521200pt;}
.y31{bottom:367.523913pt;}
.y4f{bottom:367.545414pt;}
.y75{bottom:369.146241pt;}
.y32{bottom:373.341733pt;}
.y2f{bottom:383.470800pt;}
.y4e{bottom:383.492301pt;}
.y74{bottom:385.093128pt;}
.y30{bottom:389.215600pt;}
.y2d{bottom:399.420400pt;}
.y4d{bottom:399.439187pt;}
.y73{bottom:400.961907pt;}
.y2e{bottom:405.165333pt;}
.y2c{bottom:415.370000pt;}
.y4c{bottom:415.386074pt;}
.y72{bottom:416.908794pt;}
.y4b{bottom:431.332961pt;}
.y71{bottom:432.855681pt;}
.y4a{bottom:447.201740pt;}
.y2b{bottom:447.225954pt;}
.y70{bottom:448.802567pt;}
.y49{bottom:463.148627pt;}
.y2a{bottom:463.172841pt;}
.y6f{bottom:464.749454pt;}
.y48{bottom:479.095513pt;}
.y29{bottom:479.119727pt;}
.y6e{bottom:480.696341pt;}
.y47{bottom:495.042400pt;}
.y28{bottom:495.066614pt;}
.y6d{bottom:496.643227pt;}
.y46{bottom:510.992000pt;}
.y27{bottom:511.013501pt;}
.y6c{bottom:512.590114pt;}
.y26{bottom:526.960387pt;}
.y6b{bottom:528.458893pt;}
.y25{bottom:542.907274pt;}
.y45{bottom:542.949971pt;}
.y6a{bottom:544.405780pt;}
.y24{bottom:558.854161pt;}
.y44{bottom:558.896858pt;}
.y69{bottom:560.352667pt;}
.y23{bottom:574.722940pt;}
.y43{bottom:574.765637pt;}
.y22{bottom:590.669827pt;}
.y42{bottom:590.712524pt;}
.y96{bottom:601.166440pt;}
.y21{bottom:606.616713pt;}
.y41{bottom:606.659411pt;}
.y95{bottom:614.471360pt;}
.y20{bottom:622.563600pt;}
.y40{bottom:622.606297pt;}
.y94{bottom:627.776281pt;}
.y1f{bottom:638.513200pt;}
.y3f{bottom:638.553184pt;}
.y93{bottom:641.006813pt;}
.y92{bottom:654.311733pt;}
.y8{bottom:677.516000pt;}
.y1e{bottom:687.642113pt;}
.y7{bottom:692.634667pt;}
.y1d{bottom:704.957333pt;}
.y1b{bottom:732.844391pt;}
.y1c{bottom:739.350933pt;}
.y6{bottom:743.573333pt;}
.y18{bottom:751.439724pt;}
.y1a{bottom:751.445467pt;}
.y19{bottom:757.946267pt;}
.y16{bottom:770.040800pt;}
.y17{bottom:776.541600pt;}
.y5{bottom:783.573333pt;}
.y15{bottom:801.837715pt;}
.y4{bottom:823.573333pt;}
.y14{bottom:836.395924pt;}
.y3{bottom:859.109333pt;}
.y13{bottom:870.954133pt;}
.y2{bottom:879.109333pt;}
.y1{bottom:899.109333pt;}
.y12{bottom:921.448533pt;}
.y98{bottom:991.291789pt;}
.y64{bottom:991.292135pt;}
.y97{bottom:1004.522321pt;}
.y63{bottom:1004.522667pt;}
.h6{height:5.152000pt;}
.h12{height:19.151683pt;}
.h10{height:23.498580pt;}
.hf{height:25.129943pt;}
.h18{height:25.200000pt;}
.h14{height:26.816586pt;}
.h17{height:27.635200pt;}
.h15{height:27.966340pt;}
.hc{height:28.090929pt;}
.h11{height:28.731562pt;}
.h13{height:30.648076pt;}
.h16{height:36.135056pt;}
.he{height:37.699742pt;}
.hd{height:38.856501pt;}
.hb{height:42.141008pt;}
.h9{height:49.043013pt;}
.h5{height:49.770833pt;}
.h4{height:50.104745pt;}
.h2{height:74.656250pt;}
.ha{height:91.942689pt;}
.h3{height:149.312500pt;}
.h8{height:1058.000000pt;}
.h7{height:1058.268000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:3.780000pt;}
.x1{left:60.473333pt;}
.x4{left:75.590533pt;}
.x24{left:79.143333pt;}
.x3{left:80.352800pt;}
.x2a{left:82.922800pt;}
.x2d{left:83.905467pt;}
.x1d{left:132.434667pt;}
.x11{left:150.727600pt;}
.x12{left:155.716533pt;}
.x5{left:179.074000pt;}
.x6{left:188.069200pt;}
.x1f{left:225.108667pt;}
.x20{left:234.481867pt;}
.x25{left:238.110133pt;}
.x13{left:259.502267pt;}
.x7{left:260.560533pt;}
.x14{left:264.491333pt;}
.x8{left:265.549600pt;}
.x21{left:285.581067pt;}
.x22{left:297.524267pt;}
.x28{left:306.670800pt;}
.x29{left:310.299200pt;}
.x26{left:318.462933pt;}
.x27{left:322.015733pt;}
.x9{left:367.067600pt;}
.xa{left:372.056667pt;}
.x15{left:373.568400pt;}
.x16{left:378.557467pt;}
.x1e{left:382.488133pt;}
.x23{left:406.314578pt;}
.x2c{left:425.763467pt;}
.x2b{left:426.708800pt;}
.xb{left:445.001467pt;}
.xc{left:449.990533pt;}
.x17{left:466.393600pt;}
.x18{left:471.382533pt;}
.xd{left:531.174667pt;}
.xe{left:536.163600pt;}
.x19{left:560.579467pt;}
.x1a{left:565.568400pt;}
.xf{left:627.930533pt;}
.x10{left:632.919467pt;}
.x1b{left:655.143200pt;}
.x1c{left:660.132133pt;}
.x2e{left:666.027621pt;}
}


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