
/* 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_0de72789db8f.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_88fc801c9c96.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_9bec78f89a29.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_0baee52af844.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_1ebd21300b45.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_ddb8cfdd1500.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_7ddbbc020abf.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_0739d71dd5cf.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_4c735af6c686.woff")format("woff");}.ff9{font-family:ff9;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:ffa;src:url("fonts/font_0009_2c4701d886d4.woff")format("woff");}.ffa{font-family:ffa;line-height:0.990000;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_d8e287031286.woff")format("woff");}.ffb{font-family:ffb;line-height:0.964000;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_f73ab6c0598b.woff")format("woff");}.ffc{font-family:ffc;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:ffd;src:url("fonts/font_0012_7e97d5e729e2.woff")format("woff");}.ffd{font-family:ffd;line-height:0.945000;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_710b580ff470.woff")format("woff");}.ffe{font-family:ffe;line-height:0.964000;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);}
.v2{vertical-align:-18.984000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:18.654000px;}
.ls1a{letter-spacing:-1.512000px;}
.ls24{letter-spacing:-0.969000px;}
.ls25{letter-spacing:-0.798000px;}
.ls2{letter-spacing:-0.660000px;}
.ls29{letter-spacing:-0.627000px;}
.ls21{letter-spacing:-0.570000px;}
.ls12{letter-spacing:-0.513000px;}
.ls28{letter-spacing:-0.456000px;}
.ls11{letter-spacing:-0.432000px;}
.lsf{letter-spacing:-0.399000px;}
.ls26{letter-spacing:-0.342000px;}
.lsc{letter-spacing:-0.228000px;}
.ls0{letter-spacing:0.000000px;}
.ls16{letter-spacing:0.001332px;}
.lsd{letter-spacing:0.001356px;}
.ls19{letter-spacing:0.002064px;}
.ls1e{letter-spacing:0.004560px;}
.ls1c{letter-spacing:0.057000px;}
.ls20{letter-spacing:0.090000px;}
.ls10{letter-spacing:0.180000px;}
.ls15{letter-spacing:0.285000px;}
.lse{letter-spacing:0.420000px;}
.lsb{letter-spacing:0.480000px;}
.ls1d{letter-spacing:0.504000px;}
.ls14{letter-spacing:0.513000px;}
.ls18{letter-spacing:0.570000px;}
.ls5{letter-spacing:0.588000px;}
.ls1b{letter-spacing:0.627000px;}
.ls7{letter-spacing:0.684000px;}
.ls4{letter-spacing:0.720000px;}
.ls8{letter-spacing:0.756000px;}
.ls1f{letter-spacing:0.792000px;}
.ls23{letter-spacing:0.864000px;}
.ls17{letter-spacing:1.008000px;}
.ls27{letter-spacing:1.080000px;}
.ls13{letter-spacing:1.152000px;}
.ls3{letter-spacing:1.200000px;}
.lsa{letter-spacing:1.296000px;}
.ls6{letter-spacing:1.425000px;}
.ls22{letter-spacing:1.428000px;}
.ls1{letter-spacing:1.440000px;}
.ls9{letter-spacing:1.512000px;}
.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;}
}
.ws5{word-spacing:-29.184000px;}
.ws17{word-spacing:-29.013000px;}
.ws18{word-spacing:-28.785000px;}
.ws1c{word-spacing:-28.557000px;}
.ws27{word-spacing:-28.158000px;}
.wsf{word-spacing:-28.101000px;}
.ws29{word-spacing:-28.044000px;}
.ws2a{word-spacing:-27.873000px;}
.ws0{word-spacing:-25.014000px;}
.ws6{word-spacing:-17.220000px;}
.ws22{word-spacing:-17.136000px;}
.ws21{word-spacing:-16.464000px;}
.ws3{word-spacing:-16.296000px;}
.ws4{word-spacing:-15.504000px;}
.wsc{word-spacing:-14.760000px;}
.ws16{word-spacing:-14.616000px;}
.ws24{word-spacing:-14.328000px;}
.ws20{word-spacing:-14.256000px;}
.ws13{word-spacing:-13.032000px;}
.ws14{word-spacing:-11.970000px;}
.ws1a{word-spacing:-11.952000px;}
.ws1b{word-spacing:-11.457000px;}
.ws26{word-spacing:-11.172000px;}
.ws25{word-spacing:-11.001000px;}
.ws8{word-spacing:-1.200000px;}
.wsb{word-spacing:-0.912000px;}
.ws1e{word-spacing:-0.855000px;}
.ws11{word-spacing:-0.684000px;}
.wsd{word-spacing:-0.480000px;}
.ws10{word-spacing:-0.420000px;}
.ws15{word-spacing:-0.342000px;}
.ws9{word-spacing:-0.285000px;}
.ws12{word-spacing:-0.180000px;}
.ws2{word-spacing:-0.084000px;}
.ws1d{word-spacing:-0.057000px;}
.ws1{word-spacing:0.000000px;}
.wsa{word-spacing:0.084000px;}
.ws23{word-spacing:0.228000px;}
.ws7{word-spacing:0.660000px;}
.wse{word-spacing:51.516000px;}
.ws28{word-spacing:52.380000px;}
.ws19{word-spacing:52.524000px;}
.ws1f{word-spacing:53.532000px;}
._8{margin-left:-836.466000px;}
._13{margin-left:-835.458000px;}
._b{margin-left:-833.010000px;}
._11{margin-left:-830.850000px;}
._5{margin-left:-7.560000px;}
._e{margin-left:-5.020977px;}
._7{margin-left:-3.903561px;}
._3{margin-left:-2.370000px;}
._2{margin-left:-1.218000px;}
._1{width:1.036200px;}
._0{width:2.039400px;}
._4{width:3.163200px;}
._12{width:5.085015px;}
._10{width:36.946800px;}
._d{width:38.969415px;}
._f{width:40.005585px;}
._a{width:44.055585px;}
._c{width:47.376648px;}
._9{width:51.277761px;}
._6{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;}
.fs9{font-size:33.228000px;}
.fsa{font-size:45.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;}
.ye0{bottom:72.461700px;}
.y17c{bottom:72.466200px;}
.y8f{bottom:72.469200px;}
.y161{bottom:72.541500px;}
.yba{bottom:72.586500px;}
.yf{bottom:80.200500px;}
.ydf{bottom:84.466200px;}
.y17b{bottom:84.469200px;}
.y8e{bottom:84.472500px;}
.y3c{bottom:84.486000px;}
.y6a{bottom:84.517500px;}
.y12b{bottom:90.469200px;}
.y19c{bottom:90.519000px;}
.y160{bottom:90.538500px;}
.yfd{bottom:90.568500px;}
.yb9{bottom:90.583500px;}
.y1c0{bottom:90.594000px;}
.yde{bottom:96.469200px;}
.y17a{bottom:96.472500px;}
.ye{bottom:100.825500px;}
.y12a{bottom:102.472500px;}
.y3b{bottom:102.484500px;}
.y69{bottom:102.514500px;}
.ydd{bottom:108.472500px;}
.y19b{bottom:108.516000px;}
.y15f{bottom:108.537000px;}
.yfc{bottom:108.565500px;}
.yb8{bottom:108.580500px;}
.y1bf{bottom:108.591000px;}
.y3a{bottom:120.481500px;}
.y68{bottom:120.511500px;}
.y8d{bottom:120.514500px;}
.y1db{bottom:120.589500px;}
.yd{bottom:121.450500px;}
.y142{bottom:126.508500px;}
.y15e{bottom:126.534000px;}
.yfb{bottom:126.562500px;}
.yb7{bottom:126.577500px;}
.y19a{bottom:132.513000px;}
.y179{bottom:132.543000px;}
.y1be{bottom:132.588000px;}
.y39{bottom:138.478500px;}
.y67{bottom:138.508500px;}
.y8c{bottom:138.511500px;}
.ydc{bottom:138.523500px;}
.yc{bottom:142.075500px;}
.y141{bottom:144.505500px;}
.y129{bottom:144.507000px;}
.y15d{bottom:144.531000px;}
.yfa{bottom:144.559500px;}
.y1da{bottom:144.586500px;}
.y199{bottom:150.510000px;}
.y178{bottom:150.540000px;}
.yb6{bottom:150.574500px;}
.y1bd{bottom:150.585000px;}
.y38{bottom:156.475500px;}
.y66{bottom:156.505500px;}
.ydb{bottom:156.520500px;}
.y140{bottom:162.502500px;}
.y128{bottom:162.504000px;}
.y8b{bottom:162.508500px;}
.y15c{bottom:162.528000px;}
.yf9{bottom:162.558000px;}
.y1d9{bottom:162.583500px;}
.y198{bottom:168.507000px;}
.y177{bottom:168.537000px;}
.yb5{bottom:168.571500px;}
.y37{bottom:174.472500px;}
.y65{bottom:174.504000px;}
.yda{bottom:174.517500px;}
.y1bc{bottom:174.582000px;}
.y13f{bottom:180.499500px;}
.y127{bottom:180.501000px;}
.y8a{bottom:180.505500px;}
.y15b{bottom:180.525000px;}
.yf8{bottom:180.555000px;}
.y176{bottom:186.534000px;}
.yb4{bottom:186.568500px;}
.y1d8{bottom:186.580500px;}
.y64{bottom:192.501000px;}
.y197{bottom:192.504000px;}
.yd9{bottom:192.514500px;}
.y1bb{bottom:192.579000px;}
.y36{bottom:198.469500px;}
.y13e{bottom:198.496500px;}
.y126{bottom:198.498000px;}
.y89{bottom:198.504000px;}
.y15a{bottom:198.522000px;}
.yf7{bottom:198.552000px;}
.y175{bottom:204.532500px;}
.yb3{bottom:204.565500px;}
.y1d7{bottom:204.577500px;}
.yb{bottom:210.015000px;}
.y63{bottom:210.498000px;}
.y196{bottom:210.501000px;}
.yd8{bottom:210.511500px;}
.y1ba{bottom:210.576000px;}
.y125{bottom:216.495000px;}
.y88{bottom:216.501000px;}
.y159{bottom:216.520500px;}
.yf6{bottom:216.549000px;}
.y13d{bottom:216.583500px;}
.y35{bottom:222.472500px;}
.y174{bottom:222.529500px;}
.yb2{bottom:222.564000px;}
.y62{bottom:228.495000px;}
.yd7{bottom:228.508500px;}
.y1b9{bottom:228.573000px;}
.y1d6{bottom:228.574500px;}
.ya{bottom:230.523000px;}
.y87{bottom:234.498000px;}
.y158{bottom:234.517500px;}
.y124{bottom:234.537000px;}
.yf5{bottom:234.546000px;}
.y13c{bottom:234.580500px;}
.y173{bottom:240.526500px;}
.yb1{bottom:240.561000px;}
.y61{bottom:246.492000px;}
.y1d5{bottom:246.571500px;}
.y9{bottom:251.131500px;}
.y86{bottom:252.495000px;}
.yd6{bottom:252.505500px;}
.y157{bottom:252.514500px;}
.y123{bottom:252.534000px;}
.yf4{bottom:252.543000px;}
.y1b8{bottom:252.570000px;}
.y13b{bottom:252.577500px;}
.y172{bottom:258.523500px;}
.yb0{bottom:258.558000px;}
.y60{bottom:264.489000px;}
.y34{bottom:264.544500px;}
.y85{bottom:270.492000px;}
.yd5{bottom:270.502500px;}
.y156{bottom:270.511500px;}
.y122{bottom:270.531000px;}
.yf3{bottom:270.540000px;}
.y1b7{bottom:270.567000px;}
.y1d4{bottom:270.568500px;}
.y13a{bottom:270.576000px;}
.y8{bottom:271.740000px;}
.y195{bottom:276.492000px;}
.y171{bottom:276.520500px;}
.y5f{bottom:282.487500px;}
.y33{bottom:282.543000px;}
.yaf{bottom:282.555000px;}
.yd4{bottom:288.499500px;}
.y155{bottom:288.508500px;}
.y121{bottom:288.528000px;}
.yf2{bottom:288.538500px;}
.y1d3{bottom:288.565500px;}
.y84{bottom:288.571500px;}
.y139{bottom:288.573000px;}
.y7{bottom:292.348500px;}
.y194{bottom:294.489000px;}
.y170{bottom:294.517500px;}
.y1b6{bottom:294.564000px;}
.y5e{bottom:300.484500px;}
.y32{bottom:300.540000px;}
.yae{bottom:300.552000px;}
.yd3{bottom:306.496500px;}
.y154{bottom:306.505500px;}
.y120{bottom:306.525000px;}
.yf1{bottom:306.535500px;}
.y83{bottom:306.568500px;}
.y138{bottom:306.570000px;}
.y16f{bottom:312.516000px;}
.y1b5{bottom:312.561000px;}
.y1d2{bottom:312.562500px;}
.y6{bottom:312.957000px;}
.y5d{bottom:318.481500px;}
.y193{bottom:318.486000px;}
.y31{bottom:318.537000px;}
.yad{bottom:318.549000px;}
.yd2{bottom:324.495000px;}
.y153{bottom:324.504000px;}
.y11f{bottom:324.523500px;}
.yf0{bottom:324.532500px;}
.y82{bottom:324.565500px;}
.y16e{bottom:330.513000px;}
.y1b4{bottom:330.558000px;}
.y1d1{bottom:330.559500px;}
.y137{bottom:330.567000px;}
.y5{bottom:333.453000px;}
.y5c{bottom:336.478500px;}
.y192{bottom:336.483000px;}
.y30{bottom:336.534000px;}
.yac{bottom:336.546000px;}
.yd1{bottom:342.492000px;}
.y152{bottom:342.501000px;}
.y11e{bottom:342.520500px;}
.yef{bottom:342.529500px;}
.y81{bottom:342.562500px;}
.y16d{bottom:348.510000px;}
.y1d0{bottom:348.558000px;}
.y136{bottom:348.564000px;}
.y5b{bottom:354.475500px;}
.y2f{bottom:354.531000px;}
.yab{bottom:354.544500px;}
.y1b3{bottom:354.555000px;}
.y191{bottom:360.480000px;}
.yd0{bottom:360.489000px;}
.y151{bottom:360.498000px;}
.y11d{bottom:360.517500px;}
.yee{bottom:360.526500px;}
.y80{bottom:360.559500px;}
.y16c{bottom:366.507000px;}
.y135{bottom:366.561000px;}
.y5a{bottom:372.472500px;}
.y1b2{bottom:372.553500px;}
.y1cf{bottom:372.555000px;}
.y11{bottom:374.313000px;}
.y190{bottom:378.477000px;}
.ycf{bottom:378.486000px;}
.y150{bottom:378.495000px;}
.y11c{bottom:378.514500px;}
.yed{bottom:378.523500px;}
.y2e{bottom:378.528000px;}
.yaa{bottom:378.541500px;}
.y7f{bottom:378.558000px;}
.y16b{bottom:384.504000px;}
.y134{bottom:384.558000px;}
.y1b1{bottom:390.550500px;}
.y1ce{bottom:390.552000px;}
.y59{bottom:396.472500px;}
.y18f{bottom:396.475500px;}
.yce{bottom:396.483000px;}
.y14f{bottom:396.492000px;}
.y11b{bottom:396.511500px;}
.yec{bottom:396.522000px;}
.y2d{bottom:396.525000px;}
.ya9{bottom:396.540000px;}
.y7e{bottom:396.555000px;}
.y16a{bottom:402.501000px;}
.y133{bottom:402.555000px;}
.y1cd{bottom:408.549000px;}
.ycd{bottom:414.480000px;}
.y14e{bottom:414.489000px;}
.y11a{bottom:414.508500px;}
.yeb{bottom:414.519000px;}
.y2c{bottom:414.522000px;}
.ya8{bottom:414.537000px;}
.y1b0{bottom:414.547500px;}
.y18e{bottom:420.472500px;}
.y169{bottom:420.499500px;}
.y7d{bottom:420.552000px;}
.y14d{bottom:432.487500px;}
.y119{bottom:432.507000px;}
.yea{bottom:432.516000px;}
.y2b{bottom:432.520500px;}
.ya7{bottom:432.534000px;}
.y1af{bottom:432.544500px;}
.y1cc{bottom:432.546000px;}
.y168{bottom:438.496500px;}
.ycc{bottom:438.516000px;}
.y58{bottom:438.549000px;}
.y18d{bottom:444.472500px;}
.y132{bottom:444.549000px;}
.y14c{bottom:450.484500px;}
.y118{bottom:450.504000px;}
.ye9{bottom:450.513000px;}
.y2a{bottom:450.517500px;}
.ya6{bottom:450.531000px;}
.y1cb{bottom:450.543000px;}
.y167{bottom:456.493500px;}
.ycb{bottom:456.514500px;}
.y1ae{bottom:456.541500px;}
.y57{bottom:456.546000px;}
.y131{bottom:462.546000px;}
.y14b{bottom:468.481500px;}
.y117{bottom:468.501000px;}
.ye8{bottom:468.510000px;}
.y29{bottom:468.514500px;}
.ya5{bottom:468.528000px;}
.y166{bottom:474.490500px;}
.yca{bottom:474.511500px;}
.y1ad{bottom:474.538500px;}
.y1ca{bottom:474.540000px;}
.y7c{bottom:474.543000px;}
.y56{bottom:474.544500px;}
.y130{bottom:480.543000px;}
.y14a{bottom:486.478500px;}
.y116{bottom:486.498000px;}
.ye7{bottom:486.507000px;}
.y28{bottom:486.511500px;}
.ya4{bottom:486.525000px;}
.y18c{bottom:486.537000px;}
.y165{bottom:492.487500px;}
.yc9{bottom:492.508500px;}
.y1ac{bottom:492.535500px;}
.y1c9{bottom:492.537000px;}
.y7b{bottom:492.540000px;}
.y55{bottom:492.541500px;}
.y12f{bottom:498.540000px;}
.y149{bottom:504.475500px;}
.y115{bottom:504.495000px;}
.ye6{bottom:504.505500px;}
.y27{bottom:504.508500px;}
.ya3{bottom:504.523500px;}
.y18b{bottom:504.534000px;}
.yc8{bottom:510.505500px;}
.y7a{bottom:510.537000px;}
.y54{bottom:510.538500px;}
.y1ab{bottom:516.532500px;}
.y1c8{bottom:516.534000px;}
.y12e{bottom:516.537000px;}
.y148{bottom:522.472500px;}
.y114{bottom:522.493500px;}
.ye5{bottom:522.504000px;}
.y26{bottom:522.505500px;}
.ya2{bottom:522.520500px;}
.y18a{bottom:522.531000px;}
.yc7{bottom:528.502500px;}
.y53{bottom:528.535500px;}
.y1aa{bottom:534.529500px;}
.y1c7{bottom:534.531000px;}
.y12d{bottom:534.534000px;}
.y113{bottom:540.490500px;}
.ye4{bottom:540.501000px;}
.y25{bottom:540.504000px;}
.ya1{bottom:540.517500px;}
.y189{bottom:540.529500px;}
.y147{bottom:546.472500px;}
.yc6{bottom:546.499500px;}
.y52{bottom:546.532500px;}
.y1a9{bottom:552.526500px;}
.y12c{bottom:552.532500px;}
.y112{bottom:558.487500px;}
.ye3{bottom:558.498000px;}
.y24{bottom:558.501000px;}
.ya0{bottom:558.514500px;}
.y188{bottom:558.526500px;}
.y1c6{bottom:558.528000px;}
.yc5{bottom:564.498000px;}
.y79{bottom:564.529500px;}
.y164{bottom:564.531000px;}
.y1a8{bottom:570.523500px;}
.y51{bottom:570.529500px;}
.y111{bottom:576.484500px;}
.ye2{bottom:576.495000px;}
.y23{bottom:576.498000px;}
.y187{bottom:576.523500px;}
.y1c5{bottom:576.525000px;}
.yc4{bottom:582.495000px;}
.y9f{bottom:582.511500px;}
.y78{bottom:582.526500px;}
.y163{bottom:582.528000px;}
.y1a7{bottom:588.522000px;}
.y50{bottom:588.526500px;}
.y146{bottom:588.528000px;}
.y110{bottom:594.481500px;}
.ye1{bottom:594.492000px;}
.y22{bottom:594.495000px;}
.y186{bottom:594.520500px;}
.y1c4{bottom:594.522000px;}
.yc3{bottom:600.492000px;}
.y9e{bottom:600.508500px;}
.y77{bottom:600.523500px;}
.y162{bottom:600.525000px;}
.y4f{bottom:606.523500px;}
.y145{bottom:606.525000px;}
.y185{bottom:612.517500px;}
.y1a6{bottom:612.519000px;}
.yc2{bottom:618.489000px;}
.y21{bottom:618.492000px;}
.y9d{bottom:618.505500px;}
.y10f{bottom:618.519000px;}
.y76{bottom:618.522000px;}
.y4e{bottom:624.520500px;}
.y144{bottom:624.522000px;}
.y184{bottom:630.514500px;}
.y1a5{bottom:630.517500px;}
.yc1{bottom:636.486000px;}
.y20{bottom:636.489000px;}
.y9c{bottom:636.504000px;}
.y10e{bottom:636.516000px;}
.y75{bottom:636.519000px;}
.y4d{bottom:642.517500px;}
.y143{bottom:642.519000px;}
.y183{bottom:648.513000px;}
.yc0{bottom:654.484500px;}
.y1f{bottom:654.486000px;}
.y9b{bottom:654.501000px;}
.y10d{bottom:654.513000px;}
.y1a4{bottom:654.514500px;}
.y74{bottom:654.516000px;}
.y4c{bottom:660.516000px;}
.y182{bottom:666.510000px;}
.ybf{bottom:672.481500px;}
.y1e{bottom:672.484500px;}
.y9a{bottom:672.498000px;}
.y10c{bottom:672.510000px;}
.y1a3{bottom:672.511500px;}
.y4b{bottom:678.513000px;}
.y181{bottom:684.507000px;}
.ybe{bottom:690.478500px;}
.y1d{bottom:690.481500px;}
.y99{bottom:690.495000px;}
.y10b{bottom:690.507000px;}
.y1c3{bottom:696.507000px;}
.y1a2{bottom:696.508500px;}
.y4a{bottom:696.510000px;}
.y180{bottom:702.504000px;}
.ybd{bottom:708.475500px;}
.y1c{bottom:708.478500px;}
.y98{bottom:708.492000px;}
.y10a{bottom:708.505500px;}
.y1c2{bottom:714.505500px;}
.y49{bottom:714.507000px;}
.y1a1{bottom:720.505500px;}
.ybc{bottom:726.472500px;}
.y1b{bottom:726.475500px;}
.y97{bottom:726.489000px;}
.y17f{bottom:726.501000px;}
.y109{bottom:726.502500px;}
.y48{bottom:732.504000px;}
.y1a0{bottom:738.502500px;}
.y1a{bottom:744.472500px;}
.y96{bottom:744.487500px;}
.y17e{bottom:744.498000px;}
.y108{bottom:744.499500px;}
.ybb{bottom:750.472500px;}
.y73{bottom:750.501000px;}
.y4{bottom:751.939500px;}
.y1c1{bottom:756.499500px;}
.y47{bottom:756.501000px;}
.y95{bottom:762.484500px;}
.y17d{bottom:762.495000px;}
.y107{bottom:762.496500px;}
.y19f{bottom:762.499500px;}
.y19{bottom:768.472500px;}
.y72{bottom:768.499500px;}
.y46{bottom:774.498000px;}
.y3{bottom:774.924000px;}
.y94{bottom:780.481500px;}
.y106{bottom:780.493500px;}
.y19e{bottom:780.496500px;}
.y71{bottom:786.496500px;}
.y45{bottom:792.495000px;}
.y93{bottom:798.478500px;}
.y105{bottom:798.490500px;}
.y19d{bottom:798.493500px;}
.y70{bottom:804.493500px;}
.y44{bottom:810.493500px;}
.y92{bottom:816.475500px;}
.y104{bottom:816.487500px;}
.y6f{bottom:822.490500px;}
.y43{bottom:828.490500px;}
.y91{bottom:834.472500px;}
.y103{bottom:834.484500px;}
.y18{bottom:840.478500px;}
.y6e{bottom:840.487500px;}
.y42{bottom:846.487500px;}
.y102{bottom:852.481500px;}
.y90{bottom:858.472500px;}
.y6d{bottom:858.484500px;}
.y17{bottom:864.472500px;}
.y41{bottom:864.484500px;}
.y101{bottom:870.478500px;}
.y6c{bottom:876.481500px;}
.y40{bottom:882.481500px;}
.y13{bottom:886.339500px;}
.y16{bottom:888.472500px;}
.y100{bottom:888.475500px;}
.y6b{bottom:894.478500px;}
.y3f{bottom:900.478500px;}
.yff{bottom:906.472500px;}
.y3e{bottom:918.475500px;}
.y12{bottom:922.339500px;}
.yfe{bottom:930.472500px;}
.y3d{bottom:936.472500px;}
.y15{bottom:936.504000px;}
.y2{bottom:966.889500px;}
.y14{bottom:972.472500px;}
.y1{bottom:1008.166500px;}
.h6{height:5.796000px;}
.h10{height:31.500000px;}
.hf{height:37.125000px;}
.h11{height:39.900000px;}
.h4{height:46.398000px;}
.he{height:46.695000px;}
.h5{height:46.992000px;}
.hc{height:47.025000px;}
.ha{height:58.824000px;}
.h2{height:68.352000px;}
.hd{height:68.628000px;}
.h7{height:85.440000px;}
.hb{height:98.040000px;}
.h3{height:101.232000px;}
.h8{height:1020.472500px;}
.h9{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:29.640000px;}
.x7{left:59.553450px;}
.x6{left:61.651500px;}
.x1{left:68.032500px;}
.x8{left:78.666450px;}
.x9{left:95.668500px;}
.xb{left:167.952000px;}
.xc{left:184.966500px;}
.x5{left:440.797500px;}
.xa{left:678.189000px;}
.x3{left:745.473000px;}
@media print{
.v2{vertical-align:-16.874667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.581333pt;}
.ls1a{letter-spacing:-1.344000pt;}
.ls24{letter-spacing:-0.861333pt;}
.ls25{letter-spacing:-0.709333pt;}
.ls2{letter-spacing:-0.586667pt;}
.ls29{letter-spacing:-0.557333pt;}
.ls21{letter-spacing:-0.506667pt;}
.ls12{letter-spacing:-0.456000pt;}
.ls28{letter-spacing:-0.405333pt;}
.ls11{letter-spacing:-0.384000pt;}
.lsf{letter-spacing:-0.354667pt;}
.ls26{letter-spacing:-0.304000pt;}
.lsc{letter-spacing:-0.202667pt;}
.ls0{letter-spacing:0.000000pt;}
.ls16{letter-spacing:0.001184pt;}
.lsd{letter-spacing:0.001205pt;}
.ls19{letter-spacing:0.001835pt;}
.ls1e{letter-spacing:0.004053pt;}
.ls1c{letter-spacing:0.050667pt;}
.ls20{letter-spacing:0.080000pt;}
.ls10{letter-spacing:0.160000pt;}
.ls15{letter-spacing:0.253333pt;}
.lse{letter-spacing:0.373333pt;}
.lsb{letter-spacing:0.426667pt;}
.ls1d{letter-spacing:0.448000pt;}
.ls14{letter-spacing:0.456000pt;}
.ls18{letter-spacing:0.506667pt;}
.ls5{letter-spacing:0.522667pt;}
.ls1b{letter-spacing:0.557333pt;}
.ls7{letter-spacing:0.608000pt;}
.ls4{letter-spacing:0.640000pt;}
.ls8{letter-spacing:0.672000pt;}
.ls1f{letter-spacing:0.704000pt;}
.ls23{letter-spacing:0.768000pt;}
.ls17{letter-spacing:0.896000pt;}
.ls27{letter-spacing:0.960000pt;}
.ls13{letter-spacing:1.024000pt;}
.ls3{letter-spacing:1.066667pt;}
.lsa{letter-spacing:1.152000pt;}
.ls6{letter-spacing:1.266667pt;}
.ls22{letter-spacing:1.269333pt;}
.ls1{letter-spacing:1.280000pt;}
.ls9{letter-spacing:1.344000pt;}
.ws5{word-spacing:-25.941333pt;}
.ws17{word-spacing:-25.789333pt;}
.ws18{word-spacing:-25.586667pt;}
.ws1c{word-spacing:-25.384000pt;}
.ws27{word-spacing:-25.029333pt;}
.wsf{word-spacing:-24.978667pt;}
.ws29{word-spacing:-24.928000pt;}
.ws2a{word-spacing:-24.776000pt;}
.ws0{word-spacing:-22.234667pt;}
.ws6{word-spacing:-15.306667pt;}
.ws22{word-spacing:-15.232000pt;}
.ws21{word-spacing:-14.634667pt;}
.ws3{word-spacing:-14.485333pt;}
.ws4{word-spacing:-13.781333pt;}
.wsc{word-spacing:-13.120000pt;}
.ws16{word-spacing:-12.992000pt;}
.ws24{word-spacing:-12.736000pt;}
.ws20{word-spacing:-12.672000pt;}
.ws13{word-spacing:-11.584000pt;}
.ws14{word-spacing:-10.640000pt;}
.ws1a{word-spacing:-10.624000pt;}
.ws1b{word-spacing:-10.184000pt;}
.ws26{word-spacing:-9.930667pt;}
.ws25{word-spacing:-9.778667pt;}
.ws8{word-spacing:-1.066667pt;}
.wsb{word-spacing:-0.810667pt;}
.ws1e{word-spacing:-0.760000pt;}
.ws11{word-spacing:-0.608000pt;}
.wsd{word-spacing:-0.426667pt;}
.ws10{word-spacing:-0.373333pt;}
.ws15{word-spacing:-0.304000pt;}
.ws9{word-spacing:-0.253333pt;}
.ws12{word-spacing:-0.160000pt;}
.ws2{word-spacing:-0.074667pt;}
.ws1d{word-spacing:-0.050667pt;}
.ws1{word-spacing:0.000000pt;}
.wsa{word-spacing:0.074667pt;}
.ws23{word-spacing:0.202667pt;}
.ws7{word-spacing:0.586667pt;}
.wse{word-spacing:45.792000pt;}
.ws28{word-spacing:46.560000pt;}
.ws19{word-spacing:46.688000pt;}
.ws1f{word-spacing:47.584000pt;}
._8{margin-left:-743.525333pt;}
._13{margin-left:-742.629333pt;}
._b{margin-left:-740.453333pt;}
._11{margin-left:-738.533333pt;}
._5{margin-left:-6.720000pt;}
._e{margin-left:-4.463091pt;}
._7{margin-left:-3.469832pt;}
._3{margin-left:-2.106667pt;}
._2{margin-left:-1.082667pt;}
._1{width:0.921067pt;}
._0{width:1.812800pt;}
._4{width:2.811733pt;}
._12{width:4.520013pt;}
._10{width:32.841600pt;}
._d{width:34.639480pt;}
._f{width:35.560520pt;}
._a{width:39.160520pt;}
._c{width:42.112576pt;}
._9{width:45.580232pt;}
._6{width:56.741333pt;}
.fs3{font-size:5.333333pt;}
.fs9{font-size:29.536000pt;}
.fsa{font-size:40.000000pt;}
.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;}
.ye0{bottom:64.410400pt;}
.y17c{bottom:64.414400pt;}
.y8f{bottom:64.417067pt;}
.y161{bottom:64.481333pt;}
.yba{bottom:64.521333pt;}
.yf{bottom:71.289333pt;}
.ydf{bottom:75.081067pt;}
.y17b{bottom:75.083733pt;}
.y8e{bottom:75.086667pt;}
.y3c{bottom:75.098667pt;}
.y6a{bottom:75.126667pt;}
.y12b{bottom:80.417067pt;}
.y19c{bottom:80.461333pt;}
.y160{bottom:80.478667pt;}
.yfd{bottom:80.505333pt;}
.yb9{bottom:80.518667pt;}
.y1c0{bottom:80.528000pt;}
.yde{bottom:85.750400pt;}
.y17a{bottom:85.753333pt;}
.ye{bottom:89.622667pt;}
.y12a{bottom:91.086667pt;}
.y3b{bottom:91.097333pt;}
.y69{bottom:91.124000pt;}
.ydd{bottom:96.420000pt;}
.y19b{bottom:96.458667pt;}
.y15f{bottom:96.477333pt;}
.yfc{bottom:96.502667pt;}
.yb8{bottom:96.516000pt;}
.y1bf{bottom:96.525333pt;}
.y3a{bottom:107.094667pt;}
.y68{bottom:107.121333pt;}
.y8d{bottom:107.124000pt;}
.y1db{bottom:107.190667pt;}
.yd{bottom:107.956000pt;}
.y142{bottom:112.452000pt;}
.y15e{bottom:112.474667pt;}
.yfb{bottom:112.500000pt;}
.yb7{bottom:112.513333pt;}
.y19a{bottom:117.789333pt;}
.y179{bottom:117.816000pt;}
.y1be{bottom:117.856000pt;}
.y39{bottom:123.092000pt;}
.y67{bottom:123.118667pt;}
.y8c{bottom:123.121333pt;}
.ydc{bottom:123.132000pt;}
.yc{bottom:126.289333pt;}
.y141{bottom:128.449333pt;}
.y129{bottom:128.450667pt;}
.y15d{bottom:128.472000pt;}
.yfa{bottom:128.497333pt;}
.y1da{bottom:128.521333pt;}
.y199{bottom:133.786667pt;}
.y178{bottom:133.813333pt;}
.yb6{bottom:133.844000pt;}
.y1bd{bottom:133.853333pt;}
.y38{bottom:139.089333pt;}
.y66{bottom:139.116000pt;}
.ydb{bottom:139.129333pt;}
.y140{bottom:144.446667pt;}
.y128{bottom:144.448000pt;}
.y8b{bottom:144.452000pt;}
.y15c{bottom:144.469333pt;}
.yf9{bottom:144.496000pt;}
.y1d9{bottom:144.518667pt;}
.y198{bottom:149.784000pt;}
.y177{bottom:149.810667pt;}
.yb5{bottom:149.841333pt;}
.y37{bottom:155.086667pt;}
.y65{bottom:155.114667pt;}
.yda{bottom:155.126667pt;}
.y1bc{bottom:155.184000pt;}
.y13f{bottom:160.444000pt;}
.y127{bottom:160.445333pt;}
.y8a{bottom:160.449333pt;}
.y15b{bottom:160.466667pt;}
.yf8{bottom:160.493333pt;}
.y176{bottom:165.808000pt;}
.yb4{bottom:165.838667pt;}
.y1d8{bottom:165.849333pt;}
.y64{bottom:171.112000pt;}
.y197{bottom:171.114667pt;}
.yd9{bottom:171.124000pt;}
.y1bb{bottom:171.181333pt;}
.y36{bottom:176.417333pt;}
.y13e{bottom:176.441333pt;}
.y126{bottom:176.442667pt;}
.y89{bottom:176.448000pt;}
.y15a{bottom:176.464000pt;}
.yf7{bottom:176.490667pt;}
.y175{bottom:181.806667pt;}
.yb3{bottom:181.836000pt;}
.y1d7{bottom:181.846667pt;}
.yb{bottom:186.680000pt;}
.y63{bottom:187.109333pt;}
.y196{bottom:187.112000pt;}
.yd8{bottom:187.121333pt;}
.y1ba{bottom:187.178667pt;}
.y125{bottom:192.440000pt;}
.y88{bottom:192.445333pt;}
.y159{bottom:192.462667pt;}
.yf6{bottom:192.488000pt;}
.y13d{bottom:192.518667pt;}
.y35{bottom:197.753333pt;}
.y174{bottom:197.804000pt;}
.yb2{bottom:197.834667pt;}
.y62{bottom:203.106667pt;}
.yd7{bottom:203.118667pt;}
.y1b9{bottom:203.176000pt;}
.y1d6{bottom:203.177333pt;}
.ya{bottom:204.909333pt;}
.y87{bottom:208.442667pt;}
.y158{bottom:208.460000pt;}
.y124{bottom:208.477333pt;}
.yf5{bottom:208.485333pt;}
.y13c{bottom:208.516000pt;}
.y173{bottom:213.801333pt;}
.yb1{bottom:213.832000pt;}
.y61{bottom:219.104000pt;}
.y1d5{bottom:219.174667pt;}
.y9{bottom:223.228000pt;}
.y86{bottom:224.440000pt;}
.yd6{bottom:224.449333pt;}
.y157{bottom:224.457333pt;}
.y123{bottom:224.474667pt;}
.yf4{bottom:224.482667pt;}
.y1b8{bottom:224.506667pt;}
.y13b{bottom:224.513333pt;}
.y172{bottom:229.798667pt;}
.yb0{bottom:229.829333pt;}
.y60{bottom:235.101333pt;}
.y34{bottom:235.150667pt;}
.y85{bottom:240.437333pt;}
.yd5{bottom:240.446667pt;}
.y156{bottom:240.454667pt;}
.y122{bottom:240.472000pt;}
.yf3{bottom:240.480000pt;}
.y1b7{bottom:240.504000pt;}
.y1d4{bottom:240.505333pt;}
.y13a{bottom:240.512000pt;}
.y8{bottom:241.546667pt;}
.y195{bottom:245.770667pt;}
.y171{bottom:245.796000pt;}
.y5f{bottom:251.100000pt;}
.y33{bottom:251.149333pt;}
.yaf{bottom:251.160000pt;}
.yd4{bottom:256.444000pt;}
.y155{bottom:256.452000pt;}
.y121{bottom:256.469333pt;}
.yf2{bottom:256.478667pt;}
.y1d3{bottom:256.502667pt;}
.y84{bottom:256.508000pt;}
.y139{bottom:256.509333pt;}
.y7{bottom:259.865333pt;}
.y194{bottom:261.768000pt;}
.y170{bottom:261.793333pt;}
.y1b6{bottom:261.834667pt;}
.y5e{bottom:267.097333pt;}
.y32{bottom:267.146667pt;}
.yae{bottom:267.157333pt;}
.yd3{bottom:272.441333pt;}
.y154{bottom:272.449333pt;}
.y120{bottom:272.466667pt;}
.yf1{bottom:272.476000pt;}
.y83{bottom:272.505333pt;}
.y138{bottom:272.506667pt;}
.y16f{bottom:277.792000pt;}
.y1b5{bottom:277.832000pt;}
.y1d2{bottom:277.833333pt;}
.y6{bottom:278.184000pt;}
.y5d{bottom:283.094667pt;}
.y193{bottom:283.098667pt;}
.y31{bottom:283.144000pt;}
.yad{bottom:283.154667pt;}
.yd2{bottom:288.440000pt;}
.y153{bottom:288.448000pt;}
.y11f{bottom:288.465333pt;}
.yf0{bottom:288.473333pt;}
.y82{bottom:288.502667pt;}
.y16e{bottom:293.789333pt;}
.y1b4{bottom:293.829333pt;}
.y1d1{bottom:293.830667pt;}
.y137{bottom:293.837333pt;}
.y5{bottom:296.402667pt;}
.y5c{bottom:299.092000pt;}
.y192{bottom:299.096000pt;}
.y30{bottom:299.141333pt;}
.yac{bottom:299.152000pt;}
.yd1{bottom:304.437333pt;}
.y152{bottom:304.445333pt;}
.y11e{bottom:304.462667pt;}
.yef{bottom:304.470667pt;}
.y81{bottom:304.500000pt;}
.y16d{bottom:309.786667pt;}
.y1d0{bottom:309.829333pt;}
.y136{bottom:309.834667pt;}
.y5b{bottom:315.089333pt;}
.y2f{bottom:315.138667pt;}
.yab{bottom:315.150667pt;}
.y1b3{bottom:315.160000pt;}
.y191{bottom:320.426667pt;}
.yd0{bottom:320.434667pt;}
.y151{bottom:320.442667pt;}
.y11d{bottom:320.460000pt;}
.yee{bottom:320.468000pt;}
.y80{bottom:320.497333pt;}
.y16c{bottom:325.784000pt;}
.y135{bottom:325.832000pt;}
.y5a{bottom:331.086667pt;}
.y1b2{bottom:331.158667pt;}
.y1cf{bottom:331.160000pt;}
.y11{bottom:332.722667pt;}
.y190{bottom:336.424000pt;}
.ycf{bottom:336.432000pt;}
.y150{bottom:336.440000pt;}
.y11c{bottom:336.457333pt;}
.yed{bottom:336.465333pt;}
.y2e{bottom:336.469333pt;}
.yaa{bottom:336.481333pt;}
.y7f{bottom:336.496000pt;}
.y16b{bottom:341.781333pt;}
.y134{bottom:341.829333pt;}
.y1b1{bottom:347.156000pt;}
.y1ce{bottom:347.157333pt;}
.y59{bottom:352.420000pt;}
.y18f{bottom:352.422667pt;}
.yce{bottom:352.429333pt;}
.y14f{bottom:352.437333pt;}
.y11b{bottom:352.454667pt;}
.yec{bottom:352.464000pt;}
.y2d{bottom:352.466667pt;}
.ya9{bottom:352.480000pt;}
.y7e{bottom:352.493333pt;}
.y16a{bottom:357.778667pt;}
.y133{bottom:357.826667pt;}
.y1cd{bottom:363.154667pt;}
.ycd{bottom:368.426667pt;}
.y14e{bottom:368.434667pt;}
.y11a{bottom:368.452000pt;}
.yeb{bottom:368.461333pt;}
.y2c{bottom:368.464000pt;}
.ya8{bottom:368.477333pt;}
.y1b0{bottom:368.486667pt;}
.y18e{bottom:373.753333pt;}
.y169{bottom:373.777333pt;}
.y7d{bottom:373.824000pt;}
.y14d{bottom:384.433333pt;}
.y119{bottom:384.450667pt;}
.yea{bottom:384.458667pt;}
.y2b{bottom:384.462667pt;}
.ya7{bottom:384.474667pt;}
.y1af{bottom:384.484000pt;}
.y1cc{bottom:384.485333pt;}
.y168{bottom:389.774667pt;}
.ycc{bottom:389.792000pt;}
.y58{bottom:389.821333pt;}
.y18d{bottom:395.086667pt;}
.y132{bottom:395.154667pt;}
.y14c{bottom:400.430667pt;}
.y118{bottom:400.448000pt;}
.ye9{bottom:400.456000pt;}
.y2a{bottom:400.460000pt;}
.ya6{bottom:400.472000pt;}
.y1cb{bottom:400.482667pt;}
.y167{bottom:405.772000pt;}
.ycb{bottom:405.790667pt;}
.y1ae{bottom:405.814667pt;}
.y57{bottom:405.818667pt;}
.y131{bottom:411.152000pt;}
.y14b{bottom:416.428000pt;}
.y117{bottom:416.445333pt;}
.ye8{bottom:416.453333pt;}
.y29{bottom:416.457333pt;}
.ya5{bottom:416.469333pt;}
.y166{bottom:421.769333pt;}
.yca{bottom:421.788000pt;}
.y1ad{bottom:421.812000pt;}
.y1ca{bottom:421.813333pt;}
.y7c{bottom:421.816000pt;}
.y56{bottom:421.817333pt;}
.y130{bottom:427.149333pt;}
.y14a{bottom:432.425333pt;}
.y116{bottom:432.442667pt;}
.ye7{bottom:432.450667pt;}
.y28{bottom:432.454667pt;}
.ya4{bottom:432.466667pt;}
.y18c{bottom:432.477333pt;}
.y165{bottom:437.766667pt;}
.yc9{bottom:437.785333pt;}
.y1ac{bottom:437.809333pt;}
.y1c9{bottom:437.810667pt;}
.y7b{bottom:437.813333pt;}
.y55{bottom:437.814667pt;}
.y12f{bottom:443.146667pt;}
.y149{bottom:448.422667pt;}
.y115{bottom:448.440000pt;}
.ye6{bottom:448.449333pt;}
.y27{bottom:448.452000pt;}
.ya3{bottom:448.465333pt;}
.y18b{bottom:448.474667pt;}
.yc8{bottom:453.782667pt;}
.y7a{bottom:453.810667pt;}
.y54{bottom:453.812000pt;}
.y1ab{bottom:459.140000pt;}
.y1c8{bottom:459.141333pt;}
.y12e{bottom:459.144000pt;}
.y148{bottom:464.420000pt;}
.y114{bottom:464.438667pt;}
.ye5{bottom:464.448000pt;}
.y26{bottom:464.449333pt;}
.ya2{bottom:464.462667pt;}
.y18a{bottom:464.472000pt;}
.yc7{bottom:469.780000pt;}
.y53{bottom:469.809333pt;}
.y1aa{bottom:475.137333pt;}
.y1c7{bottom:475.138667pt;}
.y12d{bottom:475.141333pt;}
.y113{bottom:480.436000pt;}
.ye4{bottom:480.445333pt;}
.y25{bottom:480.448000pt;}
.ya1{bottom:480.460000pt;}
.y189{bottom:480.470667pt;}
.y147{bottom:485.753333pt;}
.yc6{bottom:485.777333pt;}
.y52{bottom:485.806667pt;}
.y1a9{bottom:491.134667pt;}
.y12c{bottom:491.140000pt;}
.y112{bottom:496.433333pt;}
.ye3{bottom:496.442667pt;}
.y24{bottom:496.445333pt;}
.ya0{bottom:496.457333pt;}
.y188{bottom:496.468000pt;}
.y1c6{bottom:496.469333pt;}
.yc5{bottom:501.776000pt;}
.y79{bottom:501.804000pt;}
.y164{bottom:501.805333pt;}
.y1a8{bottom:507.132000pt;}
.y51{bottom:507.137333pt;}
.y111{bottom:512.430667pt;}
.ye2{bottom:512.440000pt;}
.y23{bottom:512.442667pt;}
.y187{bottom:512.465333pt;}
.y1c5{bottom:512.466667pt;}
.yc4{bottom:517.773333pt;}
.y9f{bottom:517.788000pt;}
.y78{bottom:517.801333pt;}
.y163{bottom:517.802667pt;}
.y1a7{bottom:523.130667pt;}
.y50{bottom:523.134667pt;}
.y146{bottom:523.136000pt;}
.y110{bottom:528.428000pt;}
.ye1{bottom:528.437333pt;}
.y22{bottom:528.440000pt;}
.y186{bottom:528.462667pt;}
.y1c4{bottom:528.464000pt;}
.yc3{bottom:533.770667pt;}
.y9e{bottom:533.785333pt;}
.y77{bottom:533.798667pt;}
.y162{bottom:533.800000pt;}
.y4f{bottom:539.132000pt;}
.y145{bottom:539.133333pt;}
.y185{bottom:544.460000pt;}
.y1a6{bottom:544.461333pt;}
.yc2{bottom:549.768000pt;}
.y21{bottom:549.770667pt;}
.y9d{bottom:549.782667pt;}
.y10f{bottom:549.794667pt;}
.y76{bottom:549.797333pt;}
.y4e{bottom:555.129333pt;}
.y144{bottom:555.130667pt;}
.y184{bottom:560.457333pt;}
.y1a5{bottom:560.460000pt;}
.yc1{bottom:565.765333pt;}
.y20{bottom:565.768000pt;}
.y9c{bottom:565.781333pt;}
.y10e{bottom:565.792000pt;}
.y75{bottom:565.794667pt;}
.y4d{bottom:571.126667pt;}
.y143{bottom:571.128000pt;}
.y183{bottom:576.456000pt;}
.yc0{bottom:581.764000pt;}
.y1f{bottom:581.765333pt;}
.y9b{bottom:581.778667pt;}
.y10d{bottom:581.789333pt;}
.y1a4{bottom:581.790667pt;}
.y74{bottom:581.792000pt;}
.y4c{bottom:587.125333pt;}
.y182{bottom:592.453333pt;}
.ybf{bottom:597.761333pt;}
.y1e{bottom:597.764000pt;}
.y9a{bottom:597.776000pt;}
.y10c{bottom:597.786667pt;}
.y1a3{bottom:597.788000pt;}
.y4b{bottom:603.122667pt;}
.y181{bottom:608.450667pt;}
.ybe{bottom:613.758667pt;}
.y1d{bottom:613.761333pt;}
.y99{bottom:613.773333pt;}
.y10b{bottom:613.784000pt;}
.y1c3{bottom:619.117333pt;}
.y1a2{bottom:619.118667pt;}
.y4a{bottom:619.120000pt;}
.y180{bottom:624.448000pt;}
.ybd{bottom:629.756000pt;}
.y1c{bottom:629.758667pt;}
.y98{bottom:629.770667pt;}
.y10a{bottom:629.782667pt;}
.y1c2{bottom:635.116000pt;}
.y49{bottom:635.117333pt;}
.y1a1{bottom:640.449333pt;}
.ybc{bottom:645.753333pt;}
.y1b{bottom:645.756000pt;}
.y97{bottom:645.768000pt;}
.y17f{bottom:645.778667pt;}
.y109{bottom:645.780000pt;}
.y48{bottom:651.114667pt;}
.y1a0{bottom:656.446667pt;}
.y1a{bottom:661.753333pt;}
.y96{bottom:661.766667pt;}
.y17e{bottom:661.776000pt;}
.y108{bottom:661.777333pt;}
.ybb{bottom:667.086667pt;}
.y73{bottom:667.112000pt;}
.y4{bottom:668.390667pt;}
.y1c1{bottom:672.444000pt;}
.y47{bottom:672.445333pt;}
.y95{bottom:677.764000pt;}
.y17d{bottom:677.773333pt;}
.y107{bottom:677.774667pt;}
.y19f{bottom:677.777333pt;}
.y19{bottom:683.086667pt;}
.y72{bottom:683.110667pt;}
.y46{bottom:688.442667pt;}
.y3{bottom:688.821333pt;}
.y94{bottom:693.761333pt;}
.y106{bottom:693.772000pt;}
.y19e{bottom:693.774667pt;}
.y71{bottom:699.108000pt;}
.y45{bottom:704.440000pt;}
.y93{bottom:709.758667pt;}
.y105{bottom:709.769333pt;}
.y19d{bottom:709.772000pt;}
.y70{bottom:715.105333pt;}
.y44{bottom:720.438667pt;}
.y92{bottom:725.756000pt;}
.y104{bottom:725.766667pt;}
.y6f{bottom:731.102667pt;}
.y43{bottom:736.436000pt;}
.y91{bottom:741.753333pt;}
.y103{bottom:741.764000pt;}
.y18{bottom:747.092000pt;}
.y6e{bottom:747.100000pt;}
.y42{bottom:752.433333pt;}
.y102{bottom:757.761333pt;}
.y90{bottom:763.086667pt;}
.y6d{bottom:763.097333pt;}
.y17{bottom:768.420000pt;}
.y41{bottom:768.430667pt;}
.y101{bottom:773.758667pt;}
.y6c{bottom:779.094667pt;}
.y40{bottom:784.428000pt;}
.y13{bottom:787.857333pt;}
.y16{bottom:789.753333pt;}
.y100{bottom:789.756000pt;}
.y6b{bottom:795.092000pt;}
.y3f{bottom:800.425333pt;}
.yff{bottom:805.753333pt;}
.y3e{bottom:816.422667pt;}
.y12{bottom:819.857333pt;}
.yfe{bottom:827.086667pt;}
.y3d{bottom:832.420000pt;}
.y15{bottom:832.448000pt;}
.y2{bottom:859.457333pt;}
.y14{bottom:864.420000pt;}
.y1{bottom:896.148000pt;}
.h6{height:5.152000pt;}
.h10{height:28.000000pt;}
.hf{height:33.000000pt;}
.h11{height:35.466667pt;}
.h4{height:41.242667pt;}
.he{height:41.506667pt;}
.h5{height:41.770667pt;}
.hc{height:41.800000pt;}
.ha{height:52.288000pt;}
.h2{height:60.757333pt;}
.hd{height:61.002667pt;}
.h7{height:75.946667pt;}
.hb{height:87.146667pt;}
.h3{height:89.984000pt;}
.h8{height:907.086667pt;}
.h9{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:26.346667pt;}
.x7{left:52.936400pt;}
.x6{left:54.801333pt;}
.x1{left:60.473333pt;}
.x8{left:69.925733pt;}
.x9{left:85.038667pt;}
.xb{left:149.290667pt;}
.xc{left:164.414667pt;}
.x5{left:391.820000pt;}
.xa{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;
}
