
/* 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_4a018d9da11a.woff")format("woff");}.ff1{font-family:ff1;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:ff2;src:url("fonts/font_0001_42ac9af7754e.woff")format("woff");}.ff2{font-family:ff2;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:ff3;src:url("fonts/font_0002_612e854091cc.woff")format("woff");}.ff3{font-family:ff3;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:ff4;src:url("fonts/font_0003_5bc2f9d7de44.woff")format("woff");}.ff4{font-family:ff4;line-height:0.882000;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_d5a1cc7e7e1b.woff")format("woff");}.ff5{font-family:ff5;line-height:1.111000;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_c24613e2bd9e.woff")format("woff");}.ff6{font-family:ff6;line-height:1.111000;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_8306a1418d9a.woff")format("woff");}.ff7{font-family:ff7;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:ff8;src:url("fonts/font_0007_8e470f392508.woff")format("woff");}.ff8{font-family:ff8;line-height:0.978000;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_13e7518ff0c5.woff")format("woff");}.ff9{font-family:ff9;line-height:0.712000;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_072f36f00024.woff")format("woff");}.ffa{font-family:ffa;line-height:0.887207;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_f93371a1d299.woff")format("woff");}.ffb{font-family:ffb;line-height:0.926270;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);}
.v1{vertical-align:-12.158400px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:12.000000px;}
.v3{vertical-align:18.981000px;}
.ls1a{letter-spacing:-4.368000px;}
.ls7{letter-spacing:-3.933000px;}
.ls5{letter-spacing:-2.622000px;}
.ls9{letter-spacing:-2.166000px;}
.ls24{letter-spacing:-1.440000px;}
.ls10{letter-spacing:-1.368000px;}
.ls12{letter-spacing:-1.140000px;}
.ls8{letter-spacing:-1.026000px;}
.ls23{letter-spacing:-0.960000px;}
.ls13{letter-spacing:-0.855000px;}
.lsb{letter-spacing:-0.570000px;}
.ls1e{letter-spacing:-0.480000px;}
.ls1b{letter-spacing:-0.240000px;}
.lsa{letter-spacing:-0.234000px;}
.ls1c{letter-spacing:-0.156000px;}
.ls1{letter-spacing:0.000000px;}
.ls15{letter-spacing:0.000048px;}
.ls14{letter-spacing:0.004800px;}
.lse{letter-spacing:0.005400px;}
.ls16{letter-spacing:0.009000px;}
.ls1d{letter-spacing:0.013800px;}
.ls17{letter-spacing:0.026400px;}
.lsd{letter-spacing:0.046200px;}
.ls1f{letter-spacing:0.096000px;}
.ls2{letter-spacing:0.312000px;}
.ls4{letter-spacing:0.342000px;}
.ls0{letter-spacing:0.570000px;}
.ls20{letter-spacing:0.576000px;}
.ls3{letter-spacing:0.624000px;}
.ls11{letter-spacing:0.768000px;}
.ls21{letter-spacing:0.816000px;}
.ls18{letter-spacing:0.855000px;}
.ls19{letter-spacing:0.912000px;}
.lsc{letter-spacing:1.140000px;}
.ls22{letter-spacing:1.248000px;}
.ls6{letter-spacing:2.793000px;}
.lsf{letter-spacing:22.059000px;}
.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;}
}
.ws33{word-spacing:-79.059000px;}
.ws34{word-spacing:-57.000000px;}
.ws5b{word-spacing:-47.538000px;}
.ws56{word-spacing:-44.437200px;}
.ws57{word-spacing:-44.431500px;}
.ws35{word-spacing:-42.000000px;}
.ws58{word-spacing:-41.564400px;}
.ws68{word-spacing:-28.689600px;}
.ws59{word-spacing:-16.872000px;}
.ws31{word-spacing:-12.432000px;}
.wse{word-spacing:-11.799000px;}
.ws5a{word-spacing:-9.836376px;}
.ws8{word-spacing:-9.291000px;}
.wsb{word-spacing:-9.120000px;}
.wsa{word-spacing:-6.669000px;}
.ws5{word-spacing:-6.042000px;}
.ws66{word-spacing:-4.161000px;}
.ws86{word-spacing:-3.120000px;}
.ws6e{word-spacing:-3.078000px;}
.ws6b{word-spacing:-3.042000px;}
.ws80{word-spacing:-2.907000px;}
.ws6{word-spacing:-2.793000px;}
.ws3e{word-spacing:-2.736000px;}
.ws7{word-spacing:-2.679000px;}
.ws4c{word-spacing:-2.565000px;}
.ws5c{word-spacing:-2.451000px;}
.ws13{word-spacing:-2.337000px;}
.ws7c{word-spacing:-1.995000px;}
.ws29{word-spacing:-1.710000px;}
.ws4a{word-spacing:-1.596000px;}
.ws85{word-spacing:-1.368000px;}
.ws46{word-spacing:-1.311000px;}
.ws45{word-spacing:-1.254000px;}
.ws43{word-spacing:-1.248000px;}
.ws70{word-spacing:-0.855000px;}
.ws75{word-spacing:-0.741000px;}
.ws7b{word-spacing:-0.684000px;}
.ws44{word-spacing:-0.627000px;}
.ws2{word-spacing:-0.624000px;}
.ws74{word-spacing:-0.576000px;}
.ws14{word-spacing:-0.570000px;}
.ws39{word-spacing:-0.513000px;}
.ws3{word-spacing:-0.342000px;}
.ws1{word-spacing:-0.312000px;}
.ws3b{word-spacing:-0.114000px;}
.ws32{word-spacing:-0.057000px;}
.ws0{word-spacing:0.000000px;}
.ws6f{word-spacing:0.114000px;}
.ws60{word-spacing:0.228000px;}
.ws6a{word-spacing:0.240000px;}
.ws51{word-spacing:0.285000px;}
.ws20{word-spacing:0.399000px;}
.ws10{word-spacing:0.468000px;}
.ws73{word-spacing:0.480000px;}
.ws23{word-spacing:0.513000px;}
.ws1d{word-spacing:0.570000px;}
.ws84{word-spacing:0.627000px;}
.ws81{word-spacing:0.684000px;}
.ws38{word-spacing:0.855000px;}
.ws83{word-spacing:0.912000px;}
.ws87{word-spacing:0.960000px;}
.ws2c{word-spacing:1.083000px;}
.ws49{word-spacing:1.140000px;}
.ws77{word-spacing:1.311000px;}
.ws3f{word-spacing:1.368000px;}
.ws55{word-spacing:1.425000px;}
.ws88{word-spacing:1.440000px;}
.ws5d{word-spacing:1.539000px;}
.ws62{word-spacing:1.824000px;}
.ws30{word-spacing:1.881000px;}
.ws71{word-spacing:1.995000px;}
.wsf{word-spacing:2.166000px;}
.ws24{word-spacing:2.394000px;}
.ws65{word-spacing:2.451000px;}
.ws48{word-spacing:2.508000px;}
.ws1b{word-spacing:2.679000px;}
.ws79{word-spacing:2.736000px;}
.ws36{word-spacing:2.793000px;}
.ws72{word-spacing:2.850000px;}
.ws4f{word-spacing:2.907000px;}
.ws1f{word-spacing:3.021000px;}
.ws4d{word-spacing:3.135000px;}
.ws7f{word-spacing:3.192000px;}
.ws53{word-spacing:3.249000px;}
.ws41{word-spacing:3.534000px;}
.ws22{word-spacing:3.762000px;}
.ws63{word-spacing:3.876000px;}
.wsc{word-spacing:3.933000px;}
.ws5f{word-spacing:4.047000px;}
.ws78{word-spacing:4.104000px;}
.ws37{word-spacing:4.161000px;}
.ws69{word-spacing:4.389000px;}
.ws2b{word-spacing:4.446000px;}
.ws3a{word-spacing:4.503000px;}
.ws7d{word-spacing:4.560000px;}
.ws15{word-spacing:4.731000px;}
.ws50{word-spacing:5.073000px;}
.ws2e{word-spacing:5.130000px;}
.ws47{word-spacing:5.586000px;}
.ws16{word-spacing:5.643000px;}
.ws7a{word-spacing:5.757000px;}
.ws89{word-spacing:5.952000px;}
.ws76{word-spacing:5.985000px;}
.ws5e{word-spacing:6.327000px;}
.ws4b{word-spacing:6.612000px;}
.ws4e{word-spacing:6.783000px;}
.ws1a{word-spacing:6.840000px;}
.ws18{word-spacing:6.897000px;}
.ws2a{word-spacing:6.954000px;}
.ws54{word-spacing:7.239000px;}
.ws21{word-spacing:7.467000px;}
.ws25{word-spacing:7.581000px;}
.ws67{word-spacing:7.638000px;}
.ws40{word-spacing:7.752000px;}
.ws6c{word-spacing:7.923000px;}
.ws3d{word-spacing:8.037000px;}
.ws52{word-spacing:8.379000px;}
.ws2d{word-spacing:8.436000px;}
.ws82{word-spacing:8.664000px;}
.ws19{word-spacing:9.120000px;}
.ws1e{word-spacing:9.177000px;}
.ws64{word-spacing:9.234000px;}
.ws42{word-spacing:9.519000px;}
.ws12{word-spacing:9.975000px;}
.ws11{word-spacing:10.203000px;}
.ws2f{word-spacing:11.457000px;}
.ws61{word-spacing:12.027000px;}
.ws1c{word-spacing:12.825000px;}
.ws28{word-spacing:12.996000px;}
.ws26{word-spacing:14.307000px;}
.ws6d{word-spacing:15.618000px;}
.ws3c{word-spacing:16.929000px;}
.ws17{word-spacing:20.748000px;}
.ws27{word-spacing:21.375000px;}
.ws9{word-spacing:146.718000px;}
.wsd{word-spacing:147.174000px;}
.ws4{word-spacing:150.366000px;}
.ws7e{word-spacing:182.976000px;}
._10{margin-left:-22.059000px;}
._1b{margin-left:-20.088000px;}
._19{margin-left:-14.690700px;}
._12{margin-left:-7.130400px;}
._b{margin-left:-5.306700px;}
._7{margin-left:-3.414300px;}
._9{margin-left:-2.029500px;}
._0{margin-left:-1.020000px;}
._1{width:1.287000px;}
._2{width:2.622000px;}
._5{width:3.876000px;}
._4{width:4.896300px;}
._3{width:6.059100px;}
._c{width:7.598100px;}
._d{width:8.840700px;}
._e{width:9.883800px;}
._a{width:10.955400px;}
._f{width:12.517200px;}
._17{width:13.543200px;}
._15{width:14.597700px;}
._6{width:15.960000px;}
._18{width:19.318500px;}
._11{width:21.156000px;}
._13{width:22.842300px;}
._1c{width:24.716700px;}
._16{width:29.365800px;}
._1d{width:41.136000px;}
._1e{width:44.016000px;}
._1f{width:45.456000px;}
._8{width:146.364600px;}
._1a{width:178.656000px;}
._14{width:183.792000px;}
.fc1{color:rgb(77,197,234);}
.fc0{color:rgb(35,31,32);}
.fs5{font-size:33.231000px;}
.fs4{font-size:42.000000px;}
.fs0{font-size:48.000000px;}
.fs1{font-size:51.000000px;}
.fs3{font-size:57.000000px;}
.fs2{font-size:78.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:30.543300px;}
.y49{bottom:79.782000px;}
.yaa{bottom:80.021550px;}
.y6e{bottom:80.023950px;}
.yd7{bottom:80.456700px;}
.yf4{bottom:80.765100px;}
.y117{bottom:80.846700px;}
.yfd{bottom:81.052950px;}
.y20{bottom:83.200950px;}
.yc7{bottom:83.583600px;}
.y80{bottom:88.815750px;}
.y98{bottom:90.258450px;}
.ya9{bottom:98.019300px;}
.y6d{bottom:98.021700px;}
.y48{bottom:98.079000px;}
.y116{bottom:98.402700px;}
.yd6{bottom:98.454450px;}
.yf3{bottom:98.762850px;}
.yfc{bottom:99.050700px;}
.yc6{bottom:101.139600px;}
.y1f{bottom:101.198700px;}
.y97{bottom:104.658450px;}
.y7f{bottom:106.813500px;}
.y115{bottom:115.958700px;}
.ya8{bottom:116.017050px;}
.y47{bottom:116.376000px;}
.yd5{bottom:116.452200px;}
.yf2{bottom:116.760600px;}
.yfb{bottom:117.048450px;}
.yc5{bottom:118.695600px;}
.y1e{bottom:125.580450px;}
.y7e{bottom:131.195250px;}
.y114{bottom:133.514700px;}
.ya7{bottom:134.014800px;}
.yd4{bottom:134.449950px;}
.y46{bottom:134.673000px;}
.yf1{bottom:134.758350px;}
.yfa{bottom:135.046200px;}
.y1d{bottom:143.578200px;}
.y6c{bottom:146.783550px;}
.y7d{bottom:149.193000px;}
.y113{bottom:151.070700px;}
.ya6{bottom:152.012550px;}
.yd3{bottom:152.447700px;}
.yf0{bottom:152.756100px;}
.y45{bottom:152.970000px;}
.yf9{bottom:153.043950px;}
.y1c{bottom:161.575950px;}
.y7c{bottom:167.190750px;}
.yc4{bottom:167.459100px;}
.y112{bottom:168.626700px;}
.yef{bottom:170.753850px;}
.y44{bottom:171.267000px;}
.ya5{bottom:176.394300px;}
.yd2{bottom:176.829450px;}
.y6b{bottom:177.164550px;}
.y1b{bottom:179.573700px;}
.y13c{bottom:184.529250px;}
.y7b{bottom:185.188500px;}
.yee{bottom:188.751600px;}
.yf8{bottom:192.833100px;}
.y111{bottom:193.008450px;}
.ya4{bottom:194.392050px;}
.yd1{bottom:194.827200px;}
.y6a{bottom:195.162300px;}
.y43{bottom:195.948000px;}
.y1a{bottom:197.571450px;}
.yc3{bottom:197.840100px;}
.y13b{bottom:198.929250px;}
.y7a{bottom:203.186250px;}
.yed{bottom:206.749350px;}
.yf7{bottom:207.233100px;}
.y110{bottom:210.564450px;}
.ya3{bottom:212.389800px;}
.yd0{bottom:212.824950px;}
.y69{bottom:213.160050px;}
.y42{bottom:214.245000px;}
.yc2{bottom:215.396100px;}
.y19{bottom:215.569200px;}
.y13a{bottom:219.713250px;}
.y79{bottom:221.184000px;}
.yf6{bottom:221.633100px;}
.yec{bottom:224.747100px;}
.y10f{bottom:228.120450px;}
.ycf{bottom:230.822700px;}
.y68{bottom:231.157800px;}
.y41{bottom:232.542000px;}
.yc1{bottom:232.952100px;}
.y18{bottom:233.566950px;}
.y139{bottom:234.113250px;}
.ya2{bottom:236.771550px;}
.yeb{bottom:242.744850px;}
.y78{bottom:245.565750px;}
.y10e{bottom:245.676450px;}
.yce{bottom:248.820450px;}
.y67{bottom:249.155550px;}
.yc0{bottom:250.508100px;}
.y40{bottom:250.839000px;}
.y17{bottom:251.564700px;}
.y138{bottom:254.897250px;}
.yea{bottom:260.742600px;}
.y10d{bottom:263.232450px;}
.ycd{bottom:266.818200px;}
.ybf{bottom:268.064100px;}
.y3f{bottom:269.136000px;}
.y137{bottom:275.669250px;}
.y16{bottom:275.946450px;}
.ye9{bottom:278.740350px;}
.y10c{bottom:280.788450px;}
.ya1{bottom:285.520800px;}
.y3e{bottom:287.433000px;}
.y136{bottom:290.069250px;}
.ycc{bottom:291.196050px;}
.y15{bottom:293.944200px;}
.y77{bottom:294.315000px;}
.ye8{bottom:296.738100px;}
.y66{bottom:297.911400px;}
.y10b{bottom:298.344450px;}
.ya0{bottom:303.518550px;}
.y3d{bottom:305.730000px;}
.y135{bottom:310.853250px;}
.y14{bottom:311.941950px;}
.y76{bottom:312.312750px;}
.y10a{bottom:315.900450px;}
.ybe{bottom:318.950850px;}
.y9f{bottom:321.516300px;}
.y3c{bottom:324.027000px;}
.y134{bottom:325.253250px;}
.y13{bottom:329.939700px;}
.y75{bottom:330.310500px;}
.ycb{bottom:335.849850px;}
.ybd{bottom:336.948600px;}
.y9e{bottom:339.514050px;}
.y109{bottom:340.278450px;}
.y3b{bottom:342.324000px;}
.y65{bottom:343.666500px;}
.y133{bottom:346.025250px;}
.y12{bottom:347.937450px;}
.y74{bottom:348.308250px;}
.y9d{bottom:357.511800px;}
.y132{bottom:360.425250px;}
.y3a{bottom:360.621000px;}
.ybc{bottom:363.453600px;}
.y11{bottom:365.935200px;}
.y108{bottom:370.010550px;}
.y73{bottom:372.686100px;}
.y64{bottom:374.047500px;}
.y9c{bottom:375.509550px;}
.y131{bottom:381.209250px;}
.y10{bottom:383.932950px;}
.y39{bottom:385.302000px;}
.ybb{bottom:389.958600px;}
.y63{bottom:392.049750px;}
.y9b{bottom:393.507300px;}
.y107{bottom:394.392300px;}
.y130{bottom:395.609250px;}
.yf{bottom:401.930700px;}
.y96{bottom:403.410600px;}
.yba{bottom:407.956350px;}
.y62{bottom:410.047500px;}
.y9a{bottom:411.505050px;}
.y106{bottom:411.948300px;}
.y12f{bottom:416.381250px;}
.y72{bottom:419.658450px;}
.ye{bottom:419.928450px;}
.y95{bottom:421.408350px;}
.yb9{bottom:425.954100px;}
.y61{bottom:428.052000px;}
.y105{bottom:429.504300px;}
.y12e{bottom:430.781250px;}
.y38{bottom:434.051250px;}
.yd{bottom:437.926200px;}
.y94{bottom:439.406100px;}
.y60{bottom:446.049750px;}
.y104{bottom:447.060300px;}
.y99{bottom:447.126150px;}
.y12d{bottom:451.565250px;}
.y37{bottom:452.348250px;}
.yb8{bottom:452.459100px;}
.y93{bottom:457.403850px;}
.yc{bottom:462.304200px;}
.y5f{bottom:464.047500px;}
.y103{bottom:464.616300px;}
.y12c{bottom:465.965250px;}
.yb7{bottom:470.456850px;}
.y36{bottom:470.645250px;}
.y92{bottom:475.401600px;}
.y12b{bottom:480.365250px;}
.y5e{bottom:482.084850px;}
.y102{bottom:482.172300px;}
.y91{bottom:493.399350px;}
.y12a{bottom:494.765250px;}
.yb6{bottom:494.838600px;}
.y35{bottom:495.323250px;}
.y101{bottom:499.728300px;}
.y5d{bottom:500.082600px;}
.yb5{bottom:512.836350px;}
.y129{bottom:515.549250px;}
.y100{bottom:517.284300px;}
.y90{bottom:517.781100px;}
.y5c{bottom:524.464350px;}
.y128{bottom:529.949250px;}
.yb4{bottom:530.834100px;}
.y8f{bottom:535.778850px;}
.y5b{bottom:542.462100px;}
.yb3{bottom:548.831850px;}
.y34{bottom:549.530100px;}
.y127{bottom:550.733250px;}
.yff{bottom:552.727500px;}
.y8e{bottom:553.776600px;}
.y5a{bottom:560.459850px;}
.yd9{bottom:563.913600px;}
.yb2{bottom:566.829600px;}
.yfe{bottom:567.127500px;}
.y33{bottom:567.827100px;}
.y126{bottom:571.505250px;}
.y8d{bottom:571.774350px;}
.yd8{bottom:578.313600px;}
.y59{bottom:578.457600px;}
.yf5{bottom:583.900500px;}
.yb1{bottom:584.827350px;}
.y125{bottom:585.905250px;}
.y32{bottom:586.124100px;}
.yb{bottom:587.777700px;}
.y8c{bottom:589.772100px;}
.y58{bottom:596.455350px;}
.y124{bottom:600.305250px;}
.yb0{bottom:602.825100px;}
.y31{bottom:604.421100px;}
.y8b{bottom:607.769850px;}
.ye7{bottom:609.197850px;}
.y57{bottom:614.453100px;}
.y123{bottom:621.089250px;}
.ya{bottom:621.892200px;}
.y30{bottom:622.718100px;}
.y8a{bottom:625.767600px;}
.ye6{bottom:627.195600px;}
.yaf{bottom:627.206850px;}
.y56{bottom:632.450850px;}
.y122{bottom:635.489250px;}
.ye5{bottom:645.193350px;}
.yae{bottom:645.204600px;}
.y2f{bottom:647.399100px;}
.y89{bottom:650.149350px;}
.y55{bottom:650.448600px;}
.y9{bottom:656.006700px;}
.y121{bottom:656.273250px;}
.ye4{bottom:663.191100px;}
.yad{bottom:663.202350px;}
.y2e{bottom:665.696100px;}
.y54{bottom:668.446350px;}
.y120{bottom:670.673250px;}
.ye3{bottom:681.188850px;}
.yac{bottom:681.200100px;}
.y2d{bottom:683.993100px;}
.y53{bottom:686.444100px;}
.y8{bottom:690.121200px;}
.y11f{bottom:691.451250px;}
.y88{bottom:698.898600px;}
.ye2{bottom:699.186600px;}
.yab{bottom:699.197850px;}
.y2c{bottom:702.290100px;}
.y71{bottom:705.581850px;}
.y52{bottom:710.825850px;}
.ye1{bottom:717.184350px;}
.y87{bottom:717.195600px;}
.y2b{bottom:720.587100px;}
.y70{bottom:723.579600px;}
.y7{bottom:724.235700px;}
.ye0{bottom:735.182100px;}
.y86{bottom:735.193350px;}
.y2a{bottom:738.884100px;}
.y6f{bottom:741.577350px;}
.y11e{bottom:745.553100px;}
.ydf{bottom:753.179850px;}
.y85{bottom:753.191100px;}
.y29{bottom:757.181100px;}
.y6{bottom:758.350200px;}
.y51{bottom:759.575100px;}
.y11d{bottom:763.109100px;}
.yde{bottom:771.177600px;}
.y84{bottom:771.188850px;}
.y28{bottom:775.478100px;}
.y50{bottom:777.572850px;}
.y11c{bottom:780.665100px;}
.ydd{bottom:789.175350px;}
.y83{bottom:789.186600px;}
.y27{bottom:793.775100px;}
.y4f{bottom:795.570600px;}
.y11b{bottom:798.221100px;}
.y82{bottom:807.184350px;}
.y26{bottom:812.072100px;}
.ydc{bottom:813.559350px;}
.y4e{bottom:813.568350px;}
.y11a{bottom:815.777100px;}
.y81{bottom:825.182100px;}
.y25{bottom:830.369100px;}
.ydb{bottom:831.559350px;}
.y4d{bottom:831.566100px;}
.y119{bottom:833.333100px;}
.yca{bottom:838.601400px;}
.y5{bottom:842.040450px;}
.y24{bottom:848.666100px;}
.yda{bottom:849.559350px;}
.y4c{bottom:849.563850px;}
.y118{bottom:850.889100px;}
.y23{bottom:866.963100px;}
.y4b{bottom:867.561600px;}
.yc9{bottom:868.445100px;}
.y4{bottom:876.148350px;}
.y22{bottom:885.260100px;}
.y4a{bottom:885.559350px;}
.yc8{bottom:886.001100px;}
.y3{bottom:899.548350px;}
.y21{bottom:903.557100px;}
.y2{bottom:955.116600px;}
.h2{height:36.576000px;}
.h3{height:38.862000px;}
.h9{height:42.144000px;}
.h7{height:42.465000px;}
.h5{height:43.434000px;}
.ha{height:50.028000px;}
.h6{height:50.046000px;}
.h8{height:50.049000px;}
.h4{height:59.436000px;}
.h1{height:999.000000px;}
.h0{height:999.213000px;}
.w0{width:659.055000px;}
.w1{width:659.250000px;}
.x0{left:0.000000px;}
.x7{left:59.527500px;}
.x6{left:68.037600px;}
.x8{left:72.283500px;}
.x2{left:80.787450px;}
.xb{left:88.027650px;}
.x9{left:89.035950px;}
.x5{left:123.740850px;}
.x3{left:164.192250px;}
.x4{left:239.267250px;}
.xa{left:587.047800px;}
.x1{left:593.287650px;}
@media print{
.v1{vertical-align:-10.807467pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:10.666667pt;}
.v3{vertical-align:16.872000pt;}
.ls1a{letter-spacing:-3.882667pt;}
.ls7{letter-spacing:-3.496000pt;}
.ls5{letter-spacing:-2.330667pt;}
.ls9{letter-spacing:-1.925333pt;}
.ls24{letter-spacing:-1.280000pt;}
.ls10{letter-spacing:-1.216000pt;}
.ls12{letter-spacing:-1.013333pt;}
.ls8{letter-spacing:-0.912000pt;}
.ls23{letter-spacing:-0.853333pt;}
.ls13{letter-spacing:-0.760000pt;}
.lsb{letter-spacing:-0.506667pt;}
.ls1e{letter-spacing:-0.426667pt;}
.ls1b{letter-spacing:-0.213333pt;}
.lsa{letter-spacing:-0.208000pt;}
.ls1c{letter-spacing:-0.138667pt;}
.ls1{letter-spacing:0.000000pt;}
.ls15{letter-spacing:0.000043pt;}
.ls14{letter-spacing:0.004267pt;}
.lse{letter-spacing:0.004800pt;}
.ls16{letter-spacing:0.008000pt;}
.ls1d{letter-spacing:0.012267pt;}
.ls17{letter-spacing:0.023467pt;}
.lsd{letter-spacing:0.041067pt;}
.ls1f{letter-spacing:0.085333pt;}
.ls2{letter-spacing:0.277333pt;}
.ls4{letter-spacing:0.304000pt;}
.ls0{letter-spacing:0.506667pt;}
.ls20{letter-spacing:0.512000pt;}
.ls3{letter-spacing:0.554667pt;}
.ls11{letter-spacing:0.682667pt;}
.ls21{letter-spacing:0.725333pt;}
.ls18{letter-spacing:0.760000pt;}
.ls19{letter-spacing:0.810667pt;}
.lsc{letter-spacing:1.013333pt;}
.ls22{letter-spacing:1.109333pt;}
.ls6{letter-spacing:2.482667pt;}
.lsf{letter-spacing:19.608000pt;}
.ws33{word-spacing:-70.274667pt;}
.ws34{word-spacing:-50.666667pt;}
.ws5b{word-spacing:-42.256000pt;}
.ws56{word-spacing:-39.499733pt;}
.ws57{word-spacing:-39.494667pt;}
.ws35{word-spacing:-37.333333pt;}
.ws58{word-spacing:-36.946133pt;}
.ws68{word-spacing:-25.501867pt;}
.ws59{word-spacing:-14.997333pt;}
.ws31{word-spacing:-11.050667pt;}
.wse{word-spacing:-10.488000pt;}
.ws5a{word-spacing:-8.743445pt;}
.ws8{word-spacing:-8.258667pt;}
.wsb{word-spacing:-8.106667pt;}
.wsa{word-spacing:-5.928000pt;}
.ws5{word-spacing:-5.370667pt;}
.ws66{word-spacing:-3.698667pt;}
.ws86{word-spacing:-2.773333pt;}
.ws6e{word-spacing:-2.736000pt;}
.ws6b{word-spacing:-2.704000pt;}
.ws80{word-spacing:-2.584000pt;}
.ws6{word-spacing:-2.482667pt;}
.ws3e{word-spacing:-2.432000pt;}
.ws7{word-spacing:-2.381333pt;}
.ws4c{word-spacing:-2.280000pt;}
.ws5c{word-spacing:-2.178667pt;}
.ws13{word-spacing:-2.077333pt;}
.ws7c{word-spacing:-1.773333pt;}
.ws29{word-spacing:-1.520000pt;}
.ws4a{word-spacing:-1.418667pt;}
.ws85{word-spacing:-1.216000pt;}
.ws46{word-spacing:-1.165333pt;}
.ws45{word-spacing:-1.114667pt;}
.ws43{word-spacing:-1.109333pt;}
.ws70{word-spacing:-0.760000pt;}
.ws75{word-spacing:-0.658667pt;}
.ws7b{word-spacing:-0.608000pt;}
.ws44{word-spacing:-0.557333pt;}
.ws2{word-spacing:-0.554667pt;}
.ws74{word-spacing:-0.512000pt;}
.ws14{word-spacing:-0.506667pt;}
.ws39{word-spacing:-0.456000pt;}
.ws3{word-spacing:-0.304000pt;}
.ws1{word-spacing:-0.277333pt;}
.ws3b{word-spacing:-0.101333pt;}
.ws32{word-spacing:-0.050667pt;}
.ws0{word-spacing:0.000000pt;}
.ws6f{word-spacing:0.101333pt;}
.ws60{word-spacing:0.202667pt;}
.ws6a{word-spacing:0.213333pt;}
.ws51{word-spacing:0.253333pt;}
.ws20{word-spacing:0.354667pt;}
.ws10{word-spacing:0.416000pt;}
.ws73{word-spacing:0.426667pt;}
.ws23{word-spacing:0.456000pt;}
.ws1d{word-spacing:0.506667pt;}
.ws84{word-spacing:0.557333pt;}
.ws81{word-spacing:0.608000pt;}
.ws38{word-spacing:0.760000pt;}
.ws83{word-spacing:0.810667pt;}
.ws87{word-spacing:0.853333pt;}
.ws2c{word-spacing:0.962667pt;}
.ws49{word-spacing:1.013333pt;}
.ws77{word-spacing:1.165333pt;}
.ws3f{word-spacing:1.216000pt;}
.ws55{word-spacing:1.266667pt;}
.ws88{word-spacing:1.280000pt;}
.ws5d{word-spacing:1.368000pt;}
.ws62{word-spacing:1.621333pt;}
.ws30{word-spacing:1.672000pt;}
.ws71{word-spacing:1.773333pt;}
.wsf{word-spacing:1.925333pt;}
.ws24{word-spacing:2.128000pt;}
.ws65{word-spacing:2.178667pt;}
.ws48{word-spacing:2.229333pt;}
.ws1b{word-spacing:2.381333pt;}
.ws79{word-spacing:2.432000pt;}
.ws36{word-spacing:2.482667pt;}
.ws72{word-spacing:2.533333pt;}
.ws4f{word-spacing:2.584000pt;}
.ws1f{word-spacing:2.685333pt;}
.ws4d{word-spacing:2.786667pt;}
.ws7f{word-spacing:2.837333pt;}
.ws53{word-spacing:2.888000pt;}
.ws41{word-spacing:3.141333pt;}
.ws22{word-spacing:3.344000pt;}
.ws63{word-spacing:3.445333pt;}
.wsc{word-spacing:3.496000pt;}
.ws5f{word-spacing:3.597333pt;}
.ws78{word-spacing:3.648000pt;}
.ws37{word-spacing:3.698667pt;}
.ws69{word-spacing:3.901333pt;}
.ws2b{word-spacing:3.952000pt;}
.ws3a{word-spacing:4.002667pt;}
.ws7d{word-spacing:4.053333pt;}
.ws15{word-spacing:4.205333pt;}
.ws50{word-spacing:4.509333pt;}
.ws2e{word-spacing:4.560000pt;}
.ws47{word-spacing:4.965333pt;}
.ws16{word-spacing:5.016000pt;}
.ws7a{word-spacing:5.117333pt;}
.ws89{word-spacing:5.290667pt;}
.ws76{word-spacing:5.320000pt;}
.ws5e{word-spacing:5.624000pt;}
.ws4b{word-spacing:5.877333pt;}
.ws4e{word-spacing:6.029333pt;}
.ws1a{word-spacing:6.080000pt;}
.ws18{word-spacing:6.130667pt;}
.ws2a{word-spacing:6.181333pt;}
.ws54{word-spacing:6.434667pt;}
.ws21{word-spacing:6.637333pt;}
.ws25{word-spacing:6.738667pt;}
.ws67{word-spacing:6.789333pt;}
.ws40{word-spacing:6.890667pt;}
.ws6c{word-spacing:7.042667pt;}
.ws3d{word-spacing:7.144000pt;}
.ws52{word-spacing:7.448000pt;}
.ws2d{word-spacing:7.498667pt;}
.ws82{word-spacing:7.701333pt;}
.ws19{word-spacing:8.106667pt;}
.ws1e{word-spacing:8.157333pt;}
.ws64{word-spacing:8.208000pt;}
.ws42{word-spacing:8.461333pt;}
.ws12{word-spacing:8.866667pt;}
.ws11{word-spacing:9.069333pt;}
.ws2f{word-spacing:10.184000pt;}
.ws61{word-spacing:10.690667pt;}
.ws1c{word-spacing:11.400000pt;}
.ws28{word-spacing:11.552000pt;}
.ws26{word-spacing:12.717333pt;}
.ws6d{word-spacing:13.882667pt;}
.ws3c{word-spacing:15.048000pt;}
.ws17{word-spacing:18.442667pt;}
.ws27{word-spacing:19.000000pt;}
.ws9{word-spacing:130.416000pt;}
.wsd{word-spacing:130.821333pt;}
.ws4{word-spacing:133.658667pt;}
.ws7e{word-spacing:162.645333pt;}
._10{margin-left:-19.608000pt;}
._1b{margin-left:-17.856000pt;}
._19{margin-left:-13.058400pt;}
._12{margin-left:-6.338133pt;}
._b{margin-left:-4.717067pt;}
._7{margin-left:-3.034933pt;}
._9{margin-left:-1.804000pt;}
._0{margin-left:-0.906667pt;}
._1{width:1.144000pt;}
._2{width:2.330667pt;}
._5{width:3.445333pt;}
._4{width:4.352267pt;}
._3{width:5.385867pt;}
._c{width:6.753867pt;}
._d{width:7.858400pt;}
._e{width:8.785600pt;}
._a{width:9.738133pt;}
._f{width:11.126400pt;}
._17{width:12.038400pt;}
._15{width:12.975733pt;}
._6{width:14.186667pt;}
._18{width:17.172000pt;}
._11{width:18.805333pt;}
._13{width:20.304267pt;}
._1c{width:21.970400pt;}
._16{width:26.102933pt;}
._1d{width:36.565333pt;}
._1e{width:39.125333pt;}
._1f{width:40.405333pt;}
._8{width:130.101867pt;}
._1a{width:158.805333pt;}
._14{width:163.370667pt;}
.fs5{font-size:29.538667pt;}
.fs4{font-size:37.333333pt;}
.fs0{font-size:42.666667pt;}
.fs1{font-size:45.333333pt;}
.fs3{font-size:50.666667pt;}
.fs2{font-size:69.333333pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:27.149600pt;}
.y49{bottom:70.917333pt;}
.yaa{bottom:71.130267pt;}
.y6e{bottom:71.132400pt;}
.yd7{bottom:71.517067pt;}
.yf4{bottom:71.791200pt;}
.y117{bottom:71.863733pt;}
.yfd{bottom:72.047067pt;}
.y20{bottom:73.956400pt;}
.yc7{bottom:74.296533pt;}
.y80{bottom:78.947333pt;}
.y98{bottom:80.229733pt;}
.ya9{bottom:87.128267pt;}
.y6d{bottom:87.130400pt;}
.y48{bottom:87.181333pt;}
.y116{bottom:87.469067pt;}
.yd6{bottom:87.515067pt;}
.yf3{bottom:87.789200pt;}
.yfc{bottom:88.045067pt;}
.yc6{bottom:89.901867pt;}
.y1f{bottom:89.954400pt;}
.y97{bottom:93.029733pt;}
.y7f{bottom:94.945333pt;}
.y115{bottom:103.074400pt;}
.ya8{bottom:103.126267pt;}
.y47{bottom:103.445333pt;}
.yd5{bottom:103.513067pt;}
.yf2{bottom:103.787200pt;}
.yfb{bottom:104.043067pt;}
.yc5{bottom:105.507200pt;}
.y1e{bottom:111.627067pt;}
.y7e{bottom:116.618000pt;}
.y114{bottom:118.679733pt;}
.ya7{bottom:119.124267pt;}
.yd4{bottom:119.511067pt;}
.y46{bottom:119.709333pt;}
.yf1{bottom:119.785200pt;}
.yfa{bottom:120.041067pt;}
.y1d{bottom:127.625067pt;}
.y6c{bottom:130.474267pt;}
.y7d{bottom:132.616000pt;}
.y113{bottom:134.285067pt;}
.ya6{bottom:135.122267pt;}
.yd3{bottom:135.509067pt;}
.yf0{bottom:135.783200pt;}
.y45{bottom:135.973333pt;}
.yf9{bottom:136.039067pt;}
.y1c{bottom:143.623067pt;}
.y7c{bottom:148.614000pt;}
.yc4{bottom:148.852533pt;}
.y112{bottom:149.890400pt;}
.yef{bottom:151.781200pt;}
.y44{bottom:152.237333pt;}
.ya5{bottom:156.794933pt;}
.yd2{bottom:157.181733pt;}
.y6b{bottom:157.479600pt;}
.y1b{bottom:159.621067pt;}
.y13c{bottom:164.026000pt;}
.y7b{bottom:164.612000pt;}
.yee{bottom:167.779200pt;}
.yf8{bottom:171.407200pt;}
.y111{bottom:171.563067pt;}
.ya4{bottom:172.792933pt;}
.yd1{bottom:173.179733pt;}
.y6a{bottom:173.477600pt;}
.y43{bottom:174.176000pt;}
.y1a{bottom:175.619067pt;}
.yc3{bottom:175.857867pt;}
.y13b{bottom:176.826000pt;}
.y7a{bottom:180.610000pt;}
.yed{bottom:183.777200pt;}
.yf7{bottom:184.207200pt;}
.y110{bottom:187.168400pt;}
.ya3{bottom:188.790933pt;}
.yd0{bottom:189.177733pt;}
.y69{bottom:189.475600pt;}
.y42{bottom:190.440000pt;}
.yc2{bottom:191.463200pt;}
.y19{bottom:191.617067pt;}
.y13a{bottom:195.300667pt;}
.y79{bottom:196.608000pt;}
.yf6{bottom:197.007200pt;}
.yec{bottom:199.775200pt;}
.y10f{bottom:202.773733pt;}
.ycf{bottom:205.175733pt;}
.y68{bottom:205.473600pt;}
.y41{bottom:206.704000pt;}
.yc1{bottom:207.068533pt;}
.y18{bottom:207.615067pt;}
.y139{bottom:208.100667pt;}
.ya2{bottom:210.463600pt;}
.yeb{bottom:215.773200pt;}
.y78{bottom:218.280667pt;}
.y10e{bottom:218.379067pt;}
.yce{bottom:221.173733pt;}
.y67{bottom:221.471600pt;}
.yc0{bottom:222.673867pt;}
.y40{bottom:222.968000pt;}
.y17{bottom:223.613067pt;}
.y138{bottom:226.575333pt;}
.yea{bottom:231.771200pt;}
.y10d{bottom:233.984400pt;}
.ycd{bottom:237.171733pt;}
.ybf{bottom:238.279200pt;}
.y3f{bottom:239.232000pt;}
.y137{bottom:245.039333pt;}
.y16{bottom:245.285733pt;}
.ye9{bottom:247.769200pt;}
.y10c{bottom:249.589733pt;}
.ya1{bottom:253.796267pt;}
.y3e{bottom:255.496000pt;}
.y136{bottom:257.839333pt;}
.ycc{bottom:258.840933pt;}
.y15{bottom:261.283733pt;}
.y77{bottom:261.613333pt;}
.ye8{bottom:263.767200pt;}
.y66{bottom:264.810133pt;}
.y10b{bottom:265.195067pt;}
.ya0{bottom:269.794267pt;}
.y3d{bottom:271.760000pt;}
.y135{bottom:276.314000pt;}
.y14{bottom:277.281733pt;}
.y76{bottom:277.611333pt;}
.y10a{bottom:280.800400pt;}
.ybe{bottom:283.511867pt;}
.y9f{bottom:285.792267pt;}
.y3c{bottom:288.024000pt;}
.y134{bottom:289.114000pt;}
.y13{bottom:293.279733pt;}
.y75{bottom:293.609333pt;}
.ycb{bottom:298.533200pt;}
.ybd{bottom:299.509867pt;}
.y9e{bottom:301.790267pt;}
.y109{bottom:302.469733pt;}
.y3b{bottom:304.288000pt;}
.y65{bottom:305.481333pt;}
.y133{bottom:307.578000pt;}
.y12{bottom:309.277733pt;}
.y74{bottom:309.607333pt;}
.y9d{bottom:317.788267pt;}
.y132{bottom:320.378000pt;}
.y3a{bottom:320.552000pt;}
.ybc{bottom:323.069867pt;}
.y11{bottom:325.275733pt;}
.y108{bottom:328.898267pt;}
.y73{bottom:331.276533pt;}
.y64{bottom:332.486667pt;}
.y9c{bottom:333.786267pt;}
.y131{bottom:338.852667pt;}
.y10{bottom:341.273733pt;}
.y39{bottom:342.490667pt;}
.ybb{bottom:346.629867pt;}
.y63{bottom:348.488667pt;}
.y9b{bottom:349.784267pt;}
.y107{bottom:350.570933pt;}
.y130{bottom:351.652667pt;}
.yf{bottom:357.271733pt;}
.y96{bottom:358.587200pt;}
.yba{bottom:362.627867pt;}
.y62{bottom:364.486667pt;}
.y9a{bottom:365.782267pt;}
.y106{bottom:366.176267pt;}
.y12f{bottom:370.116667pt;}
.y72{bottom:373.029733pt;}
.ye{bottom:373.269733pt;}
.y95{bottom:374.585200pt;}
.yb9{bottom:378.625867pt;}
.y61{bottom:380.490667pt;}
.y105{bottom:381.781600pt;}
.y12e{bottom:382.916667pt;}
.y38{bottom:385.823333pt;}
.yd{bottom:389.267733pt;}
.y94{bottom:390.583200pt;}
.y60{bottom:396.488667pt;}
.y104{bottom:397.386933pt;}
.y99{bottom:397.445467pt;}
.y12d{bottom:401.391333pt;}
.y37{bottom:402.087333pt;}
.yb8{bottom:402.185867pt;}
.y93{bottom:406.581200pt;}
.yc{bottom:410.937067pt;}
.y5f{bottom:412.486667pt;}
.y103{bottom:412.992267pt;}
.y12c{bottom:414.191333pt;}
.yb7{bottom:418.183867pt;}
.y36{bottom:418.351333pt;}
.y92{bottom:422.579200pt;}
.y12b{bottom:426.991333pt;}
.y5e{bottom:428.519867pt;}
.y102{bottom:428.597600pt;}
.y91{bottom:438.577200pt;}
.y12a{bottom:439.791333pt;}
.yb6{bottom:439.856533pt;}
.y35{bottom:440.287333pt;}
.y101{bottom:444.202933pt;}
.y5d{bottom:444.517867pt;}
.yb5{bottom:455.854533pt;}
.y129{bottom:458.266000pt;}
.y100{bottom:459.808267pt;}
.y90{bottom:460.249867pt;}
.y5c{bottom:466.190533pt;}
.y128{bottom:471.066000pt;}
.yb4{bottom:471.852533pt;}
.y8f{bottom:476.247867pt;}
.y5b{bottom:482.188533pt;}
.yb3{bottom:487.850533pt;}
.y34{bottom:488.471200pt;}
.y127{bottom:489.540667pt;}
.yff{bottom:491.313333pt;}
.y8e{bottom:492.245867pt;}
.y5a{bottom:498.186533pt;}
.yd9{bottom:501.256533pt;}
.yb2{bottom:503.848533pt;}
.yfe{bottom:504.113333pt;}
.y33{bottom:504.735200pt;}
.y126{bottom:508.004667pt;}
.y8d{bottom:508.243867pt;}
.yd8{bottom:514.056533pt;}
.y59{bottom:514.184533pt;}
.yf5{bottom:519.022667pt;}
.yb1{bottom:519.846533pt;}
.y125{bottom:520.804667pt;}
.y32{bottom:520.999200pt;}
.yb{bottom:522.469067pt;}
.y8c{bottom:524.241867pt;}
.y58{bottom:530.182533pt;}
.y124{bottom:533.604667pt;}
.yb0{bottom:535.844533pt;}
.y31{bottom:537.263200pt;}
.y8b{bottom:540.239867pt;}
.ye7{bottom:541.509200pt;}
.y57{bottom:546.180533pt;}
.y123{bottom:552.079333pt;}
.ya{bottom:552.793067pt;}
.y30{bottom:553.527200pt;}
.y8a{bottom:556.237867pt;}
.ye6{bottom:557.507200pt;}
.yaf{bottom:557.517200pt;}
.y56{bottom:562.178533pt;}
.y122{bottom:564.879333pt;}
.ye5{bottom:573.505200pt;}
.yae{bottom:573.515200pt;}
.y2f{bottom:575.465867pt;}
.y89{bottom:577.910533pt;}
.y55{bottom:578.176533pt;}
.y9{bottom:583.117067pt;}
.y121{bottom:583.354000pt;}
.ye4{bottom:589.503200pt;}
.yad{bottom:589.513200pt;}
.y2e{bottom:591.729867pt;}
.y54{bottom:594.174533pt;}
.y120{bottom:596.154000pt;}
.ye3{bottom:605.501200pt;}
.yac{bottom:605.511200pt;}
.y2d{bottom:607.993867pt;}
.y53{bottom:610.172533pt;}
.y8{bottom:613.441067pt;}
.y11f{bottom:614.623333pt;}
.y88{bottom:621.243200pt;}
.ye2{bottom:621.499200pt;}
.yab{bottom:621.509200pt;}
.y2c{bottom:624.257867pt;}
.y71{bottom:627.183867pt;}
.y52{bottom:631.845200pt;}
.ye1{bottom:637.497200pt;}
.y87{bottom:637.507200pt;}
.y2b{bottom:640.521867pt;}
.y70{bottom:643.181867pt;}
.y7{bottom:643.765067pt;}
.ye0{bottom:653.495200pt;}
.y86{bottom:653.505200pt;}
.y2a{bottom:656.785867pt;}
.y6f{bottom:659.179867pt;}
.y11e{bottom:662.713867pt;}
.ydf{bottom:669.493200pt;}
.y85{bottom:669.503200pt;}
.y29{bottom:673.049867pt;}
.y6{bottom:674.089067pt;}
.y51{bottom:675.177867pt;}
.y11d{bottom:678.319200pt;}
.yde{bottom:685.491200pt;}
.y84{bottom:685.501200pt;}
.y28{bottom:689.313867pt;}
.y50{bottom:691.175867pt;}
.y11c{bottom:693.924533pt;}
.ydd{bottom:701.489200pt;}
.y83{bottom:701.499200pt;}
.y27{bottom:705.577867pt;}
.y4f{bottom:707.173867pt;}
.y11b{bottom:709.529867pt;}
.y82{bottom:717.497200pt;}
.y26{bottom:721.841867pt;}
.ydc{bottom:723.163867pt;}
.y4e{bottom:723.171867pt;}
.y11a{bottom:725.135200pt;}
.y81{bottom:733.495200pt;}
.y25{bottom:738.105867pt;}
.ydb{bottom:739.163867pt;}
.y4d{bottom:739.169867pt;}
.y119{bottom:740.740533pt;}
.yca{bottom:745.423467pt;}
.y5{bottom:748.480400pt;}
.y24{bottom:754.369867pt;}
.yda{bottom:755.163867pt;}
.y4c{bottom:755.167867pt;}
.y118{bottom:756.345867pt;}
.y23{bottom:770.633867pt;}
.y4b{bottom:771.165867pt;}
.yc9{bottom:771.951200pt;}
.y4{bottom:778.798533pt;}
.y22{bottom:786.897867pt;}
.y4a{bottom:787.163867pt;}
.yc8{bottom:787.556533pt;}
.y3{bottom:799.598533pt;}
.y21{bottom:803.161867pt;}
.y2{bottom:848.992533pt;}
.h2{height:32.512000pt;}
.h3{height:34.544000pt;}
.h9{height:37.461333pt;}
.h7{height:37.746667pt;}
.h5{height:38.608000pt;}
.ha{height:44.469333pt;}
.h6{height:44.485333pt;}
.h8{height:44.488000pt;}
.h4{height:52.832000pt;}
.h1{height:888.000000pt;}
.h0{height:888.189333pt;}
.w0{width:585.826667pt;}
.w1{width:586.000000pt;}
.x0{left:0.000000pt;}
.x7{left:52.913333pt;}
.x6{left:60.477867pt;}
.x8{left:64.252000pt;}
.x2{left:71.811067pt;}
.xb{left:78.246800pt;}
.x9{left:79.143067pt;}
.x5{left:109.991867pt;}
.x3{left:145.948667pt;}
.x4{left:212.682000pt;}
.xa{left:521.820267pt;}
.x1{left:527.366800pt;}
}


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